Base statistics of all morphology for wing morph and wing2body ratio (in long-winged bugs).

Conclusion from the wing_timeseries.Rmd: Found no significant temporal dependencies. Determined that most time series were nonstationary and all ts were an AR(0) process [white noise with moving average]. Concluded that the time values were independent of each other.

Sourcing Scripts and Cleaning the Data

source_path = "~/Desktop/git_repositories/SBB-dispersal/avbernat_working_on/Rsrc/"

script_names = c("compare_models.R",
                 "regression_output.R", 
                 "clean_morph_data2.R", # two functions: read_morph_data and remove_torn_wings
                 "AICprobabilities.R")

for (script in script_names) { 
  path = paste0(source_path, script)
  source(path) 
}

source("~/Desktop/git_repositories/SBB-dispersal/avbernat_working_on/RSsrc/spatial_dependencies.R") # space
data_list <- read_morph_data("data/allmorphology04.30.21-coors.csv")
## number of missing dates: 0 
## 
## morph types: L S  NA LS SL L/S 
## recoding...
## S if wing2thorax <=2.2, L if wing2thorax >=2.5
raw_data = data_list[[1]]
data_long = data_list[[2]]

Checking for Outliers

dotplot = function(var, data) {
  plot(data[,var], seq(1:nrow(data)),
       col=data$color, ylab="Order of the data from text file", xlab=paste0("Value of ", var))
}
# remove NA dates
d = data_long %>%
  filter(!is.na(wing2body))

range(d$wing2body) 
## [1] 0.5773723 0.8472103
MyVar <- c("wing2body", "wing2thorax", "body", "wing", "beak", "thorax", "lat", "long") 
d$color = "black"
d$color[d$year == "2019" & d$month =="May"] = "red"

par(mfrow=c(3,3))
for (v in MyVar) {
  dotplot(v, d)
}

# remove outliers?
d2 = d %>% 
  filter(!beak<4.5) %>%
  filter(!wing2body <0.62) # 

par(mfrow=c(3,3))

for (v in MyVar) {
  dotplot(v, d2)
}

Wing overmeasured? Body measured too small? Probably the body measured off? wing seems off.

Wing Morph

Infer missing wing morph values

raw_data_missing = raw_data %>%
  filter(w_morph=="" | is.na(w_morph)) # had 30 that are hard to identify as either S or L based on the wing2thorax thresholds.
raw_data_missing # need to determine the morph of these bugs manually. In the long term...need to do this manually because the boundaries of what is defined as a morph can change over time.
##       pophost      population sex beak thorax wing body    month   year
## 1  C.corindum       Homestead   F 8.02   3.81 8.51   NA    April 2013.0
## 2   K.elegans      Lake_Wales   M 5.45   2.97   NA   NA    April 2013.0
## 3   K.elegans      Lake_Wales   M 5.16   2.48 5.54   NA      May 2013.0
## 4   K.elegans        Leesburg   M 5.06   2.63 6.14   NA      May 2013.0
## 5  C.corindum  Plantation_Key   F 7.72   3.86 8.91   NA      May 2013.0
## 6  C.corindum       Homestead   F 6.67   3.62 8.48   NA December 2013.6
## 7   K.elegans       Homestead   F 6.40   3.43 7.79   NA December 2013.6
## 8   K.elegans       Homestead   M 6.00   3.18 7.14   NA December 2013.6
## 9  C.corindum       Key_Largo   M 6.76   3.39 7.84   NA December 2013.6
## 10 C.corindum       Key_Largo   F 7.99   3.74 8.56   NA December 2013.6
## 11  K.elegans      Lake_Wales   F 8.55   3.85 9.04   NA December 2013.6
## 12  K.elegans      Lake_Wales   F 9.08   3.62 8.43   NA December 2013.6
## 13  K.elegans      Lake_Wales   M 5.32   3.06 7.13   NA December 2013.6
## 14  K.elegans        Leesburg   F 7.54   3.79 8.68   NA December 2013.6
## 15  K.elegans        Leesburg   F 7.50   3.04 6.86   NA December 2013.6
## 16  K.elegans        Leesburg   F 6.26   3.32 7.47   NA December 2013.6
## 17  K.elegans        Leesburg   M 6.06   3.23 7.48   NA December 2013.6
## 18  K.elegans        Leesburg   M 6.08   2.83 6.65   NA December 2013.6
## 19  K.elegans        Leesburg   M 5.63   3.04 7.10   NA December 2013.6
## 20  K.elegans        Leesburg   F 8.08   3.63 8.35   NA December 2013.6
## 21  K.elegans        Leesburg   F 7.74   3.71 8.24   NA December 2013.6
## 22  K.elegans     Gainesville   M 5.65   2.80 6.36   NA    April 2014.0
## 23  K.elegans     Gainesville   M 5.62   2.79   NA   NA    April 2014.0
## 24 C.corindum       Homestead   F 6.24   3.35 7.69   NA    April 2014.0
## 25  K.elegans      Lake_Wales   F 6.84   3.28   NA   NA    April 2014.0
## 26  K.elegans      Lake_Wales   F 7.58   3.73   NA   NA    April 2015.0
## 27  K.elegans       Homestead   F 8.79   4.11   NA   NA   August 2017.0
## 28 C.corindum North_Key_Largo   F 6.68   3.14   NA   NA      May 2019.0
## 29 C.corindum  Plantation_Key   F 8.03   3.51   NA   NA  October 2019.0
## 30 C.corindum  Plantation_Key   F 8.50   3.52   NA   NA  October 2019.0
##    months_since_start season w_morph      lat      long                diapause
## 1                   0 spring         25.49172 -80.48586                        
## 2                   0 spring    <NA> 27.90335 -81.58946                        
## 3                   0 spring         27.90335 -81.58946                        
## 4                   0 spring         28.79602 -81.87777                        
## 5                   0 spring         24.96448 -80.56739                        
## 6                   7 winter         25.49172 -80.48586                        
## 7                   7 winter         25.49172 -80.48586                        
## 8                   7 winter         25.49172 -80.48586                        
## 9                   7 winter         25.12308 -80.41528                        
## 10                  7 winter         25.12308 -80.41528                        
## 11                  7 winter         27.90335 -81.58946                        
## 12                  7 winter         27.90335 -81.58946                        
## 13                  7 winter         27.90335 -81.58946                        
## 14                  7 winter         28.79602 -81.87777                        
## 15                  7 winter         28.79602 -81.87777                        
## 16                  7 winter         28.79602 -81.87777                        
## 17                  7 winter         28.79602 -81.87777                        
## 18                  7 winter         28.79602 -81.87777                        
## 19                  7 winter         28.79602 -81.87777                        
## 20                  7 winter         28.79602 -81.87777                        
## 21                  7 winter         28.79602 -81.87777                        
## 22                 11 spring         29.66374 -82.36091                        
## 23                 11 spring    <NA> 29.66374 -82.36091                        
## 24                 11 spring         25.49172 -80.48586                        
## 25                 11 spring    <NA> 27.90335 -81.58946                        
## 26                 23 spring    <NA> 27.90335 -81.58946                        
## 27                 51 summer    <NA> 25.94157 -80.48569 diapausing aggregration
## 28                 72 spring    <NA> 25.27352 -80.30428                        
## 29                 77   fall    <NA> 24.96424 -80.56733          non-diapausing
## 30                 77   fall    <NA> 24.96424 -80.56733          non-diapausing
##    field_date_collected notes sex_binom pophost_binom            date datetime
## 1                                     1            -1      April/2013 Apr 2013
## 2                                    -1             1      April/2013 Apr 2013
## 3                                    -1             1      April/2013 Apr 2013
## 4                                    -1             1      April/2013 Apr 2013
## 5                                     1            -1      April/2013 Apr 2013
## 6                                     1            -1 December/2013.6 Dec 2013
## 7                                     1             1 December/2013.6 Dec 2013
## 8                                    -1             1 December/2013.6 Dec 2013
## 9                                    -1            -1 December/2013.6 Dec 2013
## 10                                    1            -1 December/2013.6 Dec 2013
## 11                                    1             1 December/2013.6 Dec 2013
## 12                                    1             1 December/2013.6 Dec 2013
## 13                                   -1             1 December/2013.6 Dec 2013
## 14                                    1             1 December/2013.6 Dec 2013
## 15                                    1             1 December/2013.6 Dec 2013
## 16                                    1             1 December/2013.6 Dec 2013
## 17                                   -1             1 December/2013.6 Dec 2013
## 18                                   -1             1 December/2013.6 Dec 2013
## 19                                   -1             1 December/2013.6 Dec 2013
## 20                                    1             1 December/2013.6 Dec 2013
## 21                                    1             1 December/2013.6 Dec 2013
## 22                                   -1             1      April/2014 Apr 2014
## 23                                   -1             1      April/2014 Apr 2014
## 24                                    1            -1      April/2014 Apr 2014
## 25                                    1             1      April/2014 Apr 2014
## 26                                    1             1      April/2015 Apr 2015
## 27           08.15.2017               1             1     August/2017 Aug 2017
## 28                                    1            -1        May/2019 May 2019
## 29           10.02.2019               1            -1    October/2019 Oct 2019
## 30           10.02.2019               1            -1    October/2019 Oct 2019
##         dates month_of_year wing2thorax wing_morph_binom
## 1  2013-04-01             4    2.233596               NA
## 2  2013-04-01             4          NA               NA
## 3  2013-04-01             4    2.233871               NA
## 4  2013-04-01             4    2.334601               NA
## 5  2013-04-01             4    2.308290               NA
## 6  2013-12-01            12    2.342541               NA
## 7  2013-12-01            12    2.271137               NA
## 8  2013-12-01            12    2.245283               NA
## 9  2013-12-01            12    2.312684               NA
## 10 2013-12-01            12    2.288770               NA
## 11 2013-12-01            12    2.348052               NA
## 12 2013-12-01            12    2.328729               NA
## 13 2013-12-01            12    2.330065               NA
## 14 2013-12-01            12    2.290237               NA
## 15 2013-12-01            12    2.256579               NA
## 16 2013-12-01            12    2.250000               NA
## 17 2013-12-01            12    2.315789               NA
## 18 2013-12-01            12    2.349823               NA
## 19 2013-12-01            12    2.335526               NA
## 20 2013-12-01            12    2.300275               NA
## 21 2013-12-01            12    2.221024               NA
## 22 2014-04-01             4    2.271429               NA
## 23 2014-04-01             4          NA               NA
## 24 2014-04-01             4    2.295522               NA
## 25 2014-04-01             4          NA               NA
## 26 2015-04-01             4          NA               NA
## 27 2017-08-01             8          NA               NA
## 28 2019-05-01             5          NA               NA
## 29 2019-10-01            10          NA               NA
## 30 2019-10-01            10          NA               NA
par(mfrow=c(3,1))
hist(raw_data$wing[raw_data$w_morph=="L"]/raw_data$thorax[raw_data$w_morph=="L"],
     main="Histogram of wing length/thorax length for long winged SBB",
     xlab="wing length/thorax length",
      breaks=seq(0.5, 3.8, by=0.05))
hist(raw_data_missing$wing/raw_data_missing$thorax, 
      main="Histogram of wing length/thorax length for SBB w/o recorded wing morph",
      xlab="wing length/thorax length",
      breaks=seq(0.5, 3.8, by=0.05))
hist(raw_data$wing[raw_data$w_morph=="S"]/raw_data$thorax[raw_data$w_morph=="S"],
      main="Histogram of wing length/thorax length for short winged SBB",
      xlab="wing length/thorax length",
      breaks=seq(0.5,3.8,by=0.05))

Plotting Data Points Across Time and Group

Grouping the data for group counts.

raw_data %>% group_by(sex, 
                  datetime) %>% 
  summarize(count = n())
## `summarise()` has grouped output by 'sex'. You can override using the `.groups` argument.
## # A tibble: 20 x 3
## # Groups:   sex [2]
##    sex   datetime count
##    <chr> <fct>    <int>
##  1 F     Apr 2013   138
##  2 F     Dec 2013   207
##  3 F     Apr 2014   128
##  4 F     Apr 2015    83
##  5 F     Dec 2016   116
##  6 F     Aug 2017   192
##  7 F     Sep 2018    97
##  8 F     May 2019   320
##  9 F     Oct 2019   174
## 10 F     Feb 2020   218
## 11 M     Apr 2013   188
## 12 M     Dec 2013   192
## 13 M     Apr 2014    83
## 14 M     Apr 2015    70
## 15 M     Dec 2016   139
## 16 M     Aug 2017   238
## 17 M     Sep 2018    76
## 18 M     May 2019   276
## 19 M     Oct 2019   198
## 20 M     Feb 2020   361

Checking over bug numbers per season.

#raw_data[raw_data$year =="2020",]  #476 survived shipment, so I"m guessing that about 103 bugs did not survive shipment but were still measured for morphology?
#raw_data[raw_data$year =="2019" & raw_data$month=="October",] #similar here. 372 bugs measured but 207 survived. So that means that 165 bugs did not survive and were still measured for morph. 

Plotting the histograms.

data = raw_data
data$population[data$population=="Ft.Myers"]<-"Ft. Myers"
data$population[data$population=="Key_Largo"]<-"Key Largo"
data$population[data$population=="Lake_Placid"]<-"Lake Placid"
data$population[data$population=="Lake_Wales"]<-"Lake Wales"
data$population[data$population=="North_Key_Largo"]<-"North Key Largo"
data$population[data$population=="Plantation_Key"]<-"Plantation Key"

data$pophost[data$pophost=="C.corindum"]<-"C. corindum"
data$pophost[data$pophost=="K.elegans"]<-"K. elegans"

data = data[order(-data$lat),] 
#lat_order = unique(data$population) # should work but lat and long not right so need to do it manually:
lat_order = c("Gainesville", "Leesburg", "Lake Wales", "Lake Placid", "Ft. Myers",  "Homestead",  "North Key Largo", "Key Largo", "Plantation Key")
data$population = as.factor(data$population)
data$population = factor(data$population,levels=lat_order)

I have not removed the bugs with torn wings yet.

Binomial Regressions

What determines wing morph using all the data? Does sex? host plant? month of the year?

data<-data.frame(R=raw_data$wing_morph_binom, 
                 A=raw_data$sex_binom, 
                 B=raw_data$pophost_binom, 
                 C=(raw_data$month_of_year),
                 D=raw_data$months_since_start)

model_script = paste0(source_path,"generic models-binomial glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]      [,5]       [,6]       [,7]      
## AICs   3164.905  3165.215  3165.986  3166.156  3166.737   3166.755   3167.724  
## models 15        13        11        7         16         17         12        
## probs  0.2280701 0.1952904 0.1328486 0.1220224 0.09126954 0.09043049 0.05572666
##        [,8]      
## AICs   3167.798  
## models 14        
## probs  0.05369151
## 
## m15  glm(formula = R ~ A * B + B * C, family = binomial, data = data)
## m13  glm(formula = R ~ B * C + A, family = binomial, data = data)
## m11  glm(formula = R ~ A * B + C, family = binomial, data = data)
## m7   glm(formula = R ~ A + B + C, family = binomial, data = data)
## m16  glm(formula = R ~ A * C + B * C, family = binomial, data = data)
## m17  glm(formula = R ~ A * B + A * C + B * C, family = binomial, data = data)
## m12  glm(formula = R ~ A * C + B, family = binomial, data = data)
## m14  glm(formula = R ~ A * B + A * C, family = binomial, data = data)
anova(m13, m15, test="Chisq") # Adding A*B does not improve fit
anova(m7, m13, test="Chisq") # Adding B*C marginally improves fit
anova(m5, m7, test="Chisq")
anova(m6, m7, test="Chisq")
anova(m4, m7, test="Chisq")
## Analysis of Deviance Table
## 
## Model 1: R ~ B * C + A
## Model 2: R ~ A * B + B * C
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)
## 1      3442     3155.2                     
## 2      3441     3152.9  1   2.3103   0.1285
## Analysis of Deviance Table
## 
## Model 1: R ~ A + B + C
## Model 2: R ~ B * C + A
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)  
## 1      3443     3158.2                       
## 2      3442     3155.2  1   2.9406  0.08638 .
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A + C
## Model 2: R ~ A + B + C
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      3444     3513.3                          
## 2      3443     3158.2  1   355.14 < 2.2e-16 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ B + C
## Model 2: R ~ A + B + C
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)   
## 1      3444     3165.2                        
## 2      3443     3158.2  1   7.0432 0.007957 **
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## Analysis of Deviance Table
## 
## Model 1: R ~ A + B
## Model 2: R ~ A + B + C
##   Resid. Df Resid. Dev Df Deviance Pr(>Chi)   
## 1      3444     3167.3                        
## 2      3443     3158.2  1   9.1376 0.002504 **
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(wing_morph_binom ~ sex_binom + pophost_binom + months_since_start, data=raw_data, family="binomial")
tidy_regression(m, is_color=FALSE) # m7
## glm wing_morph_binom ~ sex_binom + pophost_binom + months_since_start binomial raw_data 
## AIC:  3174.191 
## (Intercept)          coeff:  1.3714505   Pr(>|t|):  9.256647e-55 *
## sex_binom            coeff:  -0.108326   Pr(>|t|):  0.01466122 *
## pophost_binom        coeff:  0.8929594   Pr(>|t|):  2.397433e-73 *
## months_since_start   coeff:  0.0015813   Pr(>|t|):  0.2928963

Top model is m7 * Males are more likely to be long-winged. * K.elegans more likely to be long-winged. * No more an effect of month_of_year effect. Before had a (+) effect of getting later in the season (month_of_year), such that long wing morphs become increasingly likely later in the year.

temp = raw_data %>% 
  filter(!is.na(wing_morph_binom))

check_spatial_dependencies(m, temp, temp$long, temp$lat, zone = 16, cutoff=10000, is_glm=TRUE)
## Warning in showSRID(uprojargs, format = "PROJ", multiline = "NO", prefer_proj
## = prefer_proj): Discarded datum Unknown based on WGS84 ellipsoid in Proj4
## definition
## Warning in proj4string(res): CRS object has comment, which is lost in output
## [1] "m"

##         pophost      population sex beak thorax  wing  body     month   year
## 1     K.elegans        Ft.Myers   M 5.24   2.86  7.98 10.92     April 2013.0
## 2     K.elegans        Ft.Myers   M 5.72   3.09  8.27 11.58     April 2013.0
## 3     K.elegans        Ft.Myers   M 5.81   3.10  8.72 11.54     April 2013.0
## 4     K.elegans        Ft.Myers   M 4.60   2.51  6.57  8.95     April 2013.0
## 5     K.elegans        Ft.Myers   M 5.75   2.97  8.38 11.38     April 2013.0
## 6     K.elegans        Ft.Myers   M 5.42   2.96  7.85 10.80     April 2013.0
## 7     K.elegans        Ft.Myers   M 5.64   2.87  8.02 10.67     April 2013.0
## 8     K.elegans        Ft.Myers   M 5.22   2.60  7.36 10.14     April 2013.0
## 9     K.elegans        Ft.Myers   M 5.17   2.87  7.81 10.42     April 2013.0
## 10    K.elegans        Ft.Myers   F 6.99   3.78  9.93 13.50     April 2013.0
## 11    K.elegans        Ft.Myers   F 7.38   3.35  9.07 12.45     April 2013.0
## 12    K.elegans        Ft.Myers   M 5.09   2.81  7.77 10.45     April 2013.0
## 13    K.elegans        Ft.Myers   M 5.55   3.19  8.57 11.57     April 2013.0
## 14    K.elegans        Ft.Myers   M 5.81   3.33  8.51 11.58     April 2013.0
## 15    K.elegans        Ft.Myers   F 6.22   3.03  5.20    NA     April 2013.0
## 16    K.elegans        Ft.Myers   M 5.73   3.05  8.09 10.73     April 2013.0
## 17    K.elegans        Ft.Myers   M 5.26   3.05  8.09 10.96     April 2013.0
## 18    K.elegans        Ft.Myers   F 6.41   3.74 10.26 13.27     April 2013.0
## 19    K.elegans        Ft.Myers   M 5.50   3.05  8.45 11.37     April 2013.0
## 20    K.elegans        Ft.Myers   F 6.12   3.16  8.73 11.83     April 2013.0
## 21    K.elegans        Ft.Myers   F 7.99   3.47 10.02 13.48     April 2013.0
## 22    K.elegans        Ft.Myers   M 5.24   3.05  7.58 10.45     April 2013.0
## 23    K.elegans        Ft.Myers   F 7.29   3.49  9.94 13.33     April 2013.0
## 24    K.elegans        Ft.Myers   M 5.66   2.83  7.67 10.51     April 2013.0
## 25    K.elegans        Ft.Myers   F 7.87   3.52  9.79 13.35     April 2013.0
## 26    K.elegans        Ft.Myers   M 5.27   2.80  7.89 10.55     April 2013.0
## 27    K.elegans        Ft.Myers   F 8.09   3.58  9.73    NA       May 2013.0
## 28    K.elegans        Ft.Myers   F 7.40   3.42  9.52    NA       May 2013.0
## 29    K.elegans        Ft.Myers   F 5.54   2.45  4.18    NA       May 2013.0
## 30    K.elegans        Ft.Myers   M 5.51   2.49  4.38    NA       May 2013.0
## 31    K.elegans        Ft.Myers   F 6.74   3.44  9.28    NA       May 2013.0
## 32    K.elegans        Ft.Myers   M 6.06   3.05  8.12    NA       May 2013.0
## 33    K.elegans        Ft.Myers   M 6.05   3.22  8.67    NA       May 2013.0
## 34    K.elegans        Ft.Myers   M 5.74   3.15  8.40    NA       May 2013.0
## 35    K.elegans        Ft.Myers   F 5.90   2.71  5.49    NA       May 2013.0
## 36    K.elegans        Ft.Myers   M 5.37   2.93  7.97    NA       May 2013.0
## 37    K.elegans        Ft.Myers   F 7.72   3.28  9.24    NA       May 2013.0
## 38    K.elegans        Ft.Myers   M 5.62   2.85  7.71    NA       May 2013.0
## 39    K.elegans        Ft.Myers   M 6.30   2.84  7.22    NA       May 2013.0
## 40    K.elegans        Ft.Myers   M 6.26   3.20  8.93    NA       May 2013.0
## 41    K.elegans        Ft.Myers   M 5.35   2.97  7.88    NA       May 2013.0
## 42    K.elegans        Ft.Myers   F 6.65   2.84  7.85    NA       May 2013.0
## 43    K.elegans        Ft.Myers   M 5.43   3.09  8.93    NA       May 2013.0
## 44    K.elegans        Ft.Myers   F 6.26   2.95  6.10    NA       May 2013.0
## 45    K.elegans        Ft.Myers   M 5.43   2.82  7.63    NA       May 2013.0
## 46    K.elegans        Ft.Myers   F 7.85   3.71  9.80    NA       May 2013.0
## 47    K.elegans        Ft.Myers   M 5.69   2.87  8.42    NA       May 2013.0
## 48    K.elegans        Ft.Myers   F 5.87   2.80  4.96    NA       May 2013.0
## 49    K.elegans        Ft.Myers   F 6.67   3.62  9.47    NA       May 2013.0
## 50    K.elegans        Ft.Myers   M 5.36   2.70  7.12    NA       May 2013.0
## 51    K.elegans        Ft.Myers   F 6.49   2.94  7.46    NA       May 2013.0
## 52    K.elegans        Ft.Myers   M 5.62   3.13  8.31    NA       May 2013.0
## 53    K.elegans        Ft.Myers   M 5.80   3.17  8.46    NA       May 2013.0
## 54    K.elegans        Ft.Myers   F 6.50   3.67  9.39    NA       May 2013.0
## 55    K.elegans        Ft.Myers   M 5.66   2.83  8.34    NA       May 2013.0
## 56    K.elegans        Ft.Myers   F 7.79   3.34  8.79    NA       May 2013.0
## 57    K.elegans        Ft.Myers   M 5.24   2.73  7.62    NA       May 2013.0
## 58    K.elegans        Ft.Myers   M 5.33   2.83  7.89    NA       May 2013.0
## 59    K.elegans        Ft.Myers   F 7.97   3.88 10.66    NA       May 2013.0
## 60    K.elegans        Ft.Myers   F 7.03   2.90  8.15    NA       May 2013.0
## 61    K.elegans        Ft.Myers   F 7.67   3.41  9.37    NA       May 2013.0
## 62    K.elegans        Ft.Myers   M 5.68   3.14  8.95    NA       May 2013.0
## 63    K.elegans        Ft.Myers   F 7.78   3.51  9.02    NA       May 2013.0
## 64    K.elegans        Ft.Myers   M 5.27   2.89  7.12    NA       May 2013.0
## 65    K.elegans        Ft.Myers   F 6.74   3.64  9.66    NA       May 2013.0
## 66    K.elegans        Ft.Myers   F 8.13   3.77  9.53    NA       May 2013.0
## 67    K.elegans        Ft.Myers   M 5.58   3.03  8.52    NA       May 2013.0
## 68    K.elegans        Ft.Myers   F 7.16   3.34  9.57    NA       May 2013.0
## 69    K.elegans        Ft.Myers   F 7.32   2.96  8.80    NA       May 2013.0
## 70    K.elegans        Ft.Myers   M 5.54   2.93  7.26    NA       May 2013.0
## 71    K.elegans        Ft.Myers   F 7.94   3.56 10.07    NA       May 2013.0
## 72    K.elegans        Ft.Myers   F 6.00   2.69  6.82    NA       May 2013.0
## 73    K.elegans        Ft.Myers   F 8.34   3.67  9.34    NA       May 2013.0
## 74    K.elegans        Ft.Myers   M 5.54   3.23  8.74    NA       May 2013.0
## 75    K.elegans        Ft.Myers   M 5.34   2.91  7.68    NA       May 2013.0
## 76   C.corindum       Homestead   F 6.54   3.05  5.20    NA     April 2013.0
## 77   C.corindum       Homestead   M 5.36   2.61  7.68    NA     April 2013.0
## 78   C.corindum       Homestead   F 7.82   3.51  9.93    NA     April 2013.0
## 79   C.corindum       Homestead   M 5.59   2.78  7.54    NA     April 2013.0
## 80   C.corindum       Homestead   F 6.87   3.18  5.43    NA     April 2013.0
## 81   C.corindum       Homestead   M 5.39   3.00  7.56    NA     April 2013.0
## 82   C.corindum       Homestead   M 5.02   2.37  4.33    NA     April 2013.0
## 83   C.corindum       Homestead   M 5.49   2.69  4.41    NA     April 2013.0
## 84   C.corindum       Homestead   F 6.92   3.27  8.19    NA     April 2013.0
## 85   C.corindum       Homestead   F 6.00   2.95  5.66    NA     April 2013.0
## 86   C.corindum       Homestead   M 5.35   2.57  4.04    NA     April 2013.0
## 87   C.corindum       Homestead   M 4.68   2.28  3.94    NA     April 2013.0
## 88   C.corindum       Homestead   M 5.20   2.53  4.55    NA     April 2013.0
## 89   C.corindum       Homestead   M 5.32   2.44  4.30    NA     April 2013.0
## 90   C.corindum       Homestead   F 5.75   2.63  4.66    NA     April 2013.0
## 91   C.corindum       Homestead   M 5.10   2.58  4.31    NA     April 2013.0
## 92   C.corindum       Homestead   M 5.38   2.57  4.92    NA     April 2013.0
## 93   C.corindum       Homestead   M 6.07   3.15  8.46    NA     April 2013.0
## 94   C.corindum       Homestead   F 7.54   3.25  9.25    NA     April 2013.0
## 95   C.corindum       Homestead   M 4.95   2.60  4.26    NA     April 2013.0
## 96   C.corindum       Homestead   F 6.89   3.70  9.35    NA     April 2013.0
## 97   C.corindum       Homestead   F 6.89   3.59  9.35    NA     April 2013.0
## 98   C.corindum       Homestead   F 6.95   3.43  8.30    NA     April 2013.0
## 99   C.corindum       Homestead   F 8.15   3.84  9.65    NA     April 2013.0
## 100  C.corindum       Homestead   F 5.86   3.03  5.05    NA     April 2013.0
## 101  C.corindum       Homestead   F 7.75   3.38  8.77    NA     April 2013.0
## 102  C.corindum       Homestead   F 7.72   3.42  8.67    NA     April 2013.0
## 103  C.corindum       Homestead   M 5.45   2.66  5.64  8.48       May 2013.0
## 104  C.corindum       Homestead   F 7.15   3.10  8.35 11.93       May 2013.0
## 105  C.corindum       Homestead   M 5.94   3.27  8.92 12.12       May 2013.0
## 106  C.corindum       Homestead   F 6.45   3.21  8.71 11.85       May 2013.0
## 107  C.corindum       Homestead   F 6.55   2.80  3.97    NA       May 2013.0
## 108  C.corindum       Homestead   F 7.51   3.16  9.01 12.33       May 2013.0
## 109  C.corindum       Homestead   M 5.83   3.22  8.59 12.39       May 2013.0
## 110  C.corindum       Homestead   M 5.08   2.90  8.13 11.20       May 2013.0
## 111  C.corindum       Homestead   M 5.61   3.19  8.76 11.72       May 2013.0
## 112  C.corindum       Homestead   M 5.38   2.58  4.84    NA       May 2013.0
## 113  C.corindum       Homestead   M 5.61   3.45  8.45 11.49       May 2013.0
## 114   K.elegans       Homestead   F 7.77   3.84  9.59    NA       May 2013.0
## 115   K.elegans       Homestead   F 8.19   3.61  9.05    NA       May 2013.0
## 116   K.elegans       Homestead   F 7.82   3.43 10.57    NA       May 2013.0
## 117   K.elegans       Homestead   F 7.97   3.51  9.91    NA       May 2013.0
## 118   K.elegans       Homestead   M 5.95   3.16  8.31    NA       May 2013.0
## 119   K.elegans       Homestead   F 7.60   3.44  9.59    NA       May 2013.0
## 120   K.elegans       Homestead   M 5.94   3.18  8.73    NA       May 2013.0
## 121   K.elegans       Homestead   F 7.73   3.73  9.94    NA       May 2013.0
## 122   K.elegans       Homestead   F 7.31   3.50  9.21    NA       May 2013.0
## 123   K.elegans       Homestead   M 5.64   2.99  7.93    NA       May 2013.0
## 124   K.elegans       Homestead   F 7.96   3.45  9.23    NA       May 2013.0
## 125   K.elegans       Homestead   M 5.56   3.00  7.86    NA       May 2013.0
## 126   K.elegans       Homestead   M 5.75   3.14  8.26    NA       May 2013.0
## 127   K.elegans       Homestead   M 5.80   3.02  8.44    NA       May 2013.0
## 128   K.elegans       Homestead   F 7.93   3.64  9.87    NA       May 2013.0
## 129   K.elegans       Homestead   M 5.70   3.19  8.57    NA       May 2013.0
## 130   K.elegans       Homestead   M 6.04   3.38  9.51    NA       May 2013.0
## 131   K.elegans       Homestead   M 5.68   3.01  8.10    NA       May 2013.0
## 132   K.elegans       Homestead   M 5.63   3.00  8.29    NA       May 2013.0
## 133   K.elegans       Homestead   F 8.40   3.68 10.02    NA       May 2013.0
## 134   K.elegans       Homestead   F 7.81   3.75 10.23    NA       May 2013.0
## 135   K.elegans       Homestead   M 6.20   3.10  9.31    NA       May 2013.0
## 136   K.elegans       Homestead   M 5.83   2.91  8.44    NA       May 2013.0
## 137   K.elegans       Homestead   F 7.85   3.58  9.90    NA       May 2013.0
## 138   K.elegans       Homestead   F 7.05   3.25  8.98    NA       May 2013.0
## 139   K.elegans       Homestead   M 6.04   3.00  8.87    NA       May 2013.0
## 140  C.corindum       Key_Largo   M 5.86   2.84  7.99 11.25     April 2013.0
## 141  C.corindum       Key_Largo   M 6.69   3.14  8.41 11.48     April 2013.0
## 142  C.corindum       Key_Largo   F 9.25   3.95  9.99 13.55     April 2013.0
## 143  C.corindum       Key_Largo   M 6.43   3.18  8.61 11.57     April 2013.0
## 144  C.corindum       Key_Largo   M 5.35   2.53  4.62    NA     April 2013.0
## 145  C.corindum       Key_Largo   M 6.77   3.41  8.70 11.63     April 2013.0
## 146  C.corindum       Key_Largo   F 7.83   3.68  9.78 13.31     April 2013.0
## 147  C.corindum       Key_Largo   M 5.98   3.16  9.40 12.50     April 2013.0
## 148  C.corindum       Key_Largo   M 6.18   2.96  8.21 10.94     April 2013.0
## 149  C.corindum       Key_Largo   M 5.46   3.25  8.74 11.76     April 2013.0
## 150  C.corindum       Key_Largo   M 5.15   2.32  4.23    NA     April 2013.0
## 151  C.corindum       Key_Largo   M 5.14   2.59  7.25  9.64     April 2013.0
## 152  C.corindum       Key_Largo   M 6.30   3.15  8.50 11.78     April 2013.0
## 153  C.corindum       Key_Largo   M 5.79   3.14  8.37    NA       May 2013.0
## 154  C.corindum       Key_Largo   F 8.09   3.40  8.61    NA       May 2013.0
## 155  C.corindum       Key_Largo   F 8.84   3.43  9.29    NA       May 2013.0
## 156  C.corindum       Key_Largo   M 6.01   3.26  9.17    NA       May 2013.0
## 157  C.corindum       Key_Largo   F 8.81   3.95  9.91    NA       May 2013.0
## 158  C.corindum       Key_Largo   M 6.35   2.98  8.22    NA       May 2013.0
## 159  C.corindum       Key_Largo   F 7.20   3.70  7.35    NA       May 2013.0
## 160  C.corindum       Key_Largo   M 6.84   3.23  8.57    NA       May 2013.0
## 161  C.corindum       Key_Largo   F 6.17   2.84  4.47    NA       May 2013.0
## 162  C.corindum       Key_Largo   F 9.18   3.69  9.62    NA       May 2013.0
## 163  C.corindum       Key_Largo   F 9.12   3.99 10.73    NA       May 2013.0
## 164  C.corindum       Key_Largo   F 9.47   3.94 10.09    NA       May 2013.0
## 165  C.corindum       Key_Largo   F 9.15   3.78 10.17    NA       May 2013.0
## 166  C.corindum       Key_Largo   M 6.24   3.21  8.74    NA       May 2013.0
## 167  C.corindum       Key_Largo   M 6.07   3.22  8.53    NA       May 2013.0
## 168  C.corindum       Key_Largo   F 9.37   3.94 10.07    NA       May 2013.0
## 169  C.corindum       Key_Largo   M 6.41   3.23  8.51    NA       May 2013.0
## 170  C.corindum       Key_Largo   M 6.13   3.22  9.02    NA       May 2013.0
## 171  C.corindum       Key_Largo   F 9.20   3.64  9.77    NA       May 2013.0
## 172  C.corindum       Key_Largo   M 6.42   3.01  8.24    NA       May 2013.0
## 173  C.corindum       Key_Largo   M 6.20   3.21  8.41    NA       May 2013.0
## 174  C.corindum       Key_Largo   M 6.30   2.92  7.93    NA       May 2013.0
## 175  C.corindum       Key_Largo   F 6.34   2.87  4.82    NA       May 2013.0
## 176  C.corindum       Key_Largo   M 6.40   3.15  8.46    NA       May 2013.0
## 177  C.corindum       Key_Largo   F 8.55   3.52  9.34    NA       May 2013.0
## 178  C.corindum       Key_Largo   M 6.74   3.40  8.45    NA       May 2013.0
## 179  C.corindum       Key_Largo   F 9.50   4.08 10.59    NA       May 2013.0
## 180  C.corindum       Key_Largo   M 5.72   3.01  8.40    NA       May 2013.0
## 181  C.corindum       Key_Largo   M 6.66   3.15  8.69    NA       May 2013.0
## 182  C.corindum       Key_Largo   F 5.53   2.43  4.21    NA       May 2013.0
## 183  C.corindum       Key_Largo   M 6.48   3.31  8.73    NA       May 2013.0
## 184  C.corindum       Key_Largo   M 5.37   2.39  4.87    NA       May 2013.0
## 185  C.corindum       Key_Largo   F 9.17   3.79  9.76    NA       May 2013.0
## 186  C.corindum       Key_Largo   M 6.28   3.27  8.96    NA       May 2013.0
## 187  C.corindum       Key_Largo   F 7.62   3.41  9.10    NA       May 2013.0
## 188  C.corindum       Key_Largo   M 6.12   3.42  8.83    NA       May 2013.0
## 189  C.corindum       Key_Largo   F 6.75   2.98  4.80    NA       May 2013.0
## 190  C.corindum       Key_Largo   F 7.15   3.28  5.33    NA       May 2013.0
## 191  C.corindum       Key_Largo   F 8.72   3.47  9.97    NA       May 2013.0
## 192  C.corindum       Key_Largo   F 7.83   2.98  8.04    NA       May 2013.0
## 193  C.corindum       Key_Largo   F 7.06   3.17  5.71    NA       May 2013.0
## 194  C.corindum       Key_Largo   M 5.83   2.77  5.47    NA       May 2013.0
## 195  C.corindum       Key_Largo   M 7.17   3.56  9.01    NA       May 2013.0
## 196  C.corindum       Key_Largo   M 6.39   3.28  9.18    NA       May 2013.0
## 197  C.corindum       Key_Largo   M 6.47   3.33  9.09    NA       May 2013.0
## 198  C.corindum       Key_Largo   M 6.49   3.38  8.78    NA       May 2013.0
## 199  C.corindum       Key_Largo   F 8.83   3.78 10.03    NA       May 2013.0
## 200  C.corindum       Key_Largo   F 7.15   3.10  8.00    NA       May 2013.0
## 201   K.elegans      Lake_Wales   M 5.42   3.11  7.96 10.93     April 2013.0
## 202   K.elegans      Lake_Wales   M 5.41   2.58  6.25  9.22     April 2013.0
## 203   K.elegans      Lake_Wales   M 5.35   3.13  8.25 11.79     April 2013.0
## 204   K.elegans      Lake_Wales   F 6.78   3.12  9.25 12.07     April 2013.0
## 205   K.elegans      Lake_Wales   M 5.32   2.71  7.66 10.66     April 2013.0
## 206   K.elegans      Lake_Wales   M 5.05   2.49  7.04  9.80     April 2013.0
## 207   K.elegans      Lake_Wales   F 7.63   3.35  9.12 12.38     April 2013.0
## 208   K.elegans      Lake_Wales   M 5.17   2.76  8.25 11.17     April 2013.0
## 209   K.elegans      Lake_Wales   M 5.48   2.51  6.23  9.12     April 2013.0
## 210   K.elegans      Lake_Wales   M 5.19   3.06  7.75 10.76     April 2013.0
## 211   K.elegans      Lake_Wales   F 6.81   3.49  9.76 13.51     April 2013.0
## 212   K.elegans      Lake_Wales   M 5.02   2.80  7.27 10.41     April 2013.0
## 213   K.elegans      Lake_Wales   F 7.56   3.20  8.07 11.65     April 2013.0
## 214   K.elegans      Lake_Wales   M 5.22   2.63  4.96    NA     April 2013.0
## 215   K.elegans      Lake_Wales   M 5.47   3.08  7.38 10.46     April 2013.0
## 216   K.elegans      Lake_Wales   M 4.80   2.35  4.63    NA     April 2013.0
## 217   K.elegans      Lake_Wales   F 6.18   2.91  7.77 11.11     April 2013.0
## 218   K.elegans      Lake_Wales   M 5.15   2.76  5.26    NA     April 2013.0
## 219   K.elegans      Lake_Wales   M 5.03   2.62  7.19  9.84     April 2013.0
## 220   K.elegans      Lake_Wales   M 5.68   2.79  7.41 10.24     April 2013.0
## 221   K.elegans      Lake_Wales   M 5.60   3.32  8.64 11.70     April 2013.0
## 222   K.elegans      Lake_Wales   M 5.28   2.98  8.16 11.12     April 2013.0
## 223   K.elegans      Lake_Wales   M 5.50   2.83  8.09 10.65     April 2013.0
## 224   K.elegans      Lake_Wales   F 6.47   3.02  8.00 11.03     April 2013.0
## 225   K.elegans      Lake_Wales   M 5.19   2.47  4.78    NA     April 2013.0
## 226   K.elegans      Lake_Wales   M 5.28   3.17  8.68 11.62     April 2013.0
## 227   K.elegans      Lake_Wales   M 5.53   3.14  8.19 11.18     April 2013.0
## 228   K.elegans      Lake_Wales   M 5.56   2.98  7.89 10.90     April 2013.0
## 229   K.elegans      Lake_Wales   M 5.15   2.74  4.56    NA     April 2013.0
## 230   K.elegans      Lake_Wales   M 5.40   2.60  7.23    NA       May 2013.0
## 231   K.elegans      Lake_Wales   M 5.31   2.97  8.10    NA       May 2013.0
## 232   K.elegans      Lake_Wales   F 6.48   3.17  8.64    NA       May 2013.0
## 233   K.elegans      Lake_Wales   F 6.59   3.27  9.18    NA       May 2013.0
## 234   K.elegans      Lake_Wales   M 5.25   2.77  7.91    NA       May 2013.0
## 235   K.elegans      Lake_Wales   M 5.37   2.88  8.09    NA       May 2013.0
## 236   K.elegans      Lake_Wales   F 7.12   3.52  9.23    NA       May 2013.0
## 237   K.elegans      Lake_Wales   F 7.22   3.30  9.01    NA       May 2013.0
## 238   K.elegans      Lake_Wales   M 5.52   2.73  8.05    NA       May 2013.0
## 239   K.elegans      Lake_Wales   F 6.40   2.90  8.01    NA       May 2013.0
## 240   K.elegans      Lake_Wales   F 6.28   2.72  7.65    NA       May 2013.0
## 241   K.elegans      Lake_Wales   M 5.13   2.68  7.03    NA       May 2013.0
## 242   K.elegans      Lake_Wales   M 4.95   2.62  4.52    NA       May 2013.0
## 243   K.elegans      Lake_Wales   F 6.51   3.51  9.02    NA       May 2013.0
## 244   K.elegans      Lake_Wales   M 5.72   3.14  8.40    NA       May 2013.0
## 245   K.elegans      Lake_Wales   F 7.69   3.29  9.71    NA       May 2013.0
## 246   K.elegans      Lake_Wales   F 6.77   3.30  9.85    NA       May 2013.0
## 247   K.elegans      Lake_Wales   F 6.60   2.93  8.70    NA       May 2013.0
## 248   K.elegans      Lake_Wales   F 6.34   3.02  8.18    NA       May 2013.0
## 249   K.elegans      Lake_Wales   F 7.35   3.20  8.75    NA       May 2013.0
## 250   K.elegans      Lake_Wales   M 5.51   3.04  8.48    NA       May 2013.0
## 251   K.elegans      Lake_Wales   M 5.15   3.04  8.22    NA       May 2013.0
## 252   K.elegans      Lake_Wales   M 5.49   2.69  7.16    NA       May 2013.0
## 253   K.elegans      Lake_Wales   M 6.51   3.04  8.23    NA       May 2013.0
## 254   K.elegans      Lake_Wales   M 5.22   2.58  6.82    NA       May 2013.0
## 255   K.elegans      Lake_Wales   M 5.11   2.48  7.28    NA       May 2013.0
## 256   K.elegans      Lake_Wales   M 5.17   2.63  7.47    NA       May 2013.0
## 257   K.elegans      Lake_Wales   F 6.73   3.53 10.06    NA       May 2013.0
## 258   K.elegans      Lake_Wales   M 5.29   2.62  5.35    NA       May 2013.0
## 259   K.elegans      Lake_Wales   F 6.94   3.70  9.88    NA       May 2013.0
## 260   K.elegans      Lake_Wales   M 5.44   2.58  7.68    NA       May 2013.0
## 261   K.elegans        Leesburg   M 5.13   2.56  5.34    NA       May 2013.0
## 262   K.elegans        Leesburg   M 5.35   2.59  5.00    NA       May 2013.0
## 263   K.elegans        Leesburg   F 6.25   3.80  9.33    NA       May 2013.0
## 264   K.elegans        Leesburg   M 5.13   2.64  4.63    NA       May 2013.0
## 265   K.elegans        Leesburg   F 6.17   2.97  7.20    NA       May 2013.0
## 266   K.elegans        Leesburg   M 4.69   2.20  4.22    NA       May 2013.0
## 267   K.elegans        Leesburg   M 5.21   2.69  7.37    NA       May 2013.0
## 268   K.elegans        Leesburg   F 6.63   3.08  8.28    NA       May 2013.0
## 269   K.elegans        Leesburg   M 6.07   3.04  8.80    NA       May 2013.0
## 270   K.elegans        Leesburg   M 5.62   2.82  8.59    NA       May 2013.0
## 271   K.elegans        Leesburg   F 7.60   3.45  9.20    NA       May 2013.0
## 272   K.elegans        Leesburg   M 5.66   2.97  8.71    NA       May 2013.0
## 273   K.elegans        Leesburg   F 6.29   3.28  8.58    NA       May 2013.0
## 274   K.elegans        Leesburg   M 5.09   2.81  5.39    NA       May 2013.0
## 275   K.elegans        Leesburg   M 5.00   2.42  7.03    NA       May 2013.0
## 276   K.elegans        Leesburg   F 7.44   3.32  8.99    NA       May 2013.0
## 277   K.elegans        Leesburg   M 5.70   2.90  7.74    NA       May 2013.0
## 278   K.elegans        Leesburg   M 5.52   2.97  8.38    NA       May 2013.0
## 279   K.elegans        Leesburg   F 7.41   3.36  9.00    NA       May 2013.0
## 280   K.elegans        Leesburg   M 5.80   3.21  8.52    NA       May 2013.0
## 281   K.elegans        Leesburg   F 6.20   3.14  5.60    NA       May 2013.0
## 282   K.elegans        Leesburg   M 6.95   3.19  8.37    NA       May 2013.0
## 283   K.elegans        Leesburg   F 7.52   3.43  8.91    NA       May 2013.0
## 284   K.elegans        Leesburg   F 5.90   2.77  5.22    NA       May 2013.0
## 285   K.elegans        Leesburg   F 5.54   2.72  6.84    NA       May 2013.0
## 286  C.corindum  Plantation_Key   M 6.31   3.13  8.50    NA       May 2013.0
## 287  C.corindum  Plantation_Key   F 6.99   3.13  5.39    NA       May 2013.0
## 288  C.corindum  Plantation_Key   M 6.03   3.10  8.85    NA       May 2013.0
## 289  C.corindum  Plantation_Key   M 5.84   3.10  8.70    NA       May 2013.0
## 290  C.corindum  Plantation_Key   M 6.41   3.15  8.88    NA       May 2013.0
## 291  C.corindum  Plantation_Key   F 8.36   3.14  8.97    NA       May 2013.0
## 292  C.corindum  Plantation_Key   M 5.19   2.98  8.59    NA       May 2013.0
## 293  C.corindum  Plantation_Key   M 5.59   2.60  4.58    NA       May 2013.0
## 294  C.corindum  Plantation_Key   M 5.82   2.85  7.65    NA       May 2013.0
## 295  C.corindum  Plantation_Key   F 7.02   3.07  6.45    NA       May 2013.0
## 296  C.corindum  Plantation_Key   F 6.56   2.83  4.45    NA       May 2013.0
## 297  C.corindum  Plantation_Key   M 5.31   2.60  4.22    NA       May 2013.0
## 298  C.corindum  Plantation_Key   M 5.72   2.69  6.65    NA       May 2013.0
## 299  C.corindum  Plantation_Key   F 6.68   2.99  5.16    NA       May 2013.0
## 300  C.corindum  Plantation_Key   M 6.55   3.24  8.89    NA       May 2013.0
## 301  C.corindum  Plantation_Key   M 5.81   2.70  7.17    NA       May 2013.0
## 302  C.corindum  Plantation_Key   M 5.53   2.83  6.99    NA       May 2013.0
## 303  C.corindum  Plantation_Key   M 5.63   2.94  7.60    NA       May 2013.0
## 304  C.corindum  Plantation_Key   M 5.90   2.73  5.33    NA       May 2013.0
## 305  C.corindum  Plantation_Key   F 8.64   3.72 10.00    NA       May 2013.0
## 306  C.corindum  Plantation_Key   M 5.95   3.07  8.13    NA       May 2013.0
## 307  C.corindum  Plantation_Key   F 6.60   2.89  5.29    NA       May 2013.0
## 308  C.corindum  Plantation_Key   F 7.03   3.44  5.56    NA       May 2013.0
## 309  C.corindum  Plantation_Key   F 8.08   3.31  8.68    NA       May 2013.0
## 310  C.corindum  Plantation_Key   F 7.87   3.29  6.48    NA       May 2013.0
## 311  C.corindum  Plantation_Key   M 5.53   2.63  5.50    NA       May 2013.0
## 312  C.corindum  Plantation_Key   F 7.15   3.20  6.29    NA       May 2013.0
## 313  C.corindum  Plantation_Key   M 5.80   2.85  7.19    NA       May 2013.0
## 314  C.corindum  Plantation_Key   M 6.31   3.23  8.61    NA       May 2013.0
## 315  C.corindum  Plantation_Key   M 6.17   3.21  8.01    NA       May 2013.0
## 316  C.corindum  Plantation_Key   F 7.64   3.46  8.75    NA       May 2013.0
## 317  C.corindum  Plantation_Key   F 7.86   3.31  6.52    NA       May 2013.0
## 318  C.corindum  Plantation_Key   F 7.56   3.11  6.08    NA       May 2013.0
## 319  C.corindum  Plantation_Key   M 6.13   2.97  8.26    NA       May 2013.0
## 320  C.corindum  Plantation_Key   F 7.55   3.35  5.47    NA       May 2013.0
## 321  C.corindum  Plantation_Key   M 6.38   2.92  7.74    NA       May 2013.0
## 322   K.elegans        Ft.Myers   M 5.61   3.27  8.21    NA  December 2013.6
## 323   K.elegans        Ft.Myers   F 7.89   3.85 10.60    NA  December 2013.6
## 324   K.elegans        Ft.Myers   F 7.00   3.93  9.80    NA  December 2013.6
## 325   K.elegans        Ft.Myers   F 6.97   3.71  9.66    NA  December 2013.6
## 326   K.elegans        Ft.Myers   F 7.78   3.68 10.01    NA  December 2013.6
## 327   K.elegans        Ft.Myers   M 5.74   3.19  8.29    NA  December 2013.6
## 328   K.elegans        Ft.Myers   F 7.99   3.75  9.52    NA  December 2013.6
## 329   K.elegans        Ft.Myers   F 8.44   3.68  9.83    NA  December 2013.6
## 330   K.elegans        Ft.Myers   F 7.35   3.82 10.34    NA  December 2013.6
## 331   K.elegans        Ft.Myers   M 5.55   3.31  8.94    NA  December 2013.6
## 332   K.elegans        Ft.Myers   F 6.73   3.48  9.70    NA  December 2013.6
## 333   K.elegans        Ft.Myers   F 6.23   3.98  7.21    NA  December 2013.6
## 334   K.elegans        Ft.Myers   M 5.57   3.51  9.16    NA  December 2013.6
## 335   K.elegans        Ft.Myers   F 7.38   3.48  9.51    NA  December 2013.6
## 336   K.elegans        Ft.Myers   F 7.74   3.59  9.71    NA  December 2013.6
## 337   K.elegans        Ft.Myers   M 5.38   3.25  8.87    NA  December 2013.6
## 338   K.elegans        Ft.Myers   M 4.96   3.08  7.92    NA  December 2013.6
## 339   K.elegans        Ft.Myers   F 7.57   3.49  9.29    NA  December 2013.6
## 340   K.elegans        Ft.Myers   F 7.94   3.92  9.82    NA  December 2013.6
## 341   K.elegans        Ft.Myers   F 6.85   3.76 10.04    NA  December 2013.6
## 342   K.elegans        Ft.Myers   F 6.57   3.71  9.58    NA  December 2013.6
## 343   K.elegans        Ft.Myers   F 7.70   3.74 10.23    NA  December 2013.6
## 344   K.elegans        Ft.Myers   F 6.43   4.11  9.85    NA  December 2013.6
## 345   K.elegans        Ft.Myers   F 7.54   3.61 10.24    NA  December 2013.6
## 346   K.elegans        Ft.Myers   M 5.48   2.93  8.49    NA  December 2013.6
## 347   K.elegans        Ft.Myers   F 8.20   3.51  8.76    NA  December 2013.6
## 348   K.elegans        Ft.Myers   F 7.45   3.58  9.17    NA  December 2013.6
## 349   K.elegans        Ft.Myers   F 6.96   3.61  9.94    NA  December 2013.6
## 350   K.elegans        Ft.Myers   F 7.73   3.77 10.19    NA  December 2013.6
## 351   K.elegans        Ft.Myers   F 6.77   3.53 10.18    NA  December 2013.6
## 352   K.elegans        Ft.Myers   F 7.17   3.46  9.29    NA  December 2013.6
## 353   K.elegans        Ft.Myers   F 8.09   3.50  9.63    NA  December 2013.6
## 354   K.elegans        Ft.Myers   F 8.13   3.69  9.94    NA  December 2013.6
## 355   K.elegans        Ft.Myers   F 7.98   3.85  9.81    NA  December 2013.6
## 356   K.elegans        Ft.Myers   M 5.59   3.13  8.60    NA  December 2013.6
## 357   K.elegans        Ft.Myers   F 6.35   3.47  9.51    NA  December 2013.6
## 358   K.elegans        Ft.Myers   M 5.96   2.99  8.44    NA  December 2013.6
## 359   K.elegans        Ft.Myers   F 7.43   3.58  9.26    NA  December 2013.6
## 360   K.elegans        Ft.Myers   M 5.66   2.88  8.40    NA  December 2013.6
## 361   K.elegans        Ft.Myers   F 7.76   3.62  9.42    NA  December 2013.6
## 362   K.elegans        Ft.Myers   F 7.77   3.73  9.87    NA  December 2013.6
## 363   K.elegans        Ft.Myers   F 7.18   3.52  9.96    NA  December 2013.6
## 364   K.elegans        Ft.Myers   F 6.76   3.68  9.85    NA  December 2013.6
## 365   K.elegans        Ft.Myers   F 7.51   3.86 10.25    NA  December 2013.6
## 366   K.elegans        Ft.Myers   M 5.95   3.14  8.55    NA  December 2013.6
## 367   K.elegans        Ft.Myers   F 8.61   3.92 10.35    NA  December 2013.6
## 368   K.elegans        Ft.Myers   M 5.72   2.97  8.51    NA  December 2013.6
## 369   K.elegans        Ft.Myers   F 8.31   3.62  9.70    NA  December 2013.6
## 370   K.elegans        Ft.Myers   M 5.30   2.82  8.16    NA  December 2013.6
## 371   K.elegans        Ft.Myers   M 5.94   2.94  8.67    NA  December 2013.6
## 372   K.elegans        Ft.Myers   M 5.31   3.29  8.87    NA  December 2013.6
## 373   K.elegans        Ft.Myers   F 7.72   3.55 10.09    NA  December 2013.6
## 374   K.elegans        Ft.Myers   F 7.14   3.53  9.39    NA  December 2013.6
## 375   K.elegans        Ft.Myers   F 8.35   3.61  9.66    NA  December 2013.6
## 376   K.elegans        Ft.Myers   M 5.91   3.20  8.87    NA  December 2013.6
## 377   K.elegans        Ft.Myers   F 7.14   3.69 10.11    NA  December 2013.6
## 378   K.elegans        Ft.Myers   F 7.51   3.63 10.53    NA  December 2013.6
## 379   K.elegans        Ft.Myers   F 7.98   3.58  9.69    NA  December 2013.6
## 380   K.elegans        Ft.Myers   M 5.89   3.14  8.36    NA  December 2013.6
## 381   K.elegans        Ft.Myers   F 8.11   3.76 10.40    NA  December 2013.6
## 382   K.elegans        Ft.Myers   M 5.77   3.04  8.16    NA  December 2013.6
## 383   K.elegans        Ft.Myers   F 7.59   3.63 10.28    NA  December 2013.6
## 384   K.elegans        Ft.Myers   F 8.46   3.87 10.21    NA  December 2013.6
## 385   K.elegans        Ft.Myers   F 8.05   3.44  9.83    NA  December 2013.6
## 386   K.elegans        Ft.Myers   F 7.19   3.67  9.74    NA  December 2013.6
## 387   K.elegans        Ft.Myers   F 7.09   3.67  9.87    NA  December 2013.6
## 388   K.elegans        Ft.Myers   M 5.19   2.74  7.71    NA  December 2013.6
## 389   K.elegans        Ft.Myers   M 5.73   3.12  8.30    NA  December 2013.6
## 390   K.elegans        Ft.Myers   F 7.07   3.72 10.43    NA  December 2013.6
## 391   K.elegans        Ft.Myers   F 7.15   3.66  9.96    NA  December 2013.6
## 392   K.elegans        Ft.Myers   F 7.46   3.53  9.28    NA  December 2013.6
## 393   K.elegans        Ft.Myers   F 8.05   3.81 10.15    NA  December 2013.6
## 394   K.elegans        Ft.Myers   F 7.21   3.78 10.17    NA  December 2013.6
## 395   K.elegans        Ft.Myers   F 7.19   3.25  9.50    NA  December 2013.6
## 396   K.elegans        Ft.Myers   F 6.89   3.75  9.57    NA  December 2013.6
## 397   K.elegans     Gainesville   M 5.89   3.05  8.32    NA  December 2013.6
## 398   K.elegans     Gainesville   M 5.66   3.22  8.79    NA  December 2013.6
## 399   K.elegans     Gainesville   F 8.38   3.59  9.78    NA  December 2013.6
## 400   K.elegans     Gainesville   M 5.62   3.20  8.32    NA  December 2013.6
## 401   K.elegans     Gainesville   M 5.64   2.96  8.22    NA  December 2013.6
## 402   K.elegans     Gainesville   M 5.70   3.12  8.30    NA  December 2013.6
## 403   K.elegans     Gainesville   M 5.38   3.08  7.91    NA  December 2013.6
## 404   K.elegans     Gainesville   M 5.74   2.73  7.48    NA  December 2013.6
## 405   K.elegans     Gainesville   M 6.46   3.10  8.13    NA  December 2013.6
## 406   K.elegans     Gainesville   M 6.69   3.02  8.44    NA  December 2013.6
## 407   K.elegans     Gainesville   F 7.84   3.45  9.33    NA  December 2013.6
## 408   K.elegans     Gainesville   M 5.60   2.96  8.64    NA  December 2013.6
## 409   K.elegans     Gainesville   F 8.14   3.42  9.08    NA  December 2013.6
## 410   K.elegans     Gainesville   F 7.46   3.38  9.13    NA  December 2013.6
## 411  C.corindum       Homestead   F 6.75   3.33  6.07    NA  December 2013.6
## 412  C.corindum       Homestead   F 6.76   3.40  6.22    NA  December 2013.6
## 413  C.corindum       Homestead   F 7.10   3.75  9.06    NA  December 2013.6
## 414  C.corindum       Homestead   F 6.82   3.63  8.91    NA  December 2013.6
## 415  C.corindum       Homestead   M 5.13   2.84  5.64    NA  December 2013.6
## 416  C.corindum       Homestead   F 6.42   3.22  5.74    NA  December 2013.6
## 417  C.corindum       Homestead   M 5.34   3.24  9.26    NA  December 2013.6
## 418  C.corindum       Homestead   F 7.14   3.63  9.23    NA  December 2013.6
## 419  C.corindum       Homestead   F 6.74   3.36  5.53    NA  December 2013.6
## 420  C.corindum       Homestead   F 6.73   3.84  9.56    NA  December 2013.6
## 421  C.corindum       Homestead   F 6.61   3.64  7.79    NA  December 2013.6
## 422  C.corindum       Homestead   M 5.28   3.23  7.83    NA  December 2013.6
## 423  C.corindum       Homestead   F 7.11   3.35  6.58    NA  December 2013.6
## 424  C.corindum       Homestead   F 6.25   3.32  5.41    NA  December 2013.6
## 425  C.corindum       Homestead   M 5.99   3.21  8.94    NA  December 2013.6
## 426  C.corindum       Homestead   F 6.49   3.59  9.37    NA  December 2013.6
## 427  C.corindum       Homestead   F 6.67   3.46  6.01    NA  December 2013.6
## 428  C.corindum       Homestead   M 5.49   2.84  4.83    NA  December 2013.6
## 429  C.corindum       Homestead   F 6.36   3.48  6.22    NA  December 2013.6
## 430  C.corindum       Homestead   M 5.56   3.25  8.21    NA  December 2013.6
## 431  C.corindum       Homestead   M 5.33   3.05  8.21    NA  December 2013.6
## 432  C.corindum       Homestead   M 5.49   2.99  8.27    NA  December 2013.6
## 433  C.corindum       Homestead   F 7.96   3.96  9.73    NA  December 2013.6
## 434   K.elegans       Homestead   M 5.49   2.93  7.06    NA  December 2013.6
## 435   K.elegans       Homestead   F 6.23   3.36  5.70    NA  December 2013.6
## 436   K.elegans       Homestead   M 5.24   2.90  7.64    NA  December 2013.6
## 437   K.elegans       Homestead   F 6.59   3.33  6.98    NA  December 2013.6
## 438   K.elegans       Homestead   F 6.44   3.48  7.00    NA  December 2013.6
## 439   K.elegans       Homestead   M 5.79   3.15  8.90    NA  December 2013.6
## 440   K.elegans       Homestead   F 6.92   3.67  8.95    NA  December 2013.6
## 441   K.elegans       Homestead   M 5.72   3.18  8.02    NA  December 2013.6
## 442   K.elegans       Homestead   M 5.47   3.12  8.04    NA  December 2013.6
## 443   K.elegans       Homestead   M 5.82   3.24  7.94    NA  December 2013.6
## 444   K.elegans       Homestead   F 6.20   3.20  6.28    NA  December 2013.6
## 445   K.elegans       Homestead   F 7.45   3.83 10.15    NA  December 2013.6
## 446   K.elegans       Homestead   M 5.67   3.35  9.08    NA  December 2013.6
## 447   K.elegans       Homestead   F 7.28   3.85 10.20    NA  December 2013.6
## 448   K.elegans       Homestead   M 5.12   2.95  5.64    NA  December 2013.6
## 449   K.elegans       Homestead   F 6.58   3.60  7.28    NA  December 2013.6
## 450   K.elegans       Homestead   M 5.88   3.23  8.97    NA  December 2013.6
## 451   K.elegans       Homestead   F 5.98   3.19  5.69    NA  December 2013.6
## 452   K.elegans       Homestead   M 5.34   2.92  5.92    NA  December 2013.6
## 453   K.elegans       Homestead   M 5.66   3.18  8.93    NA  December 2013.6
## 454   K.elegans       Homestead   F 7.35   3.91 10.00    NA  December 2013.6
## 455   K.elegans       Homestead   F 7.18   3.72  8.10    NA  December 2013.6
## 456   K.elegans       Homestead   M 5.17   2.98  7.42    NA  December 2013.6
## 457   K.elegans       Homestead   F 7.28   3.76  9.51    NA  December 2013.6
## 458   K.elegans       Homestead   M 6.21   3.33  5.69    NA  December 2013.6
## 459   K.elegans       Homestead   F 7.45   3.88 10.30    NA  December 2013.6
## 460   K.elegans       Homestead   F 6.86   3.63 10.13    NA  December 2013.6
## 461   K.elegans       Homestead   F 7.16   3.36  8.81    NA  December 2013.6
## 462   K.elegans       Homestead   M 5.92   3.17  8.61    NA  December 2013.6
## 463  C.corindum       Key_Largo   M 6.38   3.07  8.20    NA  December 2013.6
## 464  C.corindum       Key_Largo   F 9.82   3.78  9.86    NA  December 2013.6
## 465  C.corindum       Key_Largo   F 7.17   3.20  5.04    NA  December 2013.6
## 466  C.corindum       Key_Largo   M 5.96   2.80  7.59    NA  December 2013.6
## 467  C.corindum       Key_Largo   F 8.94   3.96 10.23    NA  December 2013.6
## 468  C.corindum       Key_Largo   F 8.06   3.24  8.29    NA  December 2013.6
## 469  C.corindum       Key_Largo   M 6.60   3.00  8.28    NA  December 2013.6
## 470  C.corindum       Key_Largo   F 6.77   2.84  4.96    NA  December 2013.6
## 471  C.corindum       Key_Largo   F 8.97   3.83  9.86    NA  December 2013.6
## 472  C.corindum       Key_Largo   M 5.93   2.80  4.80    NA  December 2013.6
## 473  C.corindum       Key_Largo   M 6.26   3.03  8.02    NA  December 2013.6
## 474  C.corindum       Key_Largo   F 9.44   3.74  9.88    NA  December 2013.6
## 475  C.corindum       Key_Largo   M 6.07   3.04  7.34    NA  December 2013.6
## 476  C.corindum       Key_Largo   M 6.56   3.01  7.90    NA  December 2013.6
## 477  C.corindum       Key_Largo   M 6.15   3.15  8.26    NA  December 2013.6
## 478  C.corindum       Key_Largo   F 7.40   3.05  5.15    NA  December 2013.6
## 479  C.corindum       Key_Largo   M 6.02   2.81  5.32    NA  December 2013.6
## 480  C.corindum       Key_Largo   F 9.06   3.55  8.90    NA  December 2013.6
## 481  C.corindum       Key_Largo   M 6.56   3.21  7.89    NA  December 2013.6
## 482  C.corindum       Key_Largo   M 6.81   3.31  8.51    NA  December 2013.6
## 483  C.corindum       Key_Largo   F 7.90   3.25  8.78    NA  December 2013.6
## 484  C.corindum       Key_Largo   M 6.56   2.99  8.11    NA  December 2013.6
## 485  C.corindum       Key_Largo   F 7.92   3.36  8.71    NA  December 2013.6
## 486  C.corindum       Key_Largo   M 5.53   3.29  8.64    NA  December 2013.6
## 487  C.corindum       Key_Largo   F 7.20   3.90 10.34    NA  December 2013.6
## 488  C.corindum       Key_Largo   F 7.75   3.63  9.98    NA  December 2013.6
## 489  C.corindum       Key_Largo   F 7.66   3.39  9.49    NA  December 2013.6
## 490  C.corindum       Key_Largo   M 5.65   3.13  8.94    NA  December 2013.6
## 491  C.corindum       Key_Largo   F 8.15   3.73  9.46    NA  December 2013.6
## 492  C.corindum       Key_Largo   F 7.61   3.39  8.89    NA  December 2013.6
## 493  C.corindum       Key_Largo   M 5.90   2.76  4.51    NA  December 2013.6
## 494  C.corindum       Key_Largo   F 7.86   3.78  9.82    NA  December 2013.6
## 495   K.elegans      Lake_Wales   F 7.24   3.15  8.80    NA  December 2013.6
## 496   K.elegans      Lake_Wales   M 6.18   2.92  8.41    NA  December 2013.6
## 497   K.elegans      Lake_Wales   F 7.48   3.21  8.92    NA  December 2013.6
## 498   K.elegans      Lake_Wales   F 7.34   3.30  8.97    NA  December 2013.6
## 499   K.elegans      Lake_Wales   F 7.86   3.59  9.21    NA  December 2013.6
## 500   K.elegans      Lake_Wales   M 5.39   2.96  8.09    NA  December 2013.6
## 501   K.elegans      Lake_Wales   F 8.37   3.52  9.95    NA  December 2013.6
## 502   K.elegans      Lake_Wales   M 5.58   2.99  7.85    NA  December 2013.6
## 503   K.elegans      Lake_Wales   F 7.21   2.99  7.93    NA  December 2013.6
## 504   K.elegans      Lake_Wales   F 7.99   3.54  9.23    NA  December 2013.6
## 505   K.elegans      Lake_Wales   M 5.68   3.06  7.84    NA  December 2013.6
## 506   K.elegans      Lake_Wales   F 6.90   3.25  8.91    NA  December 2013.6
## 507   K.elegans      Lake_Wales   M 5.88   3.19  8.63    NA  December 2013.6
## 508   K.elegans      Lake_Wales   F 7.48   3.42  9.94    NA  December 2013.6
## 509   K.elegans      Lake_Wales   M 5.58   2.71  8.02    NA  December 2013.6
## 510   K.elegans      Lake_Wales   M 6.02   3.17  8.11    NA  December 2013.6
## 511   K.elegans      Lake_Wales   M 5.74   3.16  8.17    NA  December 2013.6
## 512   K.elegans      Lake_Wales   F 7.25   3.64  9.70    NA  December 2013.6
## 513   K.elegans      Lake_Wales   M 5.80   2.92  8.24    NA  December 2013.6
## 514   K.elegans      Lake_Wales   M 5.72   3.11  8.58    NA  December 2013.6
## 515   K.elegans      Lake_Wales   M 5.83   2.87  8.31    NA  December 2013.6
## 516   K.elegans      Lake_Wales   F 8.16   3.65 10.65    NA  December 2013.6
## 517   K.elegans      Lake_Wales   F 8.38   3.68 10.06    NA  December 2013.6
## 518   K.elegans      Lake_Wales   F 7.14   3.43  9.42    NA  December 2013.6
## 519   K.elegans      Lake_Wales   M 5.74   3.12  8.29    NA  December 2013.6
## 520   K.elegans      Lake_Wales   M 5.75   2.97  7.66    NA  December 2013.6
## 521   K.elegans      Lake_Wales   M 5.65   2.94  8.44    NA  December 2013.6
## 522   K.elegans      Lake_Wales   M 5.79   3.07  8.51    NA  December 2013.6
## 523   K.elegans      Lake_Wales   M 5.29   3.09  7.97    NA  December 2013.6
## 524   K.elegans      Lake_Wales   F 7.43   3.87 10.44    NA  December 2013.6
## 525   K.elegans      Lake_Wales   M 5.77   3.06  8.37    NA  December 2013.6
## 526   K.elegans      Lake_Wales   M 5.27   2.72  7.93    NA  December 2013.6
## 527   K.elegans      Lake_Wales   F 6.91   3.66  9.75    NA  December 2013.6
## 528   K.elegans      Lake_Wales   M 5.27   2.84  7.88    NA  December 2013.6
## 529   K.elegans      Lake_Wales   M 5.70   2.99  8.73    NA  December 2013.6
## 530   K.elegans      Lake_Wales   M 5.57   2.96  8.59    NA  December 2013.6
## 531   K.elegans      Lake_Wales   M 5.51   2.87  7.90    NA  December 2013.6
## 532   K.elegans      Lake_Wales   M 5.46   3.04  8.30    NA  December 2013.6
## 533   K.elegans      Lake_Wales   F 7.24   3.36  9.19    NA  December 2013.6
## 534   K.elegans      Lake_Wales   M 5.63   2.74  7.77    NA  December 2013.6
## 535   K.elegans      Lake_Wales   F 7.61   3.43  9.11    NA  December 2013.6
## 536   K.elegans      Lake_Wales   M 6.49   3.24  8.82    NA  December 2013.6
## 537   K.elegans      Lake_Wales   F 8.53   3.48  8.92    NA  December 2013.6
## 538   K.elegans      Lake_Wales   F 7.97   3.34  8.98    NA  December 2013.6
## 539   K.elegans      Lake_Wales   F 7.38   3.35  8.50    NA  December 2013.6
## 540   K.elegans      Lake_Wales   M 5.53   3.08  8.03    NA  December 2013.6
## 541   K.elegans      Lake_Wales   M 5.86   3.06  7.78    NA  December 2013.6
## 542   K.elegans      Lake_Wales   M 5.44   2.79  6.72    NA  December 2013.6
## 543   K.elegans      Lake_Wales   F 6.86   3.19  8.83    NA  December 2013.6
## 544   K.elegans      Lake_Wales   M 6.13   2.87  8.16    NA  December 2013.6
## 545   K.elegans      Lake_Wales   F 7.36   3.27  8.74    NA  December 2013.6
## 546   K.elegans      Lake_Wales   M 5.49   2.75  7.60    NA  December 2013.6
## 547   K.elegans      Lake_Wales   F 7.45   2.37  7.86    NA  December 2013.6
## 548   K.elegans      Lake_Wales   F 7.28   3.54  8.51    NA  December 2013.6
## 549   K.elegans      Lake_Wales   F 8.05   3.82  9.27    NA  December 2013.6
## 550   K.elegans      Lake_Wales   M 5.23   2.92  7.47    NA  December 2013.6
## 551   K.elegans      Lake_Wales   M 5.66   3.07  7.64    NA  December 2013.6
## 552   K.elegans      Lake_Wales   F 7.51   3.56  9.20    NA  December 2013.6
## 553   K.elegans      Lake_Wales   M 5.63   2.80  7.92    NA  December 2013.6
## 554   K.elegans      Lake_Wales   M 5.64   2.91  7.95    NA  December 2013.6
## 555   K.elegans      Lake_Wales   M 5.78   3.27  8.64    NA  December 2013.6
## 556   K.elegans      Lake_Wales   F 7.36   2.88  8.40    NA  December 2013.6
## 557   K.elegans      Lake_Wales   F 7.43   3.21  7.62    NA  December 2013.6
## 558   K.elegans      Lake_Wales   M 5.90   3.10  7.85    NA  December 2013.6
## 559   K.elegans      Lake_Wales   M 5.63   3.24  8.97    NA  December 2013.6
## 560   K.elegans      Lake_Wales   F 8.67   3.61  9.20    NA  December 2013.6
## 561   K.elegans      Lake_Wales   M 5.56   2.82  8.03    NA  December 2013.6
## 562   K.elegans      Lake_Wales   M 5.91   3.05  8.13    NA  December 2013.6
## 563   K.elegans      Lake_Wales   M 6.09   3.37  8.08    NA  December 2013.6
## 564   K.elegans      Lake_Wales   M 5.35   2.86  7.53    NA  December 2013.6
## 565   K.elegans      Lake_Wales   M 6.20   3.27  8.40    NA  December 2013.6
## 566   K.elegans      Lake_Wales   M 5.55   3.21  8.64    NA  December 2013.6
## 567   K.elegans      Lake_Wales   M 5.73   2.85  7.11    NA  December 2013.6
## 568   K.elegans      Lake_Wales   M 5.43   2.94  8.49    NA  December 2013.6
## 569   K.elegans      Lake_Wales   M 5.53   3.03  7.77    NA  December 2013.6
## 570   K.elegans      Lake_Wales   F 8.30   3.61  8.95    NA  December 2013.6
## 571   K.elegans      Lake_Wales   M 5.79   2.81  7.58    NA  December 2013.6
## 572   K.elegans      Lake_Wales   M 5.62   2.90  7.19    NA  December 2013.6
## 573   K.elegans      Lake_Wales   F 8.12   3.45  9.65    NA  December 2013.6
## 574   K.elegans      Lake_Wales   M 6.04   3.15  8.74    NA  December 2013.6
## 575   K.elegans      Lake_Wales   M 5.68   2.95  7.50    NA  December 2013.6
## 576   K.elegans      Lake_Wales   F 7.09   3.51  8.53    NA  December 2013.6
## 577   K.elegans      Lake_Wales   M 5.96   3.08  8.12    NA  December 2013.6
## 578   K.elegans      Lake_Wales   M 5.98   2.94  7.66    NA  December 2013.6
## 579   K.elegans        Leesburg   F 7.34   3.42  8.59    NA  December 2013.6
## 580   K.elegans        Leesburg   F 8.19   3.66  8.95    NA  December 2013.6
## 581   K.elegans        Leesburg   F 7.05   3.44  8.24    NA  December 2013.6
## 582   K.elegans        Leesburg   F 7.74   3.55  9.05    NA  December 2013.6
## 583   K.elegans        Leesburg   M 5.34   3.11  8.59    NA  December 2013.6
## 584   K.elegans        Leesburg   M 5.71   2.97  7.84    NA  December 2013.6
## 585   K.elegans        Leesburg   F 7.67   3.14  8.01    NA  December 2013.6
## 586   K.elegans        Leesburg   F 7.79   3.66  8.90    NA  December 2013.6
## 587   K.elegans        Leesburg   M 5.75   3.02  8.08    NA  December 2013.6
## 588   K.elegans        Leesburg   M 6.16   3.28  7.89    NA  December 2013.6
## 589   K.elegans        Leesburg   F 6.82   3.49  9.02    NA  December 2013.6
## 590   K.elegans        Leesburg   M 6.06   3.34  8.17    NA  December 2013.6
## 591   K.elegans        Leesburg   F 6.97   3.49  9.94    NA  December 2013.6
## 592   K.elegans        Leesburg   F 7.40   3.35  9.25    NA  December 2013.6
## 593   K.elegans        Leesburg   M 5.30   3.32  8.84    NA  December 2013.6
## 594   K.elegans        Leesburg   M 5.81   2.66  8.19    NA  December 2013.6
## 595   K.elegans        Leesburg   F 7.94   3.45  8.26    NA  December 2013.6
## 596   K.elegans        Leesburg   F 7.46   3.12  9.10    NA  December 2013.6
## 597   K.elegans        Leesburg   F 7.87   3.64  9.72    NA  December 2013.6
## 598   K.elegans        Leesburg   F 7.72   3.35  7.99    NA  December 2013.6
## 599   K.elegans        Leesburg   F 8.28   3.88  9.88    NA  December 2013.6
## 600   K.elegans        Leesburg   F 8.06   3.55  8.44    NA  December 2013.6
## 601   K.elegans        Leesburg   M 6.27   2.95  8.89    NA  December 2013.6
## 602   K.elegans        Leesburg   F 7.67   3.62  8.78    NA  December 2013.6
## 603   K.elegans        Leesburg   F 8.42   3.54  8.76    NA  December 2013.6
## 604   K.elegans        Leesburg   M 6.05   3.17  8.05    NA  December 2013.6
## 605   K.elegans        Leesburg   M 6.01   3.11  7.97    NA  December 2013.6
## 606   K.elegans        Leesburg   M 5.49   3.02  7.67    NA  December 2013.6
## 607   K.elegans        Leesburg   M 5.69   3.14  8.81    NA  December 2013.6
## 608   K.elegans        Leesburg   F 7.64   3.57  9.38    NA  December 2013.6
## 609   K.elegans        Leesburg   F 6.49   3.21  7.94    NA  December 2013.6
## 610   K.elegans        Leesburg   M 5.78   3.08  8.45    NA  December 2013.6
## 611   K.elegans        Leesburg   F 7.65   3.51  9.34    NA  December 2013.6
## 612   K.elegans        Leesburg   F 8.17   3.45  8.39    NA  December 2013.6
## 613   K.elegans        Leesburg   F 7.56   2.98  8.72    NA  December 2013.6
## 614   K.elegans        Leesburg   F 7.29   3.57 10.10    NA  December 2013.6
## 615   K.elegans        Leesburg   F 6.78   3.49  8.33    NA  December 2013.6
## 616   K.elegans        Leesburg   M 5.76   3.06  8.10    NA  December 2013.6
## 617   K.elegans        Leesburg   M 5.84   2.82  7.75    NA  December 2013.6
## 618   K.elegans        Leesburg   M 4.99   2.89  7.35    NA  December 2013.6
## 619   K.elegans        Leesburg   F 7.95   3.43  8.86    NA  December 2013.6
## 620   K.elegans        Leesburg   F 8.01   3.27  9.54    NA  December 2013.6
## 621   K.elegans        Leesburg   M 5.32   2.89  7.60    NA  December 2013.6
## 622   K.elegans        Leesburg   M 6.09   3.00  8.61    NA  December 2013.6
## 623   K.elegans        Leesburg   M 5.89   3.32  8.07    NA  December 2013.6
## 624   K.elegans        Leesburg   M 5.82   3.11  8.03    NA  December 2013.6
## 625   K.elegans        Leesburg   M 5.57   2.87  7.12    NA  December 2013.6
## 626   K.elegans        Leesburg   M 6.10   2.86  8.28    NA  December 2013.6
## 627   K.elegans        Leesburg   F 5.94   3.48  7.44    NA  December 2013.6
## 628   K.elegans        Leesburg   F 7.48   3.36  8.32    NA  December 2013.6
## 629   K.elegans        Leesburg   F 7.89   3.27  8.19    NA  December 2013.6
## 630   K.elegans        Leesburg   M 5.65   3.34  8.62    NA  December 2013.6
## 631   K.elegans        Leesburg   M 5.80   2.91  8.83    NA  December 2013.6
## 632   K.elegans        Leesburg   F 7.96   3.47  8.72    NA  December 2013.6
## 633   K.elegans        Leesburg   M 5.85   2.96  8.32    NA  December 2013.6
## 634   K.elegans        Leesburg   M 5.68   3.05  8.05    NA  December 2013.6
## 635   K.elegans        Leesburg   F 7.56   3.33  9.16    NA  December 2013.6
## 636   K.elegans        Leesburg   M 5.91   3.17  8.65    NA  December 2013.6
## 637   K.elegans        Leesburg   M 5.43   3.08  8.00    NA  December 2013.6
## 638   K.elegans        Leesburg   M 5.74   3.03  8.12    NA  December 2013.6
## 639   K.elegans        Leesburg   F 7.78   3.21  9.21    NA  December 2013.6
## 640   K.elegans        Leesburg   M 5.55   2.88  7.67    NA  December 2013.6
## 641   K.elegans        Leesburg   F 8.19   3.64  9.13    NA  December 2013.6
## 642   K.elegans        Leesburg   M 6.04   2.89  8.07    NA  December 2013.6
## 643   K.elegans        Leesburg   M 5.08   2.98  7.52    NA  December 2013.6
## 644   K.elegans        Leesburg   M 4.94   2.79  7.43    NA  December 2013.6
## 645   K.elegans        Leesburg   M 5.53   3.02  7.82    NA  December 2013.6
## 646   K.elegans        Leesburg   F 7.37   2.98  8.66    NA  December 2013.6
## 647   K.elegans        Leesburg   M 5.97   2.85  7.75    NA  December 2013.6
## 648   K.elegans        Leesburg   M 6.31   2.99  7.62    NA  December 2013.6
## 649   K.elegans        Leesburg   M 5.67   2.86  7.73    NA  December 2013.6
## 650   K.elegans        Leesburg   F 8.04   3.52  8.73    NA  December 2013.6
## 651   K.elegans        Leesburg   F 7.31   3.30  7.82    NA  December 2013.6
## 652   K.elegans        Leesburg   F 6.91   3.37  9.80    NA  December 2013.6
## 653   K.elegans        Leesburg   M 5.66   2.95  7.83    NA  December 2013.6
## 654   K.elegans        Leesburg   M 5.77   3.11  7.67    NA  December 2013.6
## 655   K.elegans        Leesburg   M 5.74   3.23  7.99    NA  December 2013.6
## 656   K.elegans        Leesburg   M 5.68   2.97  7.95    NA  December 2013.6
## 657   K.elegans        Leesburg   M 5.63   2.82  8.00    NA  December 2013.6
## 658   K.elegans        Leesburg   M 5.60   3.09  8.07    NA  December 2013.6
## 659   K.elegans        Leesburg   M 5.74   2.81  7.42    NA  December 2013.6
## 660   K.elegans        Leesburg   M 5.61   2.65  7.53    NA  December 2013.6
## 661   K.elegans        Leesburg   F 7.77   3.13  8.82    NA  December 2013.6
## 662   K.elegans        Leesburg   M 6.36   3.10  7.44    NA  December 2013.6
## 663   K.elegans        Leesburg   F 7.45   3.34  8.61    NA  December 2013.6
## 664   K.elegans        Leesburg   F 7.63   3.58  9.46    NA  December 2013.6
## 665   K.elegans        Leesburg   M 5.33   2.34  4.59    NA  December 2013.6
## 666   K.elegans        Leesburg   M 6.21   2.83  7.22    NA  December 2013.6
## 667   K.elegans        Leesburg   F 7.33   3.75  9.43    NA  December 2013.6
## 668   K.elegans        Leesburg   M 5.68   3.13  8.52    NA  December 2013.6
## 669   K.elegans        Leesburg   M 5.72   2.85  7.53    NA  December 2013.6
## 670  C.corindum  Plantation_Key   M 6.40   3.23  8.29    NA  December 2013.6
## 671  C.corindum  Plantation_Key   F 7.13   3.24  8.68    NA  December 2013.6
## 672  C.corindum  Plantation_Key   F 7.23   3.09  8.38    NA  December 2013.6
## 673  C.corindum  Plantation_Key   M 5.50   2.86  7.84    NA  December 2013.6
## 674  C.corindum  Plantation_Key   M 6.22   2.94  8.46    NA  December 2013.6
## 675  C.corindum  Plantation_Key   F 8.87   3.87  9.81    NA  December 2013.6
## 676  C.corindum  Plantation_Key   M 6.00   3.03  8.16    NA  December 2013.6
## 677  C.corindum  Plantation_Key   F 7.77   3.45  9.76    NA  December 2013.6
## 678  C.corindum  Plantation_Key   F 8.28   3.51  9.19    NA  December 2013.6
## 679  C.corindum  Plantation_Key   M 5.74   2.70  5.45    NA  December 2013.6
## 680  C.corindum  Plantation_Key   F 6.64   3.05  8.28    NA  December 2013.6
## 681  C.corindum  Plantation_Key   F 8.06   3.41  9.03    NA  December 2013.6
## 682  C.corindum  Plantation_Key   F 7.52   3.36  8.83    NA  December 2013.6
## 683  C.corindum  Plantation_Key   M 6.03   2.81  8.39    NA  December 2013.6
## 684  C.corindum  Plantation_Key   M 5.94   2.84  8.11    NA  December 2013.6
## 685  C.corindum  Plantation_Key   M 5.80   2.93  7.92    NA  December 2013.6
## 686  C.corindum  Plantation_Key   F 7.65   3.46  9.21    NA  December 2013.6
## 687  C.corindum  Plantation_Key   F 7.31   3.57  9.54    NA  December 2013.6
## 688  C.corindum  Plantation_Key   F 9.35   3.82 10.58    NA  December 2013.6
## 689  C.corindum  Plantation_Key   F 9.29   3.74  9.85    NA  December 2013.6
## 690  C.corindum  Plantation_Key   F 8.28   4.03 11.06    NA  December 2013.6
## 691  C.corindum  Plantation_Key   M 5.42   2.73  7.61    NA  December 2013.6
## 692  C.corindum  Plantation_Key   F 6.68   3.20  8.49    NA  December 2013.6
## 693  C.corindum  Plantation_Key   M 6.09   2.94  8.56    NA  December 2013.6
## 694  C.corindum  Plantation_Key   F 6.76   3.22  8.79    NA  December 2013.6
## 695  C.corindum  Plantation_Key   M 6.12   3.12  8.26    NA  December 2013.6
## 696  C.corindum  Plantation_Key   M 5.34   2.57  4.32    NA  December 2013.6
## 697  C.corindum  Plantation_Key   F 7.97   3.58  9.88    NA  December 2013.6
## 698  C.corindum  Plantation_Key   M 5.74   2.76  8.73    NA  December 2013.6
## 699  C.corindum  Plantation_Key   M 5.98   3.02  8.31    NA  December 2013.6
## 700  C.corindum  Plantation_Key   F 7.29   3.25  8.61    NA  December 2013.6
## 701  C.corindum  Plantation_Key   M 5.67   2.88  5.71    NA  December 2013.6
## 702  C.corindum  Plantation_Key   M 5.96   2.90  8.57    NA  December 2013.6
## 703  C.corindum  Plantation_Key   M 5.39   2.37  4.41    NA  December 2013.6
## 704  C.corindum  Plantation_Key   F 7.45   3.41 10.25    NA  December 2013.6
## 705   K.elegans     Gainesville   F 6.30   3.40  8.82    NA     April 2014.0
## 706   K.elegans     Gainesville   M 5.15   2.78  7.41    NA     April 2014.0
## 707   K.elegans     Gainesville   M 5.38   3.04  8.15    NA     April 2014.0
## 708   K.elegans     Gainesville   M 5.01   3.05  8.09    NA     April 2014.0
## 709   K.elegans     Gainesville   F 6.34   3.24  9.06    NA     April 2014.0
## 710   K.elegans     Gainesville   F 6.68   3.66  9.54    NA     April 2014.0
## 711   K.elegans     Gainesville   F 6.25   3.47  9.65    NA     April 2014.0
## 712   K.elegans     Gainesville   F 6.05   3.62  9.41    NA     April 2014.0
## 713   K.elegans     Gainesville   M 5.66   2.86  8.42    NA     April 2014.0
## 714   K.elegans     Gainesville   F 5.99   3.25  9.21    NA     April 2014.0
## 715   K.elegans     Gainesville   M 5.47   2.88  7.86    NA     April 2014.0
## 716   K.elegans     Gainesville   F 7.42   3.30  9.09    NA     April 2014.0
## 717   K.elegans     Gainesville   F 6.20   3.10  8.26    NA     April 2014.0
## 718   K.elegans     Gainesville   M 5.07   2.99  7.50    NA     April 2014.0
## 719   K.elegans     Gainesville   F 6.69   3.36  9.07    NA     April 2014.0
## 720   K.elegans     Gainesville   F 5.06   2.88  8.07    NA     April 2014.0
## 721   K.elegans     Gainesville   M 5.18   3.03  8.01    NA     April 2014.0
## 722   K.elegans     Gainesville   F 5.69   3.01  7.72    NA     April 2014.0
## 723   K.elegans     Gainesville   F 6.46   3.18  8.39    NA     April 2014.0
## 724   K.elegans     Gainesville   F 7.45   3.53  9.19    NA     April 2014.0
## 725   K.elegans     Gainesville   M 4.64   2.72  7.27    NA     April 2014.0
## 726   K.elegans     Gainesville   M 5.26   2.53  4.63    NA     April 2014.0
## 727   K.elegans     Gainesville   F 6.37   3.35  8.75    NA     April 2014.0
## 728   K.elegans     Gainesville   F 6.26   3.43  8.65    NA     April 2014.0
## 729   K.elegans     Gainesville   M 5.36   2.94  8.22    NA     April 2014.0
## 730   K.elegans     Gainesville   M 5.82   3.14  8.50    NA     April 2014.0
## 731   K.elegans     Gainesville   F 6.60   3.54  9.43    NA     April 2014.0
## 732   K.elegans     Gainesville   F 6.13   3.31  5.98    NA     April 2014.0
## 733   K.elegans     Gainesville   F 6.62   3.42  8.79    NA     April 2014.0
## 734   K.elegans     Gainesville   M 5.73   2.87  8.46    NA     April 2014.0
## 735   K.elegans     Gainesville   F 6.35   3.47  9.15    NA     April 2014.0
## 736   K.elegans     Gainesville   F 6.44   3.34  9.24    NA     April 2014.0
## 737   K.elegans     Gainesville   F 6.88   3.25  9.10    NA     April 2014.0
## 738   K.elegans     Gainesville   M 5.31   2.85  7.68    NA     April 2014.0
## 739   K.elegans     Gainesville   F 6.13   3.10  8.35    NA     April 2014.0
## 740   K.elegans     Gainesville   F 7.04   3.24  8.98    NA     April 2014.0
## 741   K.elegans     Gainesville   F 6.56   2.97  8.06    NA     April 2014.0
## 742   K.elegans     Gainesville   M 5.03   2.96  7.99    NA     April 2014.0
## 743   K.elegans     Gainesville   F 6.33   3.38  8.92    NA     April 2014.0
## 744   K.elegans     Gainesville   M 5.34   2.85  8.18    NA     April 2014.0
## 745   K.elegans     Gainesville   M 5.40   2.89  7.46    NA     April 2014.0
## 746   K.elegans     Gainesville   F 6.66   3.36  9.07    NA     April 2014.0
## 747   K.elegans     Gainesville   M 5.60   3.04  8.27    NA     April 2014.0
## 748   K.elegans     Gainesville   F 6.78   3.09  8.51    NA     April 2014.0
## 749   K.elegans     Gainesville   M 5.25   2.90  7.63    NA     April 2014.0
## 750   K.elegans     Gainesville   F 6.40   3.41  8.83    NA     April 2014.0
## 751   K.elegans     Gainesville   M 5.70   2.99  7.76    NA     April 2014.0
## 752   K.elegans     Gainesville   M 5.31   2.59  7.24    NA     April 2014.0
## 753  C.corindum       Homestead   M 5.25   2.93  8.23    NA     April 2014.0
## 754  C.corindum       Homestead   M 5.74   3.33  8.44    NA     April 2014.0
## 755  C.corindum       Homestead   M 5.63   3.22  8.65    NA     April 2014.0
## 756  C.corindum       Homestead   F 7.43   3.86  9.77    NA     April 2014.0
## 757  C.corindum       Homestead   F 6.64   3.14  9.18    NA     April 2014.0
## 758  C.corindum       Homestead   F 6.63   3.34  5.77    NA     April 2014.0
## 759  C.corindum       Homestead   F 6.73   3.78  6.63    NA     April 2014.0
## 760  C.corindum       Homestead   M 5.42   2.98  4.80    NA     April 2014.0
## 761  C.corindum       Homestead   F 6.95   3.46  7.07    NA     April 2014.0
## 762  C.corindum       Homestead   M 5.53   2.77  4.58    NA     April 2014.0
## 763  C.corindum       Homestead   M 4.89   2.74  4.18    NA     April 2014.0
## 764  C.corindum       Homestead   F 6.84   3.48  6.73    NA     April 2014.0
## 765  C.corindum       Homestead   M 5.35   2.99  7.94    NA     April 2014.0
## 766  C.corindum       Homestead   F 6.76   3.40  8.94    NA     April 2014.0
## 767  C.corindum       Homestead   M 5.84   2.91  8.13    NA     April 2014.0
## 768  C.corindum       Homestead   M 5.67   3.23  8.31    NA     April 2014.0
## 769  C.corindum       Homestead   M 5.01   2.86  4.41    NA     April 2014.0
## 770  C.corindum       Key_Largo   F 7.67   3.61  5.86    NA     April 2014.0
## 771  C.corindum       Key_Largo   F 6.29   2.69  4.30    NA     April 2014.0
## 772  C.corindum       Key_Largo   F 6.45   2.85  5.05    NA     April 2014.0
## 773  C.corindum       Key_Largo   F 8.98   3.71  9.28    NA     April 2014.0
## 774  C.corindum       Key_Largo   F 7.81   3.48  5.45    NA     April 2014.0
## 775  C.corindum       Key_Largo   F 6.83   2.99  5.04    NA     April 2014.0
## 776  C.corindum       Key_Largo   F 7.95   3.37  8.27    NA     April 2014.0
## 777  C.corindum       Key_Largo   F 6.92   3.02  5.70    NA     April 2014.0
## 778  C.corindum       Key_Largo   F 7.35   3.71  9.28    NA     April 2014.0
## 779  C.corindum       Key_Largo   F 6.16   2.96  4.84    NA     April 2014.0
## 780  C.corindum       Key_Largo   F 6.14   2.96  4.23    NA     April 2014.0
## 781  C.corindum       Key_Largo   F 8.75   4.11 10.04    NA     April 2014.0
## 782  C.corindum       Key_Largo   F 6.36   3.20  4.88    NA     April 2014.0
## 783  C.corindum       Key_Largo   F 8.63   3.66  9.07    NA     April 2014.0
## 784  C.corindum       Key_Largo   F 7.68   3.46  8.56    NA     April 2014.0
## 785  C.corindum       Key_Largo   F 6.80   3.15  4.86    NA     April 2014.0
## 786  C.corindum       Key_Largo   F 5.75   2.83  4.24    NA     April 2014.0
## 787  C.corindum       Key_Largo   F 5.54   2.66  3.78    NA     April 2014.0
## 788  C.corindum       Key_Largo   F 7.88   3.40  8.68    NA     April 2014.0
## 789  C.corindum       Key_Largo   F 8.68   3.88 10.08    NA     April 2014.0
## 790  C.corindum       Key_Largo   F 6.30   2.96  5.06    NA     April 2014.0
## 791  C.corindum       Key_Largo   F 7.91   3.64  9.08    NA     April 2014.0
## 792  C.corindum       Key_Largo   F 7.93   3.42  8.97    NA     April 2014.0
## 793  C.corindum       Key_Largo   F 6.72   3.17  4.95    NA     April 2014.0
## 794  C.corindum       Key_Largo   F 7.28   3.37  7.03    NA     April 2014.0
## 795  C.corindum       Key_Largo   F 5.66   2.69  4.09    NA     April 2014.0
## 796  C.corindum       Key_Largo   F 8.33   3.86  9.24    NA     April 2014.0
## 797  C.corindum       Key_Largo   F 6.18   3.19  4.72    NA     April 2014.0
## 798  C.corindum       Key_Largo   F 7.50   3.42  8.07    NA     April 2014.0
## 799  C.corindum       Key_Largo   F 6.96   3.09  5.50    NA     April 2014.0
## 800  C.corindum       Key_Largo   F 6.26   2.87  4.95    NA     April 2014.0
## 801  C.corindum       Key_Largo   M 6.24   3.16  8.43 11.53     April 2014.0
## 802  C.corindum       Key_Largo   F 5.89   2.73  4.28    NA     April 2014.0
## 803  C.corindum       Key_Largo   M 6.33   2.94  7.88 10.42     April 2014.0
## 804  C.corindum       Key_Largo   F 9.10   3.89 10.23 13.93     April 2014.0
## 805  C.corindum       Key_Largo   F 8.80   3.67 10.09 14.11     April 2014.0
## 806  C.corindum       Key_Largo   F 6.93   2.80  4.80    NA     April 2014.0
## 807  C.corindum       Key_Largo   F 6.61   2.83  4.72    NA     April 2014.0
## 808  C.corindum       Key_Largo   M 5.89   2.85  7.94 10.64     April 2014.0
## 809  C.corindum       Key_Largo   M 5.43   2.76  7.23  9.99     April 2014.0
## 810   K.elegans      Lake_Wales   M 5.10   2.42  4.46    NA     April 2014.0
## 811   K.elegans      Lake_Wales   F 7.69   3.35  9.32 12.31     April 2014.0
## 812   K.elegans      Lake_Wales   M 5.48   2.89  7.73 10.89     April 2014.0
## 813   K.elegans      Lake_Wales   M 5.67   2.90  8.19 10.88     April 2014.0
## 814   K.elegans      Lake_Wales   F 7.49   3.23  8.70 12.01     April 2014.0
## 815   K.elegans      Lake_Wales   F 7.23   3.33  9.08 12.21     April 2014.0
## 816   K.elegans      Lake_Wales   M 5.64   3.10  8.21 11.37     April 2014.0
## 817   K.elegans      Lake_Wales   F 6.42   3.67  9.86 13.18     April 2014.0
## 818   K.elegans      Lake_Wales   M 5.60   3.26  8.33 11.17     April 2014.0
## 819   K.elegans      Lake_Wales   M 5.63   3.00  8.12 10.91     April 2014.0
## 820   K.elegans      Lake_Wales   F 6.95   3.07  8.72 11.88     April 2014.0
## 821   K.elegans      Lake_Wales   M 5.52   3.23  8.52 11.29     April 2014.0
## 822   K.elegans      Lake_Wales   M 5.19   3.12  7.88 10.94     April 2014.0
## 823   K.elegans      Lake_Wales   F 7.24   3.27  8.93 12.21     April 2014.0
## 824   K.elegans      Lake_Wales   F 6.57   2.93  8.39 11.45     April 2014.0
## 825   K.elegans      Lake_Wales   M 5.33   2.73  7.72 10.52     April 2014.0
## 826   K.elegans      Lake_Wales   F 6.78   3.29  8.92 11.99     April 2014.0
## 827   K.elegans      Lake_Wales   F 6.39   2.88  5.02    NA     April 2014.0
## 828   K.elegans      Lake_Wales   M 5.56   2.91  7.63 10.40     April 2014.0
## 829   K.elegans      Lake_Wales   F 6.38   3.26  8.47 11.94     April 2014.0
## 830   K.elegans      Lake_Wales   M 5.28   3.03  8.34 11.00     April 2014.0
## 831   K.elegans      Lake_Wales   F 7.65   3.52  9.26 12.82     April 2014.0
## 832   K.elegans      Lake_Wales   F 6.27   3.00  5.52    NA     April 2014.0
## 833   K.elegans      Lake_Wales   F 6.62   3.29  8.77 11.71     April 2014.0
## 834   K.elegans      Lake_Wales   M 5.51   3.04  8.92 11.85     April 2014.0
## 835   K.elegans      Lake_Wales   F 6.87   3.55  8.72 13.09     April 2014.0
## 836   K.elegans      Lake_Wales   F 7.66   3.67  9.99 13.62     April 2014.0
## 837   K.elegans      Lake_Wales   F 6.67   2.94  7.42 10.57     April 2014.0
## 838   K.elegans      Lake_Wales   M 5.78   3.29  9.04 11.88     April 2014.0
## 839   K.elegans      Lake_Wales   F 6.24   2.99  4.73    NA     April 2014.0
## 840   K.elegans      Lake_Wales   F 6.59   2.90  7.91 10.83     April 2014.0
## 841   K.elegans      Lake_Wales   F 6.75   2.94  8.15 11.25     April 2014.0
## 842   K.elegans      Lake_Wales   M 5.49   3.04  8.38 11.59     April 2014.0
## 843   K.elegans      Lake_Wales   F 6.91   3.09  8.56 11.72     April 2014.0
## 844   K.elegans      Lake_Wales   M 5.60   3.15  8.83 12.01     April 2014.0
## 845   K.elegans      Lake_Wales   F 5.56   2.94  7.27 10.51     April 2014.0
## 846   K.elegans      Lake_Wales   F 6.87   3.08  7.48 10.62     April 2014.0
## 847   K.elegans      Lake_Wales   M 5.47   2.99  7.77 10.85     April 2014.0
## 848   K.elegans      Lake_Wales   F 6.41   3.00  5.25    NA     April 2014.0
## 849   K.elegans      Lake_Wales   F 7.07   3.27  8.92 12.21     April 2014.0
## 850   K.elegans      Lake_Wales   M 5.48   2.88  8.48 11.29     April 2014.0
## 851   K.elegans      Lake_Wales   F 5.99   3.01  8.21 11.50     April 2014.0
## 852   K.elegans      Lake_Wales   F 6.62   3.15  8.58 11.77     April 2014.0
## 853   K.elegans      Lake_Wales   F 6.50   3.20  8.42 11.68     April 2014.0
## 854   K.elegans        Leesburg   F 7.09   3.47  9.74    NA     April 2014.0
## 855   K.elegans        Leesburg   M 5.56   2.86  8.21    NA     April 2014.0
## 856   K.elegans        Leesburg   M 5.38   3.10  8.21    NA     April 2014.0
## 857   K.elegans        Leesburg   F 7.60   3.27  8.92    NA     April 2014.0
## 858   K.elegans        Leesburg   M 5.58   2.89  8.05    NA     April 2014.0
## 859   K.elegans        Leesburg   M 5.29   3.05  8.06    NA     April 2014.0
## 860   K.elegans        Leesburg   F 6.92   3.43  9.35    NA     April 2014.0
## 861   K.elegans        Leesburg   F 7.17   3.39  9.19    NA     April 2014.0
## 862   K.elegans        Leesburg   M 5.34   2.89  8.42    NA     April 2014.0
## 863   K.elegans        Leesburg   M 5.49   3.00  8.49    NA     April 2014.0
## 864   K.elegans        Leesburg   F 6.59   3.59  9.48    NA     April 2014.0
## 865   K.elegans        Leesburg   F 6.95   3.33  9.13    NA     April 2014.0
## 866   K.elegans        Leesburg   F 6.86   3.12  8.01    NA     April 2014.0
## 867   K.elegans        Leesburg   F 6.27   3.12  9.10    NA     April 2014.0
## 868  C.corindum  Plantation_Key   F 8.25   3.36  9.37 12.76     April 2014.0
## 869  C.corindum  Plantation_Key   M 5.52   2.56  4.82    NA     April 2014.0
## 870  C.corindum  Plantation_Key   M 5.56   2.88  7.86 10.70     April 2014.0
## 871  C.corindum  Plantation_Key   F 6.55   3.03  5.90    NA     April 2014.0
## 872  C.corindum  Plantation_Key   M 5.44   2.36  4.83    NA     April 2014.0
## 873  C.corindum  Plantation_Key   M 5.23   2.50  4.69    NA     April 2014.0
## 874  C.corindum  Plantation_Key   F 7.76   3.23  8.71 12.22     April 2014.0
## 875  C.corindum  Plantation_Key   M 5.67   3.09  8.06 10.94     April 2014.0
## 876  C.corindum  Plantation_Key   F 6.37   2.83  5.21    NA     April 2014.0
## 877  C.corindum  Plantation_Key   F 6.42   3.01  6.37    NA     April 2014.0
## 878  C.corindum  Plantation_Key   F 8.65   3.00  8.48 11.74     April 2014.0
## 879  C.corindum  Plantation_Key   F 6.15   2.80  6.11    NA     April 2014.0
## 880  C.corindum  Plantation_Key   F 6.98   3.34  8.77 11.98     April 2014.0
## 881  C.corindum  Plantation_Key   F 6.30   2.89  8.07 11.27     April 2014.0
## 882  C.corindum  Plantation_Key   F 6.02   2.61  4.31    NA     April 2014.0
## 883  C.corindum  Plantation_Key   M 6.09   2.99  8.11    NA     April 2014.0
## 884  C.corindum  Plantation_Key   F 8.41   3.56  9.33    NA     April 2014.0
## 885  C.corindum  Plantation_Key   M 5.18   2.33  3.91    NA     April 2014.0
## 886  C.corindum  Plantation_Key   M 5.86   2.93  8.41    NA     April 2014.0
## 887  C.corindum  Plantation_Key   M 5.74   3.08  8.52    NA     April 2014.0
## 888  C.corindum  Plantation_Key   M 5.72   2.67  5.45    NA     April 2014.0
## 889  C.corindum  Plantation_Key   F 7.29   3.28  8.26    NA     April 2014.0
## 890  C.corindum  Plantation_Key   F 7.56   3.13  8.37    NA     April 2014.0
## 891  C.corindum  Plantation_Key   M 6.50   3.23  8.05    NA     April 2014.0
## 892  C.corindum  Plantation_Key   M 6.02   2.93  8.14    NA     April 2014.0
## 893  C.corindum  Plantation_Key   F 6.52   2.99  4.74    NA     April 2014.0
## 894  C.corindum  Plantation_Key   M 5.61   2.77  7.25    NA     April 2014.0
## 895  C.corindum  Plantation_Key   F 6.16   2.66  4.89    NA     April 2014.0
## 896  C.corindum  Plantation_Key   M 5.71   2.91  7.96    NA     April 2014.0
## 897  C.corindum  Plantation_Key   M 6.21   3.13  8.09    NA     April 2014.0
## 898  C.corindum  Plantation_Key   M 5.57   2.70  5.87    NA     April 2014.0
## 899  C.corindum  Plantation_Key   M 5.77   2.91  5.15    NA     April 2014.0
## 900  C.corindum  Plantation_Key   M 5.52   2.47  4.15    NA     April 2014.0
## 901  C.corindum  Plantation_Key   F 6.38   2.82  5.36    NA     April 2014.0
## 902  C.corindum  Plantation_Key   F 6.48   3.04  4.89    NA     April 2014.0
## 903  C.corindum  Plantation_Key   M 6.22   3.20  8.42    NA     April 2014.0
## 904  C.corindum  Plantation_Key   F 8.61   3.34  9.23    NA     April 2014.0
## 905  C.corindum  Plantation_Key   M 5.53   2.68  4.67    NA     April 2014.0
## 906  C.corindum  Plantation_Key   M 5.95   2.77  7.40    NA     April 2014.0
## 907  C.corindum  Plantation_Key   F 8.84   3.54  9.38    NA     April 2014.0
## 908  C.corindum  Plantation_Key   M 6.71   3.33  8.67    NA     April 2014.0
## 909  C.corindum  Plantation_Key   F 5.33   2.42  3.87    NA     April 2014.0
## 910  C.corindum  Plantation_Key   M 5.66   3.15  8.44    NA     April 2014.0
## 911  C.corindum  Plantation_Key   M 5.30   2.73  6.66    NA     April 2014.0
## 912  C.corindum       Key_Largo   F 5.79   2.82  4.38    NA     April 2015.0
## 913  C.corindum       Key_Largo   M 5.55   2.58  4.63    NA     April 2015.0
## 914  C.corindum       Key_Largo   M 5.24   2.59  4.36    NA     April 2015.0
## 915  C.corindum       Key_Largo   F 8.72   3.77  9.74 13.58     April 2015.0
## 916  C.corindum       Key_Largo   M 5.28   2.65  4.94    NA     April 2015.0
## 917  C.corindum       Key_Largo   F 6.81   2.89  4.68    NA     April 2015.0
## 918  C.corindum       Key_Largo   M 6.49   3.10  8.72 12.13     April 2015.0
## 919  C.corindum       Key_Largo   M 5.72   2.68  5.71    NA     April 2015.0
## 920  C.corindum       Key_Largo   M 5.49   2.29  3.89    NA     April 2015.0
## 921  C.corindum       Key_Largo   F 6.45   3.19  5.40    NA     April 2015.0
## 922  C.corindum       Key_Largo   F 6.34   2.85  5.02    NA     April 2015.0
## 923  C.corindum       Key_Largo   F 7.12   3.37  5.77    NA     April 2015.0
## 924  C.corindum       Key_Largo   F 7.10   3.21  5.70    NA     April 2015.0
## 925  C.corindum       Key_Largo   F 6.35   3.08  5.10    NA     April 2015.0
## 926  C.corindum       Key_Largo   F 7.51   3.09  8.36 11.87     April 2015.0
## 927  C.corindum       Key_Largo   F 6.52   2.95  5.12    NA     April 2015.0
## 928  C.corindum       Key_Largo   M 5.11   2.51  4.26    NA     April 2015.0
## 929  C.corindum       Key_Largo   F 5.84   2.87  4.61    NA     April 2015.0
## 930  C.corindum       Key_Largo   M 5.61   2.99  8.00 10.98     April 2015.0
## 931  C.corindum       Key_Largo   F 7.15   3.15  5.80    NA     April 2015.0
## 932  C.corindum       Key_Largo   M 5.62   2.77  4.75    NA     April 2015.0
## 933  C.corindum       Key_Largo   M 6.01   2.89  7.56 10.56     April 2015.0
## 934  C.corindum       Key_Largo   F 6.11   2.85  4.41    NA     April 2015.0
## 935  C.corindum       Key_Largo   M 5.62   2.58  6.48  9.26     April 2015.0
## 936  C.corindum       Key_Largo   F 8.37   3.39  8.73 12.00     April 2015.0
## 937  C.corindum       Key_Largo   M 6.54   2.98  7.88 10.44     April 2015.0
## 938  C.corindum       Key_Largo   M 5.96   2.70  4.62    NA     April 2015.0
## 939  C.corindum       Key_Largo   M 5.25   2.45  4.24    NA     April 2015.0
## 940  C.corindum       Key_Largo   M 5.83   2.68  4.98    NA     April 2015.0
## 941  C.corindum       Key_Largo   M 6.42   3.10  8.05 11.16     April 2015.0
## 942  C.corindum       Key_Largo   F 6.94   3.17  5.32    NA     April 2015.0
## 943  C.corindum       Key_Largo   M 5.72   2.63  4.64    NA     April 2015.0
## 944  C.corindum       Key_Largo   M 5.27   2.61  4.75    NA     April 2015.0
## 945  C.corindum       Key_Largo   F 7.08   2.85  4.94    NA     April 2015.0
## 946  C.corindum       Key_Largo   F 6.81   3.03  4.99    NA     April 2015.0
## 947  C.corindum       Key_Largo   M 5.19   2.46  4.20    NA     April 2015.0
## 948  C.corindum       Key_Largo   F 5.99   2.73  4.94    NA     April 2015.0
## 949  C.corindum       Key_Largo   M 5.04   2.41  4.36    NA     April 2015.0
## 950  C.corindum       Key_Largo   F 5.37   2.41  3.93    NA     April 2015.0
## 951  C.corindum       Key_Largo   F 6.60   3.00  5.40    NA     April 2015.0
## 952  C.corindum       Key_Largo   F 6.26   3.06  8.12 11.84     April 2015.0
## 953  C.corindum       Key_Largo   F 6.18   2.76  5.24 12.11     April 2015.0
## 954  C.corindum       Key_Largo   F 8.38   3.33  8.53    NA     April 2015.0
## 955  C.corindum       Key_Largo   M 5.43   2.34  4.38    NA     April 2015.0
## 956  C.corindum       Key_Largo   F 6.57   3.25  5.21 11.65     April 2015.0
## 957  C.corindum       Key_Largo   M 6.42   3.02  8.22 11.73     April 2015.0
## 958  C.corindum       Key_Largo   F 7.34   3.06  8.00    NA     April 2015.0
## 959  C.corindum       Key_Largo   M 5.57   2.66  4.73    NA     April 2015.0
## 960  C.corindum       Key_Largo   M 5.30   2.52  4.61    NA     April 2015.0
## 961  C.corindum       Key_Largo   F 6.12   2.79  4.93    NA     April 2015.0
## 962  C.corindum       Key_Largo   F 7.04   3.13  5.67    NA     April 2015.0
## 963   K.elegans      Lake_Wales   M 5.69   3.21  8.55 11.70     April 2015.0
## 964   K.elegans      Lake_Wales   M 5.36   3.07  8.30 11.87     April 2015.0
## 965   K.elegans      Lake_Wales   F 7.58   3.72 10.72 13.96     April 2015.0
## 966   K.elegans      Lake_Wales   M 5.72   3.09  8.44 11.72     April 2015.0
## 967   K.elegans      Lake_Wales   F 7.98   3.85  9.90 13.90     April 2015.0
## 968   K.elegans      Lake_Wales   M 5.41   3.27  8.33 11.73     April 2015.0
## 969   K.elegans      Lake_Wales   M 5.71   3.16  8.45 11.75     April 2015.0
## 970   K.elegans      Lake_Wales   F 7.41   3.97 10.22 14.70     April 2015.0
## 971   K.elegans      Lake_Wales   M 5.68   3.07  8.26 11.68     April 2015.0
## 972   K.elegans      Lake_Wales   F 6.58   3.44  9.07 12.32     April 2015.0
## 973   K.elegans      Lake_Wales   M 5.16   3.29  8.39 11.17     April 2015.0
## 974   K.elegans      Lake_Wales   M 5.78   2.91  8.54 11.50     April 2015.0
## 975   K.elegans      Lake_Wales   M 5.39   3.30  8.71 11.77     April 2015.0
## 976   K.elegans      Lake_Wales   F 7.43   3.99  9.71 13.85     April 2015.0
## 977   K.elegans      Lake_Wales   M 5.47   3.00  7.91 11.06     April 2015.0
## 978   K.elegans      Lake_Wales   F 8.04   3.74  9.98 13.34     April 2015.0
## 979   K.elegans      Lake_Wales   F 8.07   3.58  9.80 13.50     April 2015.0
## 980   K.elegans      Lake_Wales   F 7.00   3.58  9.63 12.80     April 2015.0
## 981   K.elegans      Lake_Wales   F 6.12   3.38  8.34 12.07     April 2015.0
## 982   K.elegans      Lake_Wales   M 5.18   3.01  8.07 11.43     April 2015.0
## 983   K.elegans      Lake_Wales   F 6.95   3.57  9.18 12.41     April 2015.0
## 984   K.elegans      Lake_Wales   M 5.08   2.86  7.36 10.51     April 2015.0
## 985   K.elegans      Lake_Wales   M 5.34   3.08  8.07 11.58     April 2015.0
## 986   K.elegans      Lake_Wales   F 6.39   3.39  9.17 12.89     April 2015.0
## 987   K.elegans      Lake_Wales   F 6.96   3.60  9.92 12.90     April 2015.0
## 988   K.elegans      Lake_Wales   F 7.27   3.52 10.37 14.36     April 2015.0
## 989   K.elegans      Lake_Wales   M 5.73   3.28  8.74 11.77     April 2015.0
## 990   K.elegans      Lake_Wales   F 6.44   3.65  9.55 12.93     April 2015.0
## 991   K.elegans      Lake_Wales   M 5.51   3.15  8.52 11.53     April 2015.0
## 992   K.elegans      Lake_Wales   M 5.52   3.13  8.55 12.09     April 2015.0
## 993   K.elegans      Lake_Wales   M 5.74   3.17  8.66 12.32     April 2015.0
## 994   K.elegans      Lake_Wales   M 5.73   3.13  8.35 11.64     April 2015.0
## 995   K.elegans      Lake_Wales   F 6.61   3.79  9.87 13.86     April 2015.0
## 996   K.elegans      Lake_Wales   F 7.83   3.76 10.02 13.39     April 2015.0
## 997   K.elegans      Lake_Wales   F 6.76   3.65  9.83 13.23     April 2015.0
## 998   K.elegans      Lake_Wales   F 6.51   3.55  9.43 12.79     April 2015.0
## 999   K.elegans      Lake_Wales   F 7.41   3.52  9.35 12.72     April 2015.0
## 1000  K.elegans      Lake_Wales   M 5.79   3.27  8.72 11.89     April 2015.0
## 1001  K.elegans      Lake_Wales   F 6.89   3.78  9.65 13.05     April 2015.0
## 1002  K.elegans      Lake_Wales   M 5.52   3.19  8.49 11.61     April 2015.0
## 1003  K.elegans      Lake_Wales   M 5.69   3.20  8.51 12.22     April 2015.0
## 1004  K.elegans      Lake_Wales   F 6.97   3.80 10.40 14.15     April 2015.0
## 1005  K.elegans      Lake_Wales   F 6.15   3.54  9.34 12.69       May 2015.0
## 1006  K.elegans      Lake_Wales   M 5.36   3.04  8.26 11.22       May 2015.0
## 1007  K.elegans      Lake_Wales   F 6.51   3.64  9.63 12.93       May 2015.0
## 1008  K.elegans      Lake_Wales   F 6.33   3.36  9.37 12.57       May 2015.0
## 1009  K.elegans      Lake_Wales   M 5.20   3.23  8.21 11.34       May 2015.0
## 1010  K.elegans      Lake_Wales   F 7.71   3.75  9.77 13.89       May 2015.0
## 1011  K.elegans      Lake_Wales   M 5.85   3.16  8.68 12.14       May 2015.0
## 1012  K.elegans      Lake_Wales   F 6.97   3.78 10.06 13.64       May 2015.0
## 1013  K.elegans      Lake_Wales   M 5.86   3.26  8.90 12.17       May 2015.0
## 1014  K.elegans      Lake_Wales   M 5.70   3.08  8.48 11.41       May 2015.0
## 1015  K.elegans      Lake_Wales   F 7.30   3.63 10.48 14.11       May 2015.0
## 1016  K.elegans        Leesburg   F 6.51   3.62  9.11 13.07     April 2015.0
## 1017  K.elegans        Leesburg   M 5.60   3.15  8.81 12.21     April 2015.0
## 1018  K.elegans        Leesburg   M 5.61   3.27  8.95 12.32     April 2015.0
## 1019  K.elegans        Leesburg   F 6.70   3.59  9.92 13.62     April 2015.0
## 1020  K.elegans        Leesburg   F 6.55   3.31 10.00 13.92     April 2015.0
## 1021  K.elegans        Leesburg   F 6.24   3.03  7.78 11.69     April 2015.0
## 1022  K.elegans        Leesburg   M 5.61   3.24  8.84 12.04     April 2015.0
## 1023  K.elegans        Leesburg   M 5.43   3.10  8.81 11.92     April 2015.0
## 1024  K.elegans        Leesburg   M 5.24   2.99  8.75 11.91     April 2015.0
## 1025  K.elegans        Leesburg   F 7.62   3.90  9.97 14.01     April 2015.0
## 1026  K.elegans        Leesburg   F 6.30   3.25  5.92    NA     April 2015.0
## 1027  K.elegans        Leesburg   M 5.08   2.91  8.48 11.56     April 2015.0
## 1028  K.elegans        Leesburg   M 5.57   2.98  8.34 11.42     April 2015.0
## 1029  K.elegans        Leesburg   M 5.36   3.06  8.61 11.84     April 2015.0
## 1030  K.elegans        Leesburg   F 6.61   3.52  9.48 12.67     April 2015.0
## 1031  K.elegans        Leesburg   M 5.58   3.18  9.14 12.34     April 2015.0
## 1032  K.elegans        Leesburg   M 5.81   2.85  8.06 11.18     April 2015.0
## 1033  K.elegans        Leesburg   F 6.37   3.19  8.79 12.44     April 2015.0
## 1034  K.elegans        Leesburg   M 5.56   3.01  8.32 11.28     April 2015.0
## 1035  K.elegans        Leesburg   F 6.00   3.64  9.33 13.11     April 2015.0
## 1036  K.elegans        Leesburg   F 6.38   3.54  9.14 12.76     April 2015.0
## 1037  K.elegans        Leesburg   F 7.39   3.32  9.34 13.13     April 2015.0
## 1038  K.elegans        Leesburg   M 5.84   3.25  9.04 11.79     April 2015.0
## 1039  K.elegans        Leesburg   F 6.18   3.47  9.20 12.49     April 2015.0
## 1040  K.elegans        Leesburg   M 5.09   2.86  7.79 10.79     April 2015.0
## 1041  K.elegans        Leesburg   F 6.47   3.60  7.30    NA     April 2015.0
## 1042  K.elegans        Leesburg   F 7.10   3.45  9.44 13.45     April 2015.0
## 1043  K.elegans        Leesburg   F 6.49   3.63  9.37 12.63     April 2015.0
## 1044  K.elegans        Leesburg   F 6.57   3.63  8.17 12.03     April 2015.0
## 1045  K.elegans        Leesburg   M 5.31   3.08  8.47 11.77     April 2015.0
## 1046  K.elegans        Leesburg   M 5.53   2.80  7.45 10.40     April 2015.0
## 1047  K.elegans        Leesburg   M 5.67   2.87  8.09 11.34     April 2015.0
## 1048  K.elegans        Leesburg   F 5.76   2.74  4.70    NA     April 2015.0
## 1049  K.elegans        Leesburg   M 5.47   3.09  9.42 11.46     April 2015.0
## 1050  K.elegans        Leesburg   M 5.36   3.05  8.37 11.35     April 2015.0
## 1051  K.elegans        Leesburg   M 5.45   3.06  7.94 10.81     April 2015.0
## 1052 C.corindum  Plantation_Key   F 6.79   3.09  5.22 12.33     April 2015.0
## 1053 C.corindum  Plantation_Key   M 6.12   3.34  8.96    NA     April 2015.0
## 1054 C.corindum  Plantation_Key   F 6.39   3.04  4.87    NA     April 2015.0
## 1055 C.corindum  Plantation_Key   F 6.99   3.36  5.82    NA     April 2015.0
## 1056 C.corindum  Plantation_Key   F 6.48   3.05  7.76 11.35     April 2015.0
## 1057 C.corindum  Plantation_Key   F 7.56   3.69  9.26 13.69     April 2015.0
## 1058 C.corindum  Plantation_Key   F 6.79   3.78 10.13 14.07     April 2015.0
## 1059 C.corindum  Plantation_Key   F 6.21   2.77  4.52    NA     April 2015.0
## 1060 C.corindum  Plantation_Key   F 7.57   3.48  9.05 12.59     April 2015.0
## 1061 C.corindum  Plantation_Key   F 7.61   3.33  8.63 11.71     April 2015.0
## 1062 C.corindum  Plantation_Key   F 6.16   2.89  4.26    NA     April 2015.0
## 1063 C.corindum  Plantation_Key   F 7.87   3.56  9.22 12.86     April 2015.0
## 1064  K.elegans     Gainesville   M 5.50   3.26  8.36 11.36  December 2016.0
## 1065  K.elegans     Gainesville   F 7.43   3.47  9.52 12.91  December 2016.0
## 1066  K.elegans     Gainesville   M 5.75   3.09  9.29 12.33  December 2016.0
## 1067  K.elegans     Gainesville   M 5.60   3.01  8.10 11.15  December 2016.0
## 1068  K.elegans     Gainesville   F 7.71   3.15  8.96 12.43  December 2016.0
## 1069  K.elegans     Gainesville   F 7.84   3.89  9.88 13.32  December 2016.0
## 1070  K.elegans     Gainesville   F 7.93   3.79  9.76 13.09  December 2016.0
## 1071  K.elegans     Gainesville   F 8.02   3.56  9.45 12.86  December 2016.0
## 1072  K.elegans     Gainesville   F 7.54   3.59  9.43 13.10  December 2016.0
## 1073  K.elegans     Gainesville   F 7.62   3.59  9.46 13.32  December 2016.0
## 1074  K.elegans     Gainesville   M 5.54   2.99  7.96 10.99  December 2016.0
## 1075  K.elegans     Gainesville   F 7.64   3.57  9.79 13.28  December 2016.0
## 1076  K.elegans     Gainesville   M 6.06   3.24  8.84 12.09  December 2016.0
## 1077  K.elegans     Gainesville   M   NA   3.18  8.62 11.44  December 2016.0
## 1078  K.elegans     Gainesville   M 5.58   3.26  8.89 11.86  December 2016.0
## 1079  K.elegans     Gainesville   F 7.74   3.55  9.97 13.78  December 2016.0
## 1080  K.elegans     Gainesville   M 5.59   2.84  7.59 10.08  December 2016.0
## 1081  K.elegans     Gainesville   F 8.38   3.66  9.55 12.85  December 2016.0
## 1082  K.elegans     Gainesville   F 7.80   3.66  9.47 13.11  December 2016.0
## 1083  K.elegans     Gainesville   M 5.66   2.93  7.91 10.86  December 2016.0
## 1084  K.elegans     Gainesville   F 8.39   3.82 10.53 14.08  December 2016.0
## 1085  K.elegans     Gainesville   F 8.44   3.55  9.76 12.86  December 2016.0
## 1086  K.elegans     Gainesville   M 5.85   3.28  8.91 12.00  December 2016.0
## 1087  K.elegans     Gainesville   M 5.69   3.34  8.93 11.73  December 2016.0
## 1088  K.elegans     Gainesville   M 5.69   3.11  8.10 11.15  December 2016.0
## 1089  K.elegans     Gainesville   M 5.98   3.39  8.57 11.88  December 2016.0
## 1090  K.elegans     Gainesville   M 5.71   3.17  8.54 11.36  December 2016.0
## 1091  K.elegans     Gainesville   F 7.78   3.53  9.61 13.09  December 2016.0
## 1092  K.elegans     Gainesville   M 5.69   3.25  8.40 11.05  December 2016.0
## 1093  K.elegans     Gainesville   M 5.92   3.26  8.76 12.19  December 2016.0
## 1094  K.elegans     Gainesville   F 7.61   3.76  9.96 13.48  December 2016.0
## 1095  K.elegans     Gainesville   F 7.79   3.41  9.13 12.47  December 2016.0
## 1096  K.elegans     Gainesville   M 5.82   3.14  7.81 10.89  December 2016.0
## 1097  K.elegans     Gainesville   F 7.81   3.52  9.29 12.46  December 2016.0
## 1098  K.elegans     Gainesville   M 5.49   3.03  6.39  9.49  December 2016.0
## 1099  K.elegans     Gainesville   M 6.00   3.40  8.84 12.06  December 2016.0
## 1100  K.elegans     Gainesville   M 5.55   2.86  7.60 10.66  December 2016.0
## 1101  K.elegans     Gainesville   F 8.03   3.73  9.82 13.22  December 2016.0
## 1102  K.elegans     Gainesville   M 5.63   3.13  8.80 12.03  December 2016.0
## 1103  K.elegans     Gainesville   F 7.57   3.50  9.12 12.60  December 2016.0
## 1104  K.elegans     Gainesville   M 5.78   3.09  8.61 11.58  December 2016.0
## 1105  K.elegans     Gainesville   F 7.35   3.31  8.74 12.00  December 2016.0
## 1106  K.elegans     Gainesville   F 7.97   3.30  8.81 11.89  December 2016.0
## 1107  K.elegans     Gainesville   F 6.77   3.05  4.89  8.06  December 2016.0
## 1108  K.elegans     Gainesville   F 8.01   3.82 10.64 13.75  December 2016.0
## 1109  K.elegans     Gainesville   F 7.95   3.51  9.81 13.29  December 2016.0
## 1110  K.elegans     Gainesville   M 5.65   2.57  5.91  8.84  December 2016.0
## 1111  K.elegans     Gainesville   M 6.16   3.07  8.29 12.09  December 2016.0
## 1112  K.elegans     Gainesville   F 7.89   3.60  9.79 13.37  December 2016.0
## 1113  K.elegans     Gainesville   F 7.81   3.42  8.80 12.17  December 2016.0
## 1114  K.elegans     Gainesville   F 7.03   2.96  7.49 10.72  December 2016.0
## 1115  K.elegans     Gainesville   M 5.83   3.01  9.26 12.29  December 2016.0
## 1116  K.elegans     Gainesville   M 6.14   3.14  8.97 11.88  December 2016.0
## 1117  K.elegans     Gainesville   M 5.62   3.00  8.66 11.48  December 2016.0
## 1118  K.elegans     Gainesville   M 5.94   3.45  9.39 11.96  December 2016.0
## 1119  K.elegans     Gainesville   F 7.90   3.51  9.57 13.03  December 2016.0
## 1120  K.elegans     Gainesville   M 5.59   2.88  7.90 10.79  December 2016.0
## 1121  K.elegans       Homestead   M 5.32   3.20  8.96 11.63  December 2016.0
## 1122  K.elegans       Homestead   M 5.16   2.87  4.64    NA  December 2016.0
## 1123  K.elegans       Homestead   M 5.09   2.89  4.92    NA  December 2016.0
## 1124  K.elegans       Homestead   M 5.90   3.28  8.73 11.63  December 2016.0
## 1125  K.elegans       Homestead   M 5.60   3.29  9.05 12.18  December 2016.0
## 1126  K.elegans       Homestead   F 5.91   3.39  5.65    NA  December 2016.0
## 1127  K.elegans       Homestead   F 6.73   3.66 10.21 13.65  December 2016.0
## 1128  K.elegans       Homestead   M 5.42   2.95  8.12 10.88  December 2016.0
## 1129  K.elegans       Homestead   M 5.26   2.85  4.74    NA  December 2016.0
## 1130  K.elegans       Homestead   M 5.18   3.14  8.57 11.31  December 2016.0
## 1131  K.elegans       Homestead   M 5.25   3.16  9.13 11.74  December 2016.0
## 1132  K.elegans       Homestead   M 5.43   3.20  9.02 11.83  December 2016.0
## 1133  K.elegans       Homestead   M 5.45   3.23  8.83 11.76  December 2016.0
## 1134 C.corindum North_Key_Largo   F 8.39   3.65  9.64 13.45  December 2016.0
## 1135 C.corindum North_Key_Largo   F 9.02   3.49  9.08 12.69  December 2016.0
## 1136 C.corindum North_Key_Largo   M 7.09   3.51  9.34 12.27  December 2016.0
## 1137 C.corindum North_Key_Largo   M 5.43   2.76  4.78  7.69  December 2016.0
## 1138 C.corindum North_Key_Largo   M 6.06   2.96  8.25 11.32  December 2016.0
## 1139 C.corindum North_Key_Largo   F 6.88   3.00  5.55  8.81  December 2016.0
## 1140 C.corindum North_Key_Largo   M 5.89   2.96  8.23 11.47  December 2016.0
## 1141 C.corindum North_Key_Largo   F 8.44   3.67  9.36 13.11  December 2016.0
## 1142 C.corindum North_Key_Largo   F 8.02   3.48  9.47 12.89  December 2016.0
## 1143 C.corindum North_Key_Largo   F 8.10   3.24  7.81 11.16  December 2016.0
## 1144 C.corindum North_Key_Largo   F 7.77   3.94 10.13 13.51  December 2016.0
## 1145 C.corindum North_Key_Largo   F 6.96   2.96  5.47  8.81  December 2016.0
## 1146 C.corindum North_Key_Largo   F 6.13   2.74  6.20  9.51  December 2016.0
## 1147 C.corindum North_Key_Largo   M 5.94   2.80  7.88 10.75  December 2016.0
## 1148 C.corindum North_Key_Largo   M 6.60   3.22  8.14 11.48  December 2016.0
## 1149 C.corindum North_Key_Largo   M 6.54   3.34  8.72 11.91  December 2016.0
## 1150 C.corindum North_Key_Largo   M 6.39   3.11  8.44 11.63  December 2016.0
## 1151 C.corindum North_Key_Largo   M 5.87   3.00  7.74 10.71  December 2016.0
## 1152 C.corindum North_Key_Largo   F 7.32   3.56  9.48 12.67  December 2016.0
## 1153 C.corindum North_Key_Largo   M 6.45   3.02  7.67 11.22  December 2016.0
## 1154 C.corindum North_Key_Largo   M 6.21   3.21  8.72 11.74  December 2016.0
## 1155 C.corindum North_Key_Largo   F 6.84   3.12  5.16  8.64  December 2016.0
## 1156 C.corindum North_Key_Largo   M 6.24   3.51  8.32 11.68  December 2016.0
## 1157 C.corindum North_Key_Largo   F 7.23   3.17  5.37  8.72  December 2016.0
## 1158 C.corindum North_Key_Largo   F 8.77   3.47  9.25 12.35  December 2016.0
## 1159 C.corindum North_Key_Largo   M 5.56   2.80  5.64  8.63  December 2016.0
## 1160 C.corindum North_Key_Largo   F 7.70   3.78  9.35 12.94  December 2016.0
## 1161 C.corindum North_Key_Largo   F 6.89   3.68  9.41 12.99  December 2016.0
## 1162 C.corindum North_Key_Largo   M 6.34   3.02  8.09 11.21  December 2016.0
## 1163 C.corindum North_Key_Largo   M 6.36   3.24  8.55 11.83  December 2016.0
## 1164 C.corindum North_Key_Largo   M 6.78   3.41  8.51 11.84  December 2016.0
## 1165 C.corindum North_Key_Largo   M 6.45   3.33  8.36 11.34  December 2016.0
## 1166 C.corindum North_Key_Largo   F 8.79   3.56  9.04 12.25  December 2016.0
## 1167 C.corindum North_Key_Largo   F 6.61   3.60  9.55 13.07  December 2016.0
## 1168 C.corindum North_Key_Largo   F 6.49   2.69  4.59  7.81  December 2016.0
## 1169 C.corindum North_Key_Largo   M 6.46   3.11  8.67 11.52  December 2016.0
## 1170 C.corindum North_Key_Largo   F 7.08   2.89  4.92  7.86  December 2016.0
## 1171 C.corindum North_Key_Largo   M 5.40   2.15  4.80  7.50  December 2016.0
## 1172 C.corindum North_Key_Largo   F 6.85   3.12  5.25  8.55  December 2016.0
## 1173 C.corindum North_Key_Largo   M 6.18   3.27  8.45 11.48  December 2016.0
## 1174 C.corindum North_Key_Largo   F 9.26   3.59  9.31 12.57  December 2016.0
## 1175 C.corindum North_Key_Largo   F 7.59   3.30  7.22 10.41  December 2016.0
## 1176 C.corindum North_Key_Largo   F 7.96   3.35  8.84 12.22  December 2016.0
## 1177 C.corindum North_Key_Largo   F 7.10   3.53  8.77 12.39  December 2016.0
## 1178 C.corindum North_Key_Largo   M 5.56   3.25  8.62 11.38  December 2016.0
## 1179 C.corindum North_Key_Largo   M 5.42   2.84  4.81  7.95  December 2016.0
## 1180 C.corindum North_Key_Largo   M 6.37   3.24  9.04 12.10  December 2016.0
## 1181 C.corindum North_Key_Largo   M 6.05   2.87  6.30  9.29  December 2016.0
## 1182 C.corindum North_Key_Largo   F 7.45   3.32  8.24 11.54  December 2016.0
## 1183 C.corindum North_Key_Largo   M 5.98   2.89  7.77 10.64  December 2016.0
## 1184 C.corindum North_Key_Largo   M 6.25   3.11  8.29 11.44  December 2016.0
## 1185 C.corindum North_Key_Largo   M 5.69   2.80  7.57 10.44  December 2016.0
## 1186 C.corindum North_Key_Largo   M 6.84   3.11  8.11 11.37  December 2016.0
## 1187 C.corindum       Key_Largo   F 8.39   3.69  8.74 12.48  December 2016.0
## 1188 C.corindum       Key_Largo   M 5.92   2.95  8.19 11.18  December 2016.0
## 1189 C.corindum       Key_Largo   M 6.25   3.00  7.84 10.85  December 2016.0
## 1190 C.corindum       Key_Largo   M 6.08   3.02  6.15    NA  December 2016.0
## 1191 C.corindum       Key_Largo   M 6.12   3.17  7.80 10.84  December 2016.0
## 1192 C.corindum       Key_Largo   M 6.82   3.41  8.92 12.31  December 2016.0
## 1193 C.corindum       Key_Largo   F 6.73   3.78  8.17    NA  December 2016.0
## 1194 C.corindum       Key_Largo   F 7.61   3.45  9.18 12.22  December 2016.0
## 1195 C.corindum       Key_Largo   F 7.10   3.70  7.92    NA  December 2016.0
## 1196 C.corindum       Key_Largo   F 8.13   3.30  8.40 11.34  December 2016.0
## 1197 C.corindum       Key_Largo   M 6.81   3.21  8.61 11.55  December 2016.0
## 1198  K.elegans      Lake_Wales   F 7.24   3.30  8.97 12.51  December 2016.0
## 1199  K.elegans      Lake_Wales   F 7.11   3.30  8.52 11.84  December 2016.0
## 1200  K.elegans      Lake_Wales   M 5.59   2.83  7.86 10.91  December 2016.0
## 1201  K.elegans      Lake_Wales   F 7.37   3.22  9.18 12.54  December 2016.0
## 1202  K.elegans      Lake_Wales   M 5.35   2.80  8.07 10.90  December 2016.0
## 1203  K.elegans      Lake_Wales   M 5.64   3.11  8.36 11.22  December 2016.0
## 1204  K.elegans      Lake_Wales   F 7.45   3.45  9.46 12.48  December 2016.0
## 1205  K.elegans      Lake_Wales   F 6.72   3.47  6.50 10.22  December 2016.0
## 1206  K.elegans      Lake_Wales   M 5.58   3.17  8.70 11.49  December 2016.0
## 1207  K.elegans      Lake_Wales   M 5.37   3.06  8.67 11.34  December 2016.0
## 1208  K.elegans      Lake_Wales   F 7.08   3.27  8.67 11.97  December 2016.0
## 1209  K.elegans      Lake_Wales   M 5.36   2.76  7.69 10.28  December 2016.0
## 1210  K.elegans      Lake_Wales   M 5.97   3.01  8.45 11.27  December 2016.0
## 1211  K.elegans      Lake_Wales   M 5.67   2.85  8.04 10.79  December 2016.0
## 1212  K.elegans      Lake_Wales   M 5.68   2.90  7.99 10.83  December 2016.0
## 1213  K.elegans        Leesburg   M 5.91   3.23  8.92 11.90  December 2016.0
## 1214  K.elegans        Leesburg   F 7.76   3.37  9.75 13.01  December 2016.0
## 1215  K.elegans        Leesburg   F 7.25   3.33  8.91 12.45  December 2016.0
## 1216  K.elegans        Leesburg   M 5.28   2.82  8.22 10.79  December 2016.0
## 1217  K.elegans        Leesburg   F 6.42   3.38  9.35 12.13  December 2016.0
## 1218  K.elegans        Leesburg   M 5.69   3.01  8.40 11.07  December 2016.0
## 1219  K.elegans        Leesburg   M 5.47   2.70  8.12 10.89  December 2016.0
## 1220  K.elegans        Leesburg   F 6.87   3.44  9.77 13.39  December 2016.0
## 1221  K.elegans        Leesburg   M 5.54   2.87  8.35 11.27  December 2016.0
## 1222  K.elegans        Leesburg   M 5.43   2.73  8.08 10.65  December 2016.0
## 1223  K.elegans        Leesburg   M 5.61   3.02  8.57 11.34  December 2016.0
## 1224  K.elegans        Leesburg   M 5.32   2.89  8.12 10.62  December 2016.0
## 1225  K.elegans        Leesburg   M 5.84   3.24  9.18 11.99  December 2016.0
## 1226  K.elegans        Leesburg   M 5.62   3.02  9.06 12.18  December 2016.0
## 1227  K.elegans        Leesburg   M 5.82   3.11  9.08 12.40  December 2016.0
## 1228  K.elegans        Leesburg   M 5.19   2.58  8.07 10.78  December 2016.0
## 1229  K.elegans        Leesburg   M 5.69   3.07  8.80 11.87  December 2016.0
## 1230  K.elegans        Leesburg   F 7.25   3.32  9.00 12.03  December 2016.0
## 1231  K.elegans        Leesburg   M 5.36   3.03  8.27 11.44  December 2016.0
## 1232  K.elegans        Leesburg   M 5.58   2.91  8.73 11.47  December 2016.0
## 1233  K.elegans        Leesburg   M 5.83   3.45  8.51 11.70  December 2016.0
## 1234  K.elegans        Leesburg   F 7.66   3.54  9.83 13.52  December 2016.0
## 1235  K.elegans        Leesburg   F 7.81   3.45  9.01 12.58  December 2016.0
## 1236  K.elegans        Leesburg   F 7.62   3.66  9.26 12.79  December 2016.0
## 1237  K.elegans        Leesburg   F 7.63   3.58  9.32 12.70  December 2016.0
## 1238  K.elegans        Leesburg   F 7.37   3.45  9.65 13.04  December 2016.0
## 1239  K.elegans        Leesburg   F 7.47   3.84 10.54 14.37  December 2016.0
## 1240  K.elegans        Leesburg   M 5.64   3.05  8.83 11.81  December 2016.0
## 1241  K.elegans        Leesburg   F 7.67   3.45  9.38 12.64  December 2016.0
## 1242  K.elegans        Leesburg   F 7.54   3.30  9.39 12.72  December 2016.0
## 1243  K.elegans        Leesburg   F 6.91   3.40  9.19 12.07  December 2016.0
## 1244  K.elegans        Leesburg   F 5.87   3.27  5.86  9.44  December 2016.0
## 1245  K.elegans        Leesburg   M 5.78   3.28  8.31 11.40  December 2016.0
## 1246  K.elegans        Leesburg   M 5.94   2.86  8.10 10.60  December 2016.0
## 1247  K.elegans        Leesburg   F 7.38   3.26  9.00 12.16  December 2016.0
## 1248  K.elegans        Leesburg   M 5.71   2.96  8.19 11.03  December 2016.0
## 1249  K.elegans        Leesburg   M 5.56   3.10  7.93 10.61  December 2016.0
## 1250  K.elegans        Leesburg   F 7.57   3.48  9.30 12.87  December 2016.0
## 1251  K.elegans        Leesburg   F 7.84   3.63  9.71 13.17  December 2016.0
## 1252  K.elegans        Leesburg   F 6.96   3.18  9.46 12.48  December 2016.0
## 1253  K.elegans        Leesburg   F 6.59   3.05    NA    NA  December 2016.0
## 1254  K.elegans        Leesburg   M 5.57   3.25  8.13 11.07  December 2016.0
## 1255  K.elegans        Leesburg   M 5.77   3.38  9.54 12.29  December 2016.0
## 1256  K.elegans        Leesburg   F 8.46   3.99 10.60 14.32  December 2016.0
## 1257  K.elegans        Leesburg   M 5.29   2.84  7.65 10.39  December 2016.0
## 1258  K.elegans        Leesburg   M 5.65   3.24  8.16 11.31  December 2016.0
## 1259  K.elegans        Leesburg   F 7.78   3.48  9.32 12.56  December 2016.0
## 1260  K.elegans        Leesburg   F 7.74   3.47  9.79 13.20  December 2016.0
## 1261  K.elegans        Leesburg   F 7.44   3.29  8.65 12.28  December 2016.0
## 1262  K.elegans        Leesburg   F 7.95   3.90  9.89 13.58  December 2016.0
## 1263  K.elegans        Leesburg   F 7.03   3.24  8.41 11.73  December 2016.0
## 1264  K.elegans        Leesburg   M 5.34   3.01  8.24 11.57  December 2016.0
## 1265  K.elegans        Leesburg   F 7.85   3.49  9.56 12.87  December 2016.0
## 1266  K.elegans        Leesburg   M 5.51   3.10  8.46 11.39  December 2016.0
## 1267  K.elegans        Leesburg   M 5.53   2.93  7.87 10.89  December 2016.0
## 1268  K.elegans        Leesburg   F 8.14   3.60  9.86 13.38  December 2016.0
## 1269  K.elegans        Leesburg   F 7.57   3.59  9.45 12.59  December 2016.0
## 1270  K.elegans        Leesburg   M 5.75   2.99  8.31 11.22  December 2016.0
## 1271  K.elegans        Leesburg   F 7.08   3.28  8.82 12.31  December 2016.0
## 1272  K.elegans        Leesburg   M 5.80   3.02  8.09 11.35  December 2016.0
## 1273  K.elegans        Leesburg   M 5.71   3.11  8.65 11.50  December 2016.0
## 1274  K.elegans        Leesburg   M 5.96   3.13  9.04 11.73  December 2016.0
## 1275  K.elegans        Leesburg   M 5.80   3.16  8.35 11.48  December 2016.0
## 1276  K.elegans        Leesburg   M 5.76   3.13  8.55 11.54  December 2016.0
## 1277  K.elegans        Leesburg   M 5.36   3.01  8.16 11.00  December 2016.0
## 1278 C.corindum  Plantation_Key   M 5.74   2.88  5.84  8.81  December 2016.0
## 1279 C.corindum  Plantation_Key   M 6.08   3.07  8.34 11.39  December 2016.0
## 1280 C.corindum  Plantation_Key   M 6.01   2.91  8.53 11.43  December 2016.0
## 1281 C.corindum  Plantation_Key   M 5.52   2.71  4.53  7.49  December 2016.0
## 1282 C.corindum  Plantation_Key   F 7.97   3.46  9.34 12.57  December 2016.0
## 1283 C.corindum  Plantation_Key   M 5.99   3.11  8.52 11.44  December 2016.0
## 1284 C.corindum  Plantation_Key   F 6.38   2.93  5.27  8.78  December 2016.0
## 1285 C.corindum  Plantation_Key   M 5.29   2.81  7.84 10.53  December 2016.0
## 1286 C.corindum  Plantation_Key   F 8.61   3.57  9.31 12.50  December 2016.0
## 1287 C.corindum  Plantation_Key   F 6.55   2.91  5.08  8.44  December 2016.0
## 1288 C.corindum  Plantation_Key   F 7.50   3.12  8.53 11.87  December 2016.0
## 1289 C.corindum  Plantation_Key   F 6.41   3.04  5.56  8.70  December 2016.0
## 1290 C.corindum  Plantation_Key   M 5.67   2.83  4.47  7.95  December 2016.0
## 1291 C.corindum  Plantation_Key   F 6.24   2.86  5.17  8.67  December 2016.0
## 1292 C.corindum  Plantation_Key   F 6.58   3.13  5.72  9.55  December 2016.0
## 1293 C.corindum  Plantation_Key   F 8.05   3.24  8.63 12.11  December 2016.0
## 1294 C.corindum  Plantation_Key   M 5.74   3.03  7.24 10.23  December 2016.0
## 1295 C.corindum  Plantation_Key   F 8.89   3.63  9.78 13.30  December 2016.0
## 1296 C.corindum  Plantation_Key   F 7.93   3.22  9.41 12.58  December 2016.0
## 1297 C.corindum  Plantation_Key   F 7.88   3.61 10.08 13.71  December 2016.0
## 1298 C.corindum  Plantation_Key   F 6.72   3.19  4.89  8.62  December 2016.0
## 1299 C.corindum  Plantation_Key   F 6.28   2.93  5.10  8.38  December 2016.0
## 1300 C.corindum  Plantation_Key   M 5.89   2.82  8.18 11.14  December 2016.0
## 1301 C.corindum  Plantation_Key   F 7.34   3.20  6.99 10.12  December 2016.0
## 1302 C.corindum  Plantation_Key   M 5.58   2.72  4.67  7.77  December 2016.0
## 1303 C.corindum  Plantation_Key   M 5.88   2.65  7.23  9.97  December 2016.0
## 1304 C.corindum  Plantation_Key   M 6.04   3.03  7.82 10.65  December 2016.0
## 1305 C.corindum  Plantation_Key   F 6.54   2.94  6.09  9.37  December 2016.0
## 1306 C.corindum  Plantation_Key   F 7.30   3.30  8.84 12.17  December 2016.0
## 1307 C.corindum  Plantation_Key   M 5.92   2.99  7.88 10.97  December 2016.0
## 1308 C.corindum  Plantation_Key   M 6.73   3.45  8.99 12.31  December 2016.0
## 1309 C.corindum  Plantation_Key   M 5.37   2.69  7.03  9.69  December 2016.0
## 1310 C.corindum  Plantation_Key   M 6.31   3.06  8.33 11.30  December 2016.0
## 1311 C.corindum  Plantation_Key   M 6.11   2.97  7.86 10.74  December 2016.0
## 1312 C.corindum  Plantation_Key   M 5.30   2.29  3.79  6.71  December 2016.0
## 1313 C.corindum  Plantation_Key   F 6.54   3.02  4.94  8.47  December 2016.0
## 1314 C.corindum  Plantation_Key   M 5.90   2.89  7.57 10.37  December 2016.0
## 1315  K.elegans     Gainesville   M 5.92   3.08  8.53 11.48    August 2017.0
## 1316  K.elegans     Gainesville   M 5.57   2.98  8.21 11.43    August 2017.0
## 1317  K.elegans     Gainesville   F 7.84   3.57  9.31 12.80    August 2017.0
## 1318  K.elegans     Gainesville   F 6.76   2.97  6.83 10.16    August 2017.0
## 1319  K.elegans     Gainesville   M 5.73   3.10  8.73 11.91    August 2017.0
## 1320  K.elegans     Gainesville   M 5.59   2.67  7.42 10.22    August 2017.0
## 1321  K.elegans     Gainesville   F 6.62   2.79  6.21  9.58    August 2017.0
## 1322  K.elegans     Gainesville   F 6.40   3.22  8.52 11.83    August 2017.0
## 1323  K.elegans     Gainesville   F 6.84   3.61  9.66 12.85    August 2017.0
## 1324  K.elegans     Gainesville   M 5.80   3.18  8.77 12.05    August 2017.0
## 1325  K.elegans     Gainesville   M 5.69   3.05  8.19 11.34    August 2017.0
## 1326  K.elegans     Gainesville   M 5.44   2.80  7.65 10.58    August 2017.0
## 1327  K.elegans     Gainesville   F 7.53   3.33  8.69 11.96    August 2017.0
## 1328  K.elegans     Gainesville   F 6.69   3.51  9.35 12.90    August 2017.0
## 1329  K.elegans     Gainesville   M 5.67   2.87  8.20 11.05    August 2017.0
## 1330  K.elegans     Gainesville   M 5.48   2.96  7.91 10.97    August 2017.0
## 1331  K.elegans     Gainesville   F 6.75   2.99  6.25  9.72    August 2017.0
## 1332  K.elegans     Gainesville   F 7.34   3.51  9.05 12.46    August 2017.0
## 1333  K.elegans     Gainesville   F 6.73   3.35  8.46 12.03    August 2017.0
## 1334  K.elegans     Gainesville   F 7.18   3.16  8.60 12.03    August 2017.0
## 1335  K.elegans     Gainesville   F 8.99   3.80 10.70 14.25    August 2017.0
## 1336  K.elegans     Gainesville   F 7.06   3.34  8.79 12.06    August 2017.0
## 1337  K.elegans     Gainesville   M 5.39   2.81  7.89 10.62    August 2017.0
## 1338  K.elegans     Gainesville   M 5.56   2.92  7.81 10.51    August 2017.0
## 1339  K.elegans     Gainesville   M 5.66   2.98  8.13 11.11    August 2017.0
## 1340  K.elegans     Gainesville   M 5.67   2.83  6.07  9.21    August 2017.0
## 1341  K.elegans     Gainesville   F 7.65   3.46  9.35 12.88    August 2017.0
## 1342  K.elegans     Gainesville   F 7.47   3.27  7.99 11.70    August 2017.0
## 1343  K.elegans     Gainesville   M 5.60   2.97  8.06 10.96    August 2017.0
## 1344  K.elegans     Gainesville   F 7.11   3.19  8.55 11.78    August 2017.0
## 1345  K.elegans     Gainesville   F 7.03   3.30  8.85 12.31    August 2017.0
## 1346  K.elegans     Gainesville   F 7.48   3.55  9.14 12.64    August 2017.0
## 1347  K.elegans     Gainesville   M 5.87   3.17  8.08 11.19    August 2017.0
## 1348  K.elegans     Gainesville   M 5.50   3.04  8.48 11.37    August 2017.0
## 1349  K.elegans     Gainesville   M 5.95   3.27  8.95 12.13    August 2017.0
## 1350  K.elegans     Gainesville   M 5.25   2.90  7.83 11.04    August 2017.0
## 1351  K.elegans     Gainesville   F 6.84   3.58  9.81 13.52    August 2017.0
## 1352  K.elegans     Gainesville   F 7.43   3.45  9.42 12.99    August 2017.0
## 1353  K.elegans     Gainesville   M 5.46   3.03  8.37 11.48    August 2017.0
## 1354  K.elegans     Gainesville   M 5.92   2.91  7.79 10.71    August 2017.0
## 1355  K.elegans     Gainesville   F 7.82   3.55  9.68 13.31    August 2017.0
## 1356  K.elegans     Gainesville   M 5.68   3.31  8.98 12.32    August 2017.0
## 1357  K.elegans     Gainesville   F 7.85   3.54  9.65 12.38    August 2017.0
## 1358  K.elegans     Gainesville   F 6.38   2.84  4.82  8.36    August 2017.0
## 1359  K.elegans     Gainesville   M 5.37   3.03  8.44 11.02    August 2017.0
## 1360  K.elegans     Gainesville   F 8.10   3.60  9.91 13.67    August 2017.0
## 1361  K.elegans     Gainesville   M 5.48   2.97  8.37 11.40    August 2017.0
## 1362  K.elegans     Gainesville   M 5.62   2.93  8.18 11.02    August 2017.0
## 1363  K.elegans     Gainesville   F 7.08   3.33  8.85 12.11    August 2017.0
## 1364  K.elegans     Gainesville   M 5.44   2.86  7.20  9.91    August 2017.0
## 1365  K.elegans     Gainesville   M 5.47   3.14  8.59 11.77    August 2017.0
## 1366  K.elegans     Gainesville   F 7.67   3.49  9.80 13.48    August 2017.0
## 1367  K.elegans     Gainesville   M 5.67   3.08  8.41 11.17    August 2017.0
## 1368  K.elegans     Gainesville   F 8.56   3.55  9.73 13.25    August 2017.0
## 1369  K.elegans     Gainesville   F 6.92   3.44  8.95 12.66    August 2017.0
## 1370  K.elegans     Gainesville   M 5.83   2.87  7.83 10.82    August 2017.0
## 1371  K.elegans     Gainesville   F 7.11   3.42  8.95 12.28    August 2017.0
## 1372  K.elegans     Gainesville   F 7.46   3.51  9.30 12.71    August 2017.0
## 1373  K.elegans     Gainesville   M 5.28   2.68  7.70 10.47    August 2017.0
## 1374  K.elegans     Gainesville   M 5.34   2.68  5.96  8.92    August 2017.0
## 1375  K.elegans       Homestead   M 5.80   3.21  8.46 11.62    August 2017.0
## 1376  K.elegans       Homestead   F 7.05   3.04  6.30  9.60    August 2017.0
## 1377  K.elegans       Homestead   F 7.39   3.46  9.09 12.39    August 2017.0
## 1378  K.elegans       Homestead   M 6.02   3.24  8.55 11.33    August 2017.0
## 1379  K.elegans       Homestead   F 6.39   2.96  4.93  8.04    August 2017.0
## 1380  K.elegans       Homestead   F 7.83   3.43  9.25 12.60    August 2017.0
## 1381  K.elegans       Homestead   F 8.89   3.90  9.99 13.76    August 2017.0
## 1382  K.elegans       Homestead   F 7.86   3.58  8.99 12.49    August 2017.0
## 1383  K.elegans       Homestead   M 5.68   3.00  8.08 10.99    August 2017.0
## 1384  K.elegans       Homestead   M 5.48   2.79  7.98 10.65    August 2017.0
## 1385  K.elegans       Homestead   M 5.78   2.99  8.22 11.16    August 2017.0
## 1386  K.elegans       Homestead   F 8.81   3.74 10.08 13.82    August 2017.0
## 1387  K.elegans       Homestead   M 5.90   3.18  8.18 11.30    August 2017.0
## 1388  K.elegans       Homestead   F 7.85   3.46  9.00 12.34    August 2017.0
## 1389  K.elegans       Homestead   M 5.99   3.22  8.19 11.34    August 2017.0
## 1390  K.elegans       Homestead   M 5.89   3.14  8.51 11.60    August 2017.0
## 1391  K.elegans       Homestead   M 5.68   2.84  7.25 10.43    August 2017.0
## 1392  K.elegans       Homestead   M 5.71   2.95  7.97 10.84    August 2017.0
## 1393  K.elegans       Homestead   F 6.05   2.96  5.20  8.49    August 2017.0
## 1394  K.elegans       Homestead   M 5.95   3.20  8.29 11.55    August 2017.0
## 1395  K.elegans       Homestead   M 5.88   3.31  9.01 12.33    August 2017.0
## 1396  K.elegans       Homestead   F 7.43   3.14  8.55 11.90    August 2017.0
## 1397  K.elegans       Homestead   M 6.10   3.28  8.68 11.80    August 2017.0
## 1398  K.elegans       Homestead   M 6.02   3.29  8.93 12.16    August 2017.0
## 1399  K.elegans       Homestead   F 7.89   3.54  9.28 12.84    August 2017.0
## 1400  K.elegans       Homestead   M 6.08   3.46  8.94 11.94    August 2017.0
## 1401  K.elegans       Homestead   M 6.29   3.49  9.01 12.29    August 2017.0
## 1402  K.elegans       Homestead   M 5.63   3.10  7.92 10.91    August 2017.0
## 1403  K.elegans       Homestead   M 5.84   2.71  4.63  7.42    August 2017.0
## 1404  K.elegans       Homestead   M 5.95   3.18  8.97 12.01    August 2017.0
## 1405  K.elegans       Homestead   F 7.95   3.48  9.70 13.37    August 2017.0
## 1406  K.elegans       Homestead   F 7.56   3.40  8.15 12.18    August 2017.0
## 1407  K.elegans       Homestead   M 5.38   2.92  6.92  9.71    August 2017.0
## 1408  K.elegans       Homestead   M 5.36   2.74  5.75  8.76    August 2017.0
## 1409  K.elegans       Homestead   F 8.61   3.86 10.35 13.76    August 2017.0
## 1410  K.elegans       Homestead   F 7.69   3.44  9.22 12.66    August 2017.0
## 1411  K.elegans       Homestead   M 6.06   2.83  7.57 10.48    August 2017.0
## 1412  K.elegans       Homestead   M 6.13   3.27  9.02 11.98    August 2017.0
## 1413  K.elegans       Homestead   F 7.26   3.26  8.58 11.58    August 2017.0
## 1414  K.elegans       Homestead   F 8.12   3.49  9.35 13.06    August 2017.0
## 1415  K.elegans       Homestead   M 5.61   2.89  7.78 10.63    August 2017.0
## 1416  K.elegans       Homestead   F 8.63   3.88 10.09 13.61    August 2017.0
## 1417  K.elegans       Homestead   F 7.59   3.72  9.17 12.71    August 2017.0
## 1418  K.elegans       Homestead   F 5.97   2.82  4.48  7.75    August 2017.0
## 1419  K.elegans       Homestead   M 5.42   2.81  7.66 10.58    August 2017.0
## 1420  K.elegans       Homestead   F 7.54   3.30  9.21 12.52    August 2017.0
## 1421  K.elegans       Homestead   F 8.03   3.55  9.33 12.75    August 2017.0
## 1422  K.elegans       Homestead   M 5.71   2.93  7.47 10.63    August 2017.0
## 1423  K.elegans       Homestead   F 8.36   3.54  9.73 13.10    August 2017.0
## 1424  K.elegans       Homestead   F 8.13   3.57  9.59 12.98    August 2017.0
## 1425  K.elegans       Homestead   M 5.96   3.22  8.88 11.78    August 2017.0
## 1426  K.elegans       Homestead   F 7.46   3.39  9.62 12.76    August 2017.0
## 1427  K.elegans       Homestead   M 5.65   3.13  8.47 11.50    August 2017.0
## 1428  K.elegans       Homestead   F 7.49   3.43  9.13 12.26    August 2017.0
## 1429  K.elegans       Homestead   F 8.49   3.95 10.46 14.13    August 2017.0
## 1430  K.elegans       Homestead   F 7.61   3.53  9.00 11.89    August 2017.0
## 1431  K.elegans       Homestead   F 6.95   3.32  8.99 12.18    August 2017.0
## 1432  K.elegans       Homestead   M 5.76   3.12  8.63 11.80    August 2017.0
## 1433  K.elegans       Homestead   F 8.66   3.94 10.97 14.80    August 2017.0
## 1434  K.elegans       Homestead   F 8.79   3.92 10.20 13.80    August 2017.0
## 1435  K.elegans       Homestead   F 8.29   3.95 10.72 14.11    August 2017.0
## 1436  K.elegans       Homestead   M 5.81   3.40  9.35 12.42    August 2017.0
## 1437  K.elegans       Homestead   M 5.88   3.37  8.93 11.73    August 2017.0
## 1438  K.elegans       Homestead   F 8.76   4.02 10.54 14.41    August 2017.0
## 1439  K.elegans       Homestead   M 6.02   3.10  8.54 11.67    August 2017.0
## 1440  K.elegans       Homestead   M 6.07   3.26  8.94 12.04    August 2017.0
## 1441  K.elegans       Homestead   M 6.10   3.25  8.98 12.14    August 2017.0
## 1442  K.elegans       Homestead   M 6.11   3.29  8.55 11.61    August 2017.0
## 1443  K.elegans       Homestead   M 5.71   3.09  8.73 11.55    August 2017.0
## 1444  K.elegans       Homestead   M 5.88   3.11  8.59 11.26    August 2017.0
## 1445  K.elegans       Homestead   F 8.35   4.13 10.51 13.98    August 2017.0
## 1446  K.elegans       Homestead   F 8.46   3.81 10.46 14.05    August 2017.0
## 1447  K.elegans       Homestead   M 5.63   3.03  7.93 10.62    August 2017.0
## 1448  K.elegans       Homestead   M 5.70   3.17  8.76 11.99    August 2017.0
## 1449  K.elegans       Homestead   F 8.05   3.95 10.64 13.99    August 2017.0
## 1450  K.elegans       Homestead   M 5.79   3.21  8.85 12.08    August 2017.0
## 1451  K.elegans       Homestead   F 8.38   3.55 10.41 13.74    August 2017.0
## 1452  K.elegans       Homestead   M 5.78   3.30  8.95 12.07    August 2017.0
## 1453  K.elegans       Homestead   F 8.62   3.70  9.84 13.65    August 2017.0
## 1454  K.elegans       Homestead   M 5.74   2.80  8.00 10.92    August 2017.0
## 1455  K.elegans       Homestead   M 5.64   3.27  8.67 11.82    August 2017.0
## 1456  K.elegans       Homestead   F 7.66   3.72 10.19 13.52    August 2017.0
## 1457  K.elegans       Homestead   M 5.73   3.26  8.71 11.80    August 2017.0
## 1458  K.elegans       Homestead   M 5.73   3.14  8.46 11.66    August 2017.0
## 1459  K.elegans       Homestead   F 8.41   4.06 10.39 14.07    August 2017.0
## 1460  K.elegans       Homestead   F 8.06   3.58  9.77 12.98    August 2017.0
## 1461  K.elegans       Homestead   M 5.62   3.05  8.23 10.99    August 2017.0
## 1462  K.elegans       Homestead   F 8.02   3.69  9.92 14.00    August 2017.0
## 1463  K.elegans       Homestead   M 5.82   3.42  9.26 12.24    August 2017.0
## 1464  K.elegans       Homestead   F 7.96   3.87 10.32 13.76    August 2017.0
## 1465  K.elegans       Homestead   F 8.24   3.63  9.63 13.12    August 2017.0
## 1466  K.elegans       Homestead   F 8.15   3.85 10.44 13.75    August 2017.0
## 1467  K.elegans       Homestead   F 8.17   3.61 10.16 13.78    August 2017.0
## 1468  K.elegans       Homestead   M 5.81   3.22  8.71 11.87    August 2017.0
## 1469  K.elegans       Homestead   F 8.02   3.54  9.53 12.87    August 2017.0
## 1470  K.elegans       Homestead   M 5.69   3.15  8.83 11.59    August 2017.0
## 1471  K.elegans       Homestead   M 5.53   2.78  7.84 10.78    August 2017.0
## 1472  K.elegans       Homestead   M 6.04   3.25  8.95 12.14    August 2017.0
## 1473  K.elegans       Homestead   F 8.48   4.09 10.25 13.57    August 2017.0
## 1474  K.elegans       Homestead   F 8.25   3.75  9.95 13.07    August 2017.0
## 1475  K.elegans       Homestead   M 6.04   3.43  8.84 11.98    August 2017.0
## 1476  K.elegans       Homestead   F 7.96   3.54  9.45 12.63    August 2017.0
## 1477  K.elegans       Homestead   F 8.14   3.76 10.05 13.51    August 2017.0
## 1478  K.elegans       Homestead   F 8.05   3.71  9.58 13.32    August 2017.0
## 1479  K.elegans       Homestead   F 8.42   3.68  9.65 13.50    August 2017.0
## 1480  K.elegans       Homestead   F 7.85   3.82  9.99 13.14    August 2017.0
## 1481  K.elegans       Homestead   M 5.89   3.22  8.52 11.31    August 2017.0
## 1482  K.elegans       Homestead   F 7.97   3.98 10.60 14.21    August 2017.0
## 1483  K.elegans       Homestead   F 8.57   3.78  9.82 13.34    August 2017.0
## 1484  K.elegans       Homestead   F 8.02   3.36  9.43 12.81    August 2017.0
## 1485  K.elegans       Homestead   F 7.97   3.73 10.15 13.65    August 2017.0
## 1486  K.elegans       Homestead   F 8.81   3.85 10.26 13.62    August 2017.0
## 1487  K.elegans       Homestead   M 5.69   2.92  8.13 10.95    August 2017.0
## 1488  K.elegans       Homestead   M 6.14   3.27  9.00 12.19    August 2017.0
## 1489  K.elegans       Homestead   M 5.95   3.23  8.92 12.04    August 2017.0
## 1490  K.elegans       Homestead   F 7.60   3.07  8.50 11.54    August 2017.0
## 1491  K.elegans       Homestead   M 6.06   3.27  8.80 12.00    August 2017.0
## 1492  K.elegans       Homestead   M 5.85   3.26  8.84 11.70    August 2017.0
## 1493  K.elegans       Homestead   F 8.24   3.62  9.87 13.35    August 2017.0
## 1494  K.elegans       Homestead   M 5.85   3.15  8.50 11.34    August 2017.0
## 1495  K.elegans       Homestead   F 8.39   3.73 10.50 14.35    August 2017.0
## 1496  K.elegans       Homestead   M 6.05   3.10  8.79 11.74    August 2017.0
## 1497  K.elegans       Homestead   M 5.65   3.33  9.08 11.91    August 2017.0
## 1498  K.elegans       Homestead   F 8.62   3.78  9.92 13.67    August 2017.0
## 1499  K.elegans       Homestead   M 5.99   3.13  8.54 11.67    August 2017.0
## 1500  K.elegans       Homestead   M 5.99   3.26  9.14 12.08    August 2017.0
## 1501  K.elegans       Homestead   M 5.71   2.97  8.82 11.42    August 2017.0
## 1502 C.corindum       Key_Largo   F 8.89   3.62  9.34 12.55    August 2017.0
## 1503 C.corindum       Key_Largo   M 5.97   3.01  8.30 10.89    August 2017.0
## 1504 C.corindum       Key_Largo   M 6.20   2.90  8.36 11.30    August 2017.0
## 1505 C.corindum       Key_Largo   M 5.63   2.66  4.76  7.86    August 2017.0
## 1506 C.corindum       Key_Largo   F 7.90   3.12  8.64 12.02    August 2017.0
## 1507 C.corindum       Key_Largo   M 6.29   3.10  8.06 11.34    August 2017.0
## 1508 C.corindum       Key_Largo   M 5.79   2.74  7.53 10.50    August 2017.0
## 1509 C.corindum       Key_Largo   M 5.31   2.75  7.39 10.03    August 2017.0
## 1510 C.corindum       Key_Largo   F 8.29   3.47  9.34 12.95    August 2017.0
## 1511 C.corindum       Key_Largo   M 5.86   2.94  7.64 10.65    August 2017.0
## 1512 C.corindum       Key_Largo   F 7.95   3.34  9.20 12.71    August 2017.0
## 1513 C.corindum       Key_Largo   M 5.41   2.71  4.76  7.88    August 2017.0
## 1514 C.corindum       Key_Largo   M 6.08   3.07  8.14 11.48    August 2017.0
## 1515 C.corindum       Key_Largo   M 6.24   3.05  7.92 10.78    August 2017.0
## 1516 C.corindum       Key_Largo   M 6.35   2.89  8.13 11.08    August 2017.0
## 1517 C.corindum       Key_Largo   F 7.33   3.32  8.24 11.52    August 2017.0
## 1518 C.corindum       Key_Largo   M 6.07   3.10  7.99 11.07    August 2017.0
## 1519 C.corindum       Key_Largo   M 5.80   3.08  8.58 11.59    August 2017.0
## 1520 C.corindum       Key_Largo   F 8.03   3.44  9.05 12.44    August 2017.0
## 1521 C.corindum       Key_Largo   F 7.96   3.33  8.46 11.96    August 2017.0
## 1522 C.corindum       Key_Largo   F 8.09   3.43  8.98 12.46    August 2017.0
## 1523 C.corindum       Key_Largo   F 7.86   3.62  9.39 13.27    August 2017.0
## 1524 C.corindum       Key_Largo   M 5.28   2.59  4.69  7.45    August 2017.0
## 1525 C.corindum       Key_Largo   M 5.00   2.52  4.50  7.44    August 2017.0
## 1526 C.corindum       Key_Largo   F 7.96   3.04  8.80 11.94    August 2017.0
## 1527 C.corindum       Key_Largo   F 8.38   3.67 10.16 13.81    August 2017.0
## 1528 C.corindum       Key_Largo   M 5.90   3.21  8.31 11.65    August 2017.0
## 1529 C.corindum       Key_Largo   M 5.50   2.63  6.79  9.59    August 2017.0
## 1530 C.corindum       Key_Largo   F 9.01   3.67  9.96 13.60    August 2017.0
## 1531 C.corindum       Key_Largo   F 7.00   3.54  9.55 12.94    August 2017.0
## 1532 C.corindum       Key_Largo   M 5.90   3.09  8.13 11.13    August 2017.0
## 1533 C.corindum       Key_Largo   M 5.79   2.73  7.36 10.02    August 2017.0
## 1534 C.corindum       Key_Largo   M 6.20   2.82  7.73 10.70    August 2017.0
## 1535 C.corindum       Key_Largo   M 5.38   2.73  5.32  7.98    August 2017.0
## 1536 C.corindum       Key_Largo   M 6.11   2.88  7.90 10.99    August 2017.0
## 1537 C.corindum       Key_Largo   M 6.85   3.40  9.18 12.30    August 2017.0
## 1538 C.corindum       Key_Largo   F 8.90   3.48  9.10 12.57    August 2017.0
## 1539 C.corindum       Key_Largo   M 6.32   3.03  8.02 10.63    August 2017.0
## 1540 C.corindum       Key_Largo   F 8.16   3.47  9.17 12.60    August 2017.0
## 1541 C.corindum       Key_Largo   M 5.60   2.65  4.81  7.93    August 2017.0
## 1542 C.corindum       Key_Largo   M 6.36   3.26  8.97 12.28    August 2017.0
## 1543 C.corindum       Key_Largo   F 8.04   3.78 10.20 13.79    August 2017.0
## 1544 C.corindum       Key_Largo   F 7.49   3.14  8.41 11.86    August 2017.0
## 1545 C.corindum       Key_Largo   F 6.76   2.79  4.87  8.08    August 2017.0
## 1546 C.corindum       Key_Largo   F 6.31   2.90  4.91  8.42    August 2017.0
## 1547 C.corindum       Key_Largo   M 6.01   3.29  8.20 11.51    August 2017.0
## 1548 C.corindum       Key_Largo   F 8.72   3.48  9.27 12.82    August 2017.0
## 1549 C.corindum       Key_Largo   F 6.86   2.83  4.91  8.11    August 2017.0
## 1550 C.corindum       Key_Largo   M 6.65   3.04  8.49 11.63    August 2017.0
## 1551 C.corindum       Key_Largo   M 5.48   2.54  4.81  7.75    August 2017.0
## 1552 C.corindum       Key_Largo   M 5.20   2.47  4.68  7.55    August 2017.0
## 1553 C.corindum       Key_Largo   F 9.40   3.65  9.76 13.39    August 2017.0
## 1554 C.corindum       Key_Largo   M 6.01   3.04  8.89 11.88    August 2017.0
## 1555 C.corindum       Key_Largo   F 6.70   2.93  4.98  8.52    August 2017.0
## 1556 C.corindum       Key_Largo   M 6.20   2.99  7.84 10.77    August 2017.0
## 1557 C.corindum       Key_Largo   M 5.65   2.79  7.59 10.45    August 2017.0
## 1558 C.corindum       Key_Largo   F 9.17   3.99 10.33 14.32    August 2017.0
## 1559 C.corindum       Key_Largo   M 5.94   3.00  8.39 11.52    August 2017.0
## 1560 C.corindum       Key_Largo   F 6.79   2.93  5.15  8.35    August 2017.0
## 1561 C.corindum       Key_Largo   M 6.88   3.26  9.02 12.12    August 2017.0
## 1562 C.corindum       Key_Largo   M 5.53   2.62  4.89  7.85    August 2017.0
## 1563 C.corindum       Key_Largo   M 5.21   2.32  3.98  6.88    August 2017.0
## 1564 C.corindum       Key_Largo   M 5.26   2.33  4.33  7.29    August 2017.0
## 1565 C.corindum       Key_Largo   M 5.13   2.56  4.48  7.58    August 2017.0
## 1566 C.corindum       Key_Largo   M 5.33   2.55  4.31  7.06    August 2017.0
## 1567 C.corindum       Key_Largo   F 8.15   3.22  6.24  9.71    August 2017.0
## 1568 C.corindum       Key_Largo   M 5.98   2.64  7.43 10.46    August 2017.0
## 1569 C.corindum       Key_Largo   M 5.66   2.74  4.67  7.68    August 2017.0
## 1570 C.corindum       Key_Largo   M 5.68   2.87  7.89 10.77    August 2017.0
## 1571 C.corindum       Key_Largo   M 5.28   2.43  5.52  8.46    August 2017.0
## 1572 C.corindum       Key_Largo   F 6.84   2.85  5.20  8.67    August 2017.0
## 1573 C.corindum       Key_Largo   M 6.01   3.01  8.24 11.47    August 2017.0
## 1574 C.corindum North_Key_Largo   F 8.52   3.71  9.07 12.95    August 2017.0
## 1575 C.corindum North_Key_Largo   F 8.07   3.64 10.06 13.91    August 2017.0
## 1576 C.corindum North_Key_Largo   F 8.40   3.32  8.88 12.19    August 2017.0
## 1577 C.corindum North_Key_Largo   M 5.78   2.89  8.58 11.32    August 2017.0
## 1578 C.corindum North_Key_Largo   F 8.38   3.30  9.07 12.35    August 2017.0
## 1579 C.corindum North_Key_Largo   F 8.47   3.57  9.89 13.69    August 2017.0
## 1580 C.corindum North_Key_Largo   F 7.40   3.14  8.50 11.70    August 2017.0
## 1581 C.corindum North_Key_Largo   M 6.27   3.31  8.77 11.71    August 2017.0
## 1582 C.corindum North_Key_Largo   M 5.51   2.79  7.09 10.07    August 2017.0
## 1583 C.corindum North_Key_Largo   F 8.70   3.58  9.94 13.77    August 2017.0
## 1584 C.corindum North_Key_Largo   M 5.63   3.07  9.36 12.35    August 2017.0
## 1585 C.corindum North_Key_Largo   M 6.37   2.90  7.77 10.61    August 2017.0
## 1586 C.corindum North_Key_Largo   M 5.24   2.49  4.45  7.23    August 2017.0
## 1587 C.corindum North_Key_Largo   M 5.29   2.43  6.82  9.57    August 2017.0
## 1588 C.corindum North_Key_Largo   M 5.26   2.53  4.50  7.49    August 2017.0
## 1589 C.corindum North_Key_Largo   F 7.79   3.24  8.43 11.77    August 2017.0
## 1590 C.corindum North_Key_Largo   M 5.64   2.75  7.54 10.07    August 2017.0
## 1591 C.corindum North_Key_Largo   F 8.38   3.31  9.40 12.82    August 2017.0
## 1592 C.corindum North_Key_Largo   F 6.40   3.00  7.98 11.03    August 2017.0
## 1593 C.corindum North_Key_Largo   M 5.54   2.48  4.60  7.57    August 2017.0
## 1594  K.elegans      Lake_Wales   M 5.60   3.09  8.75 11.98    August 2017.0
## 1595  K.elegans      Lake_Wales   F 7.54   3.79  9.84 13.27    August 2017.0
## 1596  K.elegans      Lake_Wales   F 7.18   3.33  9.00 12.33    August 2017.0
## 1597  K.elegans      Lake_Wales   M 5.52   3.01  7.97 10.92    August 2017.0
## 1598  K.elegans      Lake_Wales   F 7.29   3.36  8.95 12.59    August 2017.0
## 1599  K.elegans      Lake_Wales   M 5.52   3.10  8.26 11.30    August 2017.0
## 1600  K.elegans      Lake_Wales   F 7.53   3.44  9.56 12.97    August 2017.0
## 1601  K.elegans      Lake_Wales   M 5.85   3.06  8.25 11.23    August 2017.0
## 1602  K.elegans      Lake_Wales   F 8.08   3.66  9.70 13.37    August 2017.0
## 1603  K.elegans      Lake_Wales   M 5.58   2.74  7.81 10.65    August 2017.0
## 1604  K.elegans      Lake_Wales   M 5.79   2.87  7.94 10.97    August 2017.0
## 1605  K.elegans      Lake_Wales   M 5.71   3.04  8.45 11.55    August 2017.0
## 1606  K.elegans      Lake_Wales   F 8.23   3.64  9.75 13.28    August 2017.0
## 1607  K.elegans      Lake_Wales   F 7.58   3.53  9.39 12.81    August 2017.0
## 1608  K.elegans      Lake_Wales   F 7.55   3.48  9.09 12.45    August 2017.0
## 1609  K.elegans      Lake_Wales   F 5.96   2.66  4.88  7.94    August 2017.0
## 1610  K.elegans      Lake_Wales   F 7.82   3.49  9.23 12.49    August 2017.0
## 1611  K.elegans      Lake_Wales   M 5.19   2.81  4.99  7.95    August 2017.0
## 1612  K.elegans      Lake_Wales   M 5.32   2.98  7.59 10.58    August 2017.0
## 1613  K.elegans      Lake_Wales   F 7.72   3.47  9.48 13.06    August 2017.0
## 1614  K.elegans      Lake_Wales   M 6.03   3.22  8.52 11.54    August 2017.0
## 1615  K.elegans      Lake_Wales   M 5.68   3.14  8.26 10.91    August 2017.0
## 1616  K.elegans      Lake_Wales   M 5.86   3.12  8.50 11.28    August 2017.0
## 1617  K.elegans      Lake_Wales   F 7.45   3.63  9.27 12.65    August 2017.0
## 1618  K.elegans      Lake_Wales   M 5.69   3.26  8.49 11.99    August 2017.0
## 1619  K.elegans      Lake_Wales   F 6.05   2.84  6.19  9.64    August 2017.0
## 1620  K.elegans      Lake_Wales   F 7.71   3.61  9.40 12.95    August 2017.0
## 1621  K.elegans      Lake_Wales   M 5.63   2.88  7.81 10.49    August 2017.0
## 1622  K.elegans      Lake_Wales   M 5.68   3.26  8.37 11.14    August 2017.0
## 1623  K.elegans      Lake_Wales   M 5.51   2.83  7.89 10.83    August 2017.0
## 1624  K.elegans      Lake_Wales   F 7.21   3.31  9.06 12.56    August 2017.0
## 1625  K.elegans      Lake_Wales   M 5.71   3.30  8.83 12.12    August 2017.0
## 1626  K.elegans      Lake_Wales   F 8.49   3.70 10.05 14.07    August 2017.0
## 1627  K.elegans      Lake_Wales   M 5.47   2.98  8.13 11.14    August 2017.0
## 1628  K.elegans      Lake_Wales   F 7.32   2.84  6.04  9.60    August 2017.0
## 1629  K.elegans      Lake_Wales   F 6.78   3.09  6.87 10.42    August 2017.0
## 1630  K.elegans      Lake_Wales   M 5.51   3.16  8.89 12.16    August 2017.0
## 1631  K.elegans      Lake_Wales   F 7.78   3.51  9.07 12.70    August 2017.0
## 1632  K.elegans      Lake_Wales   F 7.71     NA  9.59 13.19    August 2017.0
## 1633  K.elegans      Lake_Wales   M 5.26   2.65  5.38  8.32    August 2017.0
## 1634  K.elegans      Lake_Wales   F 5.71   2.73  4.71  7.93    August 2017.0
## 1635  K.elegans      Lake_Wales   M 5.48   2.88  8.10 11.41    August 2017.0
## 1636  K.elegans      Lake_Wales   M 5.83   3.18  8.51 11.70    August 2017.0
## 1637  K.elegans      Lake_Wales   M 5.85   2.87  5.82  8.51    August 2017.0
## 1638  K.elegans      Lake_Wales   F 6.59   2.90  5.61  8.87    August 2017.0
## 1639  K.elegans      Lake_Wales   M 5.26   3.03  8.57 11.48    August 2017.0
## 1640  K.elegans      Lake_Wales   M 5.09   2.50  4.73  7.49    August 2017.0
## 1641  K.elegans      Lake_Wales   M 5.75   2.59  5.49  8.38    August 2017.0
## 1642  K.elegans      Lake_Wales   F 8.71   3.87 10.51 14.12    August 2017.0
## 1643  K.elegans      Lake_Wales   F 7.29   3.11  6.69 10.22    August 2017.0
## 1644  K.elegans      Lake_Wales   M 5.60   3.07  8.46 11.46    August 2017.0
## 1645  K.elegans      Lake_Wales   M 5.19   2.65  5.14  7.91    August 2017.0
## 1646  K.elegans      Lake_Wales   F 6.69   3.64  9.40 13.15    August 2017.0
## 1647  K.elegans      Lake_Wales   M 5.83   3.08  8.87 11.86    August 2017.0
## 1648  K.elegans      Lake_Wales   F 7.05   3.22  6.81 10.34    August 2017.0
## 1649  K.elegans      Lake_Wales   M 5.71   3.34  9.49 12.62    August 2017.0
## 1650  K.elegans      Lake_Wales   M 5.62   3.19  8.79 11.93    August 2017.0
## 1651  K.elegans      Lake_Wales   F 6.93   2.94  5.53  9.02    August 2017.0
## 1652  K.elegans      Lake_Wales   F 6.54   3.33  9.59 13.00    August 2017.0
## 1653  K.elegans      Lake_Wales   M 5.24   3.34  8.06 11.17    August 2017.0
## 1654  K.elegans      Lake_Wales   M 4.85   2.54  4.61  7.56    August 2017.0
## 1655  K.elegans      Lake_Wales   F 7.73   3.87  9.78 13.24    August 2017.0
## 1656  K.elegans      Lake_Wales   M 4.93   2.40  5.02  7.89    August 2017.0
## 1657  K.elegans      Lake_Wales   F 6.46   2.83  4.89  8.09    August 2017.0
## 1658  K.elegans      Lake_Wales   M 5.32   2.70  5.31  8.24    August 2017.0
## 1659  K.elegans      Lake_Wales   F 6.68   3.12  6.69 10.35    August 2017.0
## 1660  K.elegans      Lake_Wales   M 5.32   2.95  7.95 11.17    August 2017.0
## 1661  K.elegans      Lake_Wales   F 6.71   3.22  7.08 10.51    August 2017.0
## 1662  K.elegans      Lake_Wales   M 5.26   3.02  8.62 11.69    August 2017.0
## 1663  K.elegans      Lake_Wales   M 5.40   3.06  8.37 11.57    August 2017.0
## 1664  K.elegans      Lake_Wales   M 5.86   2.90  7.61 10.53    August 2017.0
## 1665  K.elegans      Lake_Wales   M 5.65   3.01  8.17 11.16    August 2017.0
## 1666  K.elegans      Lake_Wales   F 6.76   3.12  8.47 11.78    August 2017.0
## 1667  K.elegans      Lake_Wales   F 6.53   2.92  5.80  9.28    August 2017.0
## 1668  K.elegans      Lake_Wales   M 5.31   2.45  4.45  7.35    August 2017.0
## 1669  K.elegans      Lake_Wales   F 7.35   3.32  8.86 12.26    August 2017.0
## 1670  K.elegans      Lake_Wales   F 6.09   2.79  5.46  8.85    August 2017.0
## 1671  K.elegans      Lake_Wales   F 6.32   2.85  4.83  8.10    August 2017.0
## 1672  K.elegans      Lake_Wales   M 5.35   2.71  4.86  7.93    August 2017.0
## 1673  K.elegans      Lake_Wales   M 5.60     NA  8.65 11.87    August 2017.0
## 1674  K.elegans      Lake_Wales   M 5.69   2.88  5.26  8.42    August 2017.0
## 1675  K.elegans      Lake_Wales   M 4.97   2.69  7.22 10.15    August 2017.0
## 1676  K.elegans      Lake_Wales   F 6.44   2.80  5.54  8.70    August 2017.0
## 1677  K.elegans      Lake_Wales   M 5.27   2.76  6.37  9.32    August 2017.0
## 1678  K.elegans      Lake_Wales   M 5.31   2.63  6.03  8.99    August 2017.0
## 1679  K.elegans      Lake_Wales   M 5.37   2.71  5.25  8.20    August 2017.0
## 1680  K.elegans      Lake_Wales   M 5.49   3.03  7.89 10.80    August 2017.0
## 1681  K.elegans      Lake_Wales   F 6.72   3.03  5.44  8.78    August 2017.0
## 1682  K.elegans      Lake_Wales   M 5.81   3.19  8.97 12.09    August 2017.0
## 1683  K.elegans      Lake_Wales   M 5.37   2.54  6.17  9.14    August 2017.0
## 1684  K.elegans      Lake_Wales   M 5.15   2.38  5.22  7.87    August 2017.0
## 1685  K.elegans        Leesburg   M 5.23   3.05  8.75 11.43    August 2017.0
## 1686  K.elegans        Leesburg   F 7.20   3.29  9.05 12.30    August 2017.0
## 1687  K.elegans        Leesburg   F 6.22   3.12  5.57  8.95    August 2017.0
## 1688  K.elegans        Leesburg   F 5.89   2.44  4.28  7.34    August 2017.0
## 1689  K.elegans        Leesburg   F 6.66   2.69  4.63  7.87    August 2017.0
## 1690  K.elegans        Leesburg   M 6.05   3.26  8.61 11.63    August 2017.0
## 1691  K.elegans        Leesburg   F 7.11   3.20  9.13 12.30    August 2017.0
## 1692  K.elegans        Leesburg   M 5.78   2.86  8.16 11.39    August 2017.0
## 1693  K.elegans        Leesburg   M 5.72   2.89  7.89 10.72    August 2017.0
## 1694  K.elegans        Leesburg   M 5.22   2.49  4.59  7.43    August 2017.0
## 1695  K.elegans        Leesburg   M 5.35   2.80  7.71 10.49    August 2017.0
## 1696  K.elegans        Leesburg   F 7.77   3.82 10.22 13.70    August 2017.0
## 1697  K.elegans        Leesburg   F 8.44   3.66  9.83 13.58    August 2017.0
## 1698  K.elegans        Leesburg   M 5.60   2.64  7.39 10.28    August 2017.0
## 1699  K.elegans        Leesburg   F 6.12   2.82  5.54  8.80    August 2017.0
## 1700  K.elegans        Leesburg   M 5.60   2.85  6.24  8.89    August 2017.0
## 1701  K.elegans        Leesburg   F 7.75   3.48  9.70 13.37    August 2017.0
## 1702  K.elegans        Leesburg   M 5.09   2.63  5.04  7.87    August 2017.0
## 1703  K.elegans        Leesburg   F 8.14   3.70  9.78 13.30    August 2017.0
## 1704  K.elegans        Leesburg   M 5.39   2.96  8.40 11.39    August 2017.0
## 1705  K.elegans        Leesburg   M 5.87   3.00  8.18 11.47    August 2017.0
## 1706  K.elegans        Leesburg   M 5.30   2.81  7.67 10.40    August 2017.0
## 1707  K.elegans        Leesburg   M 5.17   2.72  7.45  9.98    August 2017.0
## 1708  K.elegans        Leesburg   M 5.52   2.19  4.76  7.42    August 2017.0
## 1709  K.elegans        Leesburg   M 5.36   2.75  7.85 10.61    August 2017.0
## 1710  K.elegans        Leesburg   F 7.14   3.37  9.21 12.69    August 2017.0
## 1711  K.elegans        Leesburg   F 6.05   2.69  5.12  8.21    August 2017.0
## 1712  K.elegans        Leesburg   M 5.56   2.81  8.31 11.24    August 2017.0
## 1713  K.elegans        Leesburg   F 7.01   3.15  8.52 11.79    August 2017.0
## 1714  K.elegans        Leesburg   M 5.58   2.96  8.22 11.14    August 2017.0
## 1715  K.elegans        Leesburg   M 5.55   3.00  8.20 11.17    August 2017.0
## 1716  K.elegans        Leesburg   F 7.35   3.49  9.39 12.62    August 2017.0
## 1717  K.elegans        Leesburg   M 5.41   3.07  8.53 11.59    August 2017.0
## 1718  K.elegans        Leesburg   M 5.05   2.40  4.72  7.52    August 2017.0
## 1719  K.elegans        Leesburg   F 7.22   2.92  6.21  9.71    August 2017.0
## 1720  K.elegans        Leesburg   M 5.41   2.65  7.65 10.62    August 2017.0
## 1721  K.elegans        Leesburg   M 5.27   2.87  8.08 11.12    August 2017.0
## 1722  K.elegans        Leesburg   M 5.52   2.52  5.08  7.69    August 2017.0
## 1723  K.elegans        Leesburg   M 6.27   2.84  7.42 10.06    August 2017.0
## 1724  K.elegans        Leesburg   F 7.14   3.37  9.52 12.83    August 2017.0
## 1725  K.elegans        Leesburg   M 5.13   2.53  5.36  8.26    August 2017.0
## 1726  K.elegans        Leesburg   M 5.69   2.87  8.18 11.20    August 2017.0
## 1727  K.elegans        Leesburg   F 7.82   3.43  9.52 13.21    August 2017.0
## 1728  K.elegans        Leesburg   M 5.62   3.22  8.76 11.80    August 2017.0
## 1729  K.elegans        Leesburg   F 6.54   2.73  4.81  7.94    August 2017.0
## 1730  K.elegans        Leesburg   M 4.77   2.28  3.76  6.50    August 2017.0
## 1731  K.elegans        Leesburg   M 5.86   2.74  7.90 10.71    August 2017.0
## 1732  K.elegans        Leesburg   M 5.15   2.59  7.16  9.86    August 2017.0
## 1733  K.elegans        Leesburg   M 5.52   3.09  7.91 10.68    August 2017.0
## 1734  K.elegans        Leesburg   M 5.41   2.63  5.81  8.72    August 2017.0
## 1735  K.elegans        Leesburg   M 5.09   2.67  4.86  7.78    August 2017.0
## 1736  K.elegans        Leesburg   F 5.87   2.62  4.78  7.77    August 2017.0
## 1737  K.elegans        Leesburg   M 5.30   2.55  5.91  8.91    August 2017.0
## 1738  K.elegans        Leesburg   M 5.49   2.55  4.57  7.33    August 2017.0
## 1739  K.elegans        Leesburg   M 5.07   2.39  4.33  7.14    August 2017.0
## 1740  K.elegans        Leesburg   F 5.87   2.57  4.71  7.83    August 2017.0
## 1741  K.elegans        Leesburg   F 6.72   3.05  8.26 11.43    August 2017.0
## 1742  K.elegans        Leesburg   F 6.34   2.88  4.84  7.98    August 2017.0
## 1743  K.elegans     Gainesville   M 5.59   2.77  7.70 10.83 September 2018.0
## 1744  K.elegans     Gainesville   M 5.48   2.89  8.43 11.23 September 2018.0
## 1745  K.elegans     Gainesville   M 5.66   3.02  8.78 11.95 September 2018.0
## 1746  K.elegans     Gainesville   F 8.29   3.85 10.26 14.18 September 2018.0
## 1747  K.elegans     Gainesville   F 7.54   3.42  9.12 12.19 September 2018.0
## 1748  K.elegans     Gainesville   M 5.32   2.66  7.37 10.08 September 2018.0
## 1749  K.elegans     Gainesville   M 5.72   3.14  8.98 11.90 September 2018.0
## 1750  K.elegans     Gainesville   F 7.12   3.30  9.11 12.36 September 2018.0
## 1751  K.elegans     Gainesville   F 6.43   3.40  9.34 12.37 September 2018.0
## 1752  K.elegans     Gainesville   F 7.25   3.65 10.40 13.81 September 2018.0
## 1753  K.elegans     Gainesville   F 7.36   3.25  8.89 12.16 September 2018.0
## 1754  K.elegans     Gainesville   F 8.03   3.55  9.73 13.38 September 2018.0
## 1755  K.elegans     Gainesville   F 7.21   3.01  8.60 11.69 September 2018.0
## 1756  K.elegans     Gainesville   F 6.93   3.49  9.82 13.11 September 2018.0
## 1757  K.elegans     Gainesville   F 6.06   3.22  9.32 12.63 September 2018.0
## 1758  K.elegans     Gainesville   F 7.68   3.50  9.42 13.15 September 2018.0
## 1759  K.elegans     Gainesville   F 6.15   2.80  4.84  8.21 September 2018.0
## 1760  K.elegans     Gainesville   M 5.66   2.94  8.45 11.49 September 2018.0
## 1761  K.elegans     Gainesville   M 5.78   3.04  8.60 11.67 September 2018.0
## 1762  K.elegans     Gainesville   M 5.58   2.95  8.59 11.56 September 2018.0
## 1763  K.elegans     Gainesville   M 5.32   2.94  8.11 10.81 September 2018.0
## 1764  K.elegans     Gainesville   M 5.50   3.07  8.05 11.26 September 2018.0
## 1765  K.elegans     Gainesville   F 6.59   3.26  8.64 11.64 September 2018.0
## 1766  K.elegans     Gainesville   M 5.42   2.87  8.27 11.08 September 2018.0
## 1767  K.elegans     Gainesville   F 6.51   3.47  9.26 13.25 September 2018.0
## 1768  K.elegans     Gainesville   F 6.61   3.19  8.67 11.67 September 2018.0
## 1769  K.elegans     Gainesville   M 5.11   2.70  7.81 10.50 September 2018.0
## 1770  K.elegans     Gainesville   M 5.52   2.97  8.48 11.46 September 2018.0
## 1771  K.elegans     Gainesville   M 5.93   2.89  7.87 11.04 September 2018.0
## 1772  K.elegans     Gainesville   M 5.29   2.96  7.68 10.94 September 2018.0
## 1773  K.elegans     Gainesville   F 7.80   3.32  9.45 12.82 September 2018.0
## 1774  K.elegans     Gainesville   F 6.42   3.46  9.10 12.45 September 2018.0
## 1775  K.elegans     Gainesville   F 7.69   3.74  9.71 13.17 September 2018.0
## 1776  K.elegans     Gainesville   M 5.51   2.79  8.34 11.01 September 2018.0
## 1777  K.elegans     Gainesville   F 7.16   3.24  8.73 11.84 September 2018.0
## 1778  K.elegans     Gainesville   M 5.79   3.09  8.78 12.04 September 2018.0
## 1779  K.elegans     Gainesville   M 5.78   3.25  9.07 12.37 September 2018.0
## 1780  K.elegans     Gainesville   M 5.89   3.10  8.75 11.86 September 2018.0
## 1781  K.elegans     Gainesville   F 6.68   3.53  9.45 12.73 September 2018.0
## 1782  K.elegans     Gainesville   M 5.49   2.71  7.55 10.66 September 2018.0
## 1783  K.elegans     Gainesville   F 7.69   3.51  9.63 13.27 September 2018.0
## 1784  K.elegans     Gainesville   F 7.26   3.68 10.03 13.45 September 2018.0
## 1785  K.elegans     Gainesville   F 7.26   3.72 10.29 13.78 September 2018.0
## 1786  K.elegans     Gainesville   M 5.53   2.76  8.02 10.72 September 2018.0
## 1787  K.elegans     Gainesville   M 5.61   2.98  8.17 11.09 September 2018.0
## 1788  K.elegans     Gainesville   F 7.42   3.47  9.64 12.99 September 2018.0
## 1789  K.elegans     Gainesville   M 5.71   2.79  7.95 11.04 September 2018.0
## 1790  K.elegans     Gainesville   M 5.28   2.95  7.96 11.14 September 2018.0
## 1791  K.elegans     Gainesville   M 5.84   3.01  8.33 11.29 September 2018.0
## 1792  K.elegans     Gainesville   F 7.98   3.40  9.51 13.08 September 2018.0
## 1793  K.elegans     Gainesville   F 7.10   3.17  9.26 12.82 September 2018.0
## 1794  K.elegans     Gainesville   F 7.69   3.34  9.78 13.10 September 2018.0
## 1795  K.elegans     Gainesville   M 6.15   3.03  8.56 11.63 September 2018.0
## 1796  K.elegans     Gainesville   M 5.07   2.68  7.40 10.06 September 2018.0
## 1797  K.elegans     Gainesville   F 7.15   3.51  9.40 13.13 September 2018.0
## 1798  K.elegans     Gainesville   F 5.89   2.63  4.63  7.73 September 2018.0
## 1799  K.elegans     Gainesville   F 7.32   3.28  8.69 11.92 September 2018.0
## 1800  K.elegans     Gainesville   F 6.43   3.40  9.11 12.58 September 2018.0
## 1801  K.elegans     Gainesville   M 5.47   2.81  7.82 10.70 September 2018.0
## 1802  K.elegans     Gainesville   M 5.65   3.01  8.76 11.76 September 2018.0
## 1803  K.elegans     Gainesville   M 5.55   2.57  4.42  7.24 September 2018.0
## 1804  K.elegans     Gainesville   M 5.41   2.92  8.00 10.86 September 2018.0
## 1805  K.elegans     Gainesville   F 7.94   3.54  9.18 12.89 September 2018.0
## 1806  K.elegans     Gainesville   M 6.00   2.95  8.46 11.51 September 2018.0
## 1807 C.corindum North_Key_Largo   M 6.19   3.10  8.67 11.95 September 2018.0
## 1808 C.corindum North_Key_Largo   M 6.02   3.19  8.47 11.62 September 2018.0
## 1809 C.corindum North_Key_Largo   M 6.20   2.82  7.96 11.07 September 2018.0
## 1810 C.corindum North_Key_Largo   F 7.07   3.01  7.82 10.87 September 2018.0
## 1811 C.corindum North_Key_Largo   F 7.67   3.09  5.40  8.77 September 2018.0
## 1812 C.corindum North_Key_Largo   F 6.37   2.68  5.15  8.64 September 2018.0
## 1813 C.corindum North_Key_Largo   F 7.80   3.40  6.94 10.59 September 2018.0
## 1814 C.corindum North_Key_Largo   F 7.86   3.23  6.79 10.05 September 2018.0
## 1815 C.corindum North_Key_Largo   F 9.38   3.80  9.79 13.56 September 2018.0
## 1816 C.corindum North_Key_Largo   M 5.29   2.53  4.42  7.22 September 2018.0
## 1817 C.corindum North_Key_Largo   M 5.52   2.52  4.47  7.31 September 2018.0
## 1818 C.corindum North_Key_Largo   F 7.25   2.81  7.74 10.73 September 2018.0
## 1819 C.corindum North_Key_Largo   F 6.68   2.78  4.65  8.04 September 2018.0
## 1820 C.corindum North_Key_Largo   F 6.37   2.80  4.45  7.28 September 2018.0
## 1821 C.corindum North_Key_Largo   M 5.74   2.80  7.61 10.59 September 2018.0
## 1822 C.corindum North_Key_Largo   M 5.52   2.58  4.84  7.52 September 2018.0
## 1823 C.corindum North_Key_Largo   F 8.48   3.51  9.53 13.02 September 2018.0
## 1824 C.corindum North_Key_Largo   F 7.58   3.36  6.94 10.41 September 2018.0
## 1825 C.corindum North_Key_Largo   F 7.67   3.16  7.74 11.51 September 2018.0
## 1826 C.corindum North_Key_Largo   M 6.53   3.15  8.60 11.85 September 2018.0
## 1827 C.corindum North_Key_Largo   M 6.00   3.07  8.55 11.57 September 2018.0
## 1828 C.corindum North_Key_Largo   F 6.04   2.53  4.16  6.88 September 2018.0
## 1829 C.corindum North_Key_Largo   F 7.87   3.14  5.60  9.16 September 2018.0
## 1830 C.corindum North_Key_Largo   F 8.75   3.49  9.08 12.79 September 2018.0
## 1831 C.corindum North_Key_Largo   F 7.07   2.85  5.31  8.51 September 2018.0
## 1832 C.corindum North_Key_Largo   F 8.61   3.60  9.76 13.37 September 2018.0
## 1833 C.corindum North_Key_Largo   M 6.31   3.22  8.62 11.85 September 2018.0
## 1834 C.corindum North_Key_Largo   M 5.75   2.66  4.42  7.35 September 2018.0
## 1835 C.corindum North_Key_Largo   F 7.35   3.29  5.77  9.47 September 2018.0
## 1836 C.corindum North_Key_Largo   M 5.53   2.71  5.44  8.47 September 2018.0
## 1837 C.corindum North_Key_Largo   F 9.36   3.55 10.00 13.64 September 2018.0
## 1838 C.corindum North_Key_Largo   F 7.45   3.07  5.19  8.83 September 2018.0
## 1839 C.corindum North_Key_Largo   M 5.69   2.77  7.57 10.38 September 2018.0
## 1840 C.corindum North_Key_Largo   M 5.77   2.94  7.41 10.66 September 2018.0
## 1841 C.corindum North_Key_Largo   F 6.67   2.94  7.33 10.69 September 2018.0
## 1842 C.corindum North_Key_Largo   F 7.77   3.09  5.20  8.86 September 2018.0
## 1843 C.corindum North_Key_Largo   M 5.75   2.67  4.60  7.43 September 2018.0
## 1844 C.corindum North_Key_Largo   M 5.20   2.22  4.22  6.67 September 2018.0
## 1845 C.corindum North_Key_Largo   F 6.35   2.87  4.91  8.30 September 2018.0
## 1846 C.corindum North_Key_Largo   M 5.44   2.52  4.25  6.93 September 2018.0
## 1847 C.corindum North_Key_Largo   F 8.61   3.55  9.45 12.97 September 2018.0
## 1848 C.corindum North_Key_Largo   F 6.23   2.68  4.42  7.73 September 2018.0
## 1849 C.corindum North_Key_Largo   F 7.83   3.32  8.77 12.27 September 2018.0
## 1850 C.corindum North_Key_Largo   M 6.35   3.15  8.35 11.45 September 2018.0
## 1851 C.corindum North_Key_Largo   F 8.51   3.64  9.26 12.66 September 2018.0
## 1852 C.corindum North_Key_Largo   M 5.85   2.49  4.77  7.68 September 2018.0
## 1853 C.corindum North_Key_Largo   M 6.41   3.15  8.69 12.03 September 2018.0
## 1854 C.corindum North_Key_Largo   M 5.58   2.80  7.70 10.39 September 2018.0
## 1855 C.corindum North_Key_Largo   F 7.95   3.21  8.78 12.09 September 2018.0
## 1856 C.corindum North_Key_Largo   F 7.65   3.28  9.35 12.44 September 2018.0
## 1857 C.corindum North_Key_Largo   F 6.93   2.82  4.47  7.89 September 2018.0
## 1858 C.corindum North_Key_Largo   M 5.38   2.72  5.40  8.13 September 2018.0
## 1859 C.corindum North_Key_Largo   F 7.78   3.24  8.32 11.75 September 2018.0
## 1860 C.corindum North_Key_Largo   M 5.33   2.43  5.23  7.68 September 2018.0
## 1861 C.corindum North_Key_Largo   F 7.59   3.03  5.32  8.72 September 2018.0
## 1862 C.corindum North_Key_Largo   M 5.41   2.63  7.44  9.94 September 2018.0
## 1863 C.corindum North_Key_Largo   F 8.36   3.45  9.23 12.76 September 2018.0
## 1864 C.corindum North_Key_Largo   F 7.83   3.14  5.84  9.37 September 2018.0
## 1865 C.corindum North_Key_Largo   F 7.89   3.19  9.47 12.89 September 2018.0
## 1866 C.corindum North_Key_Largo   F 7.45   3.07  5.77  9.21 September 2018.0
## 1867 C.corindum North_Key_Largo   M 5.56   2.75  7.86 10.83 September 2018.0
## 1868 C.corindum North_Key_Largo   F 6.71   3.02  5.56  8.70 September 2018.0
## 1869 C.corindum North_Key_Largo   F 7.95   3.27  8.61 11.85 September 2018.0
## 1870 C.corindum North_Key_Largo   F 7.73   3.08  5.81  9.22 September 2018.0
## 1871 C.corindum North_Key_Largo   M 6.30   2.91  8.45 11.32 September 2018.0
## 1872 C.corindum North_Key_Largo   F 6.99   2.91  5.41  8.53 September 2018.0
## 1873 C.corindum North_Key_Largo   M 5.40   2.54  4.70  7.41 September 2018.0
## 1874 C.corindum North_Key_Largo   M 5.57   2.45  4.28  6.89 September 2018.0
## 1875  K.elegans      Lake_Wales   F 7.16   3.29  9.14 12.49 September 2018.0
## 1876  K.elegans      Lake_Wales   F 7.02   3.13  8.44 11.80 September 2018.0
## 1877  K.elegans      Lake_Wales   F 7.60   3.45  9.26 12.71 September 2018.0
## 1878  K.elegans      Lake_Wales   M 5.84   3.05  8.23 11.43 September 2018.0
## 1879  K.elegans      Lake_Wales   M 5.52   2.69  7.76 10.47 September 2018.0
## 1880  K.elegans      Lake_Wales   F 6.83   3.11  8.94 12.27 September 2018.0
## 1881  K.elegans      Lake_Wales   F 6.88   3.13  9.10 12.47 September 2018.0
## 1882  K.elegans      Lake_Wales   M 5.15   2.37  4.48  7.26 September 2018.0
## 1883  K.elegans      Lake_Wales   F 6.70   3.09  8.36 11.61 September 2018.0
## 1884  K.elegans      Lake_Wales   M 5.71   3.00  8.08 11.00 September 2018.0
## 1885  K.elegans      Lake_Wales   F 7.48   3.12  9.41 12.66 September 2018.0
## 1886  K.elegans      Lake_Wales   F 7.83   3.42 10.21 14.19 September 2018.0
## 1887  K.elegans      Lake_Wales   M 5.61   3.09  8.59 11.67 September 2018.0
## 1888  K.elegans      Lake_Wales   F 7.46   3.65  9.93 13.34 September 2018.0
## 1889  K.elegans      Lake_Wales   M 5.77   2.94  8.22 11.27 September 2018.0
## 1890  K.elegans      Lake_Wales   F 7.51   3.26  9.33 12.56 September 2018.0
## 1891  K.elegans      Lake_Wales   F 7.35   3.26  8.73 12.22 September 2018.0
## 1892  K.elegans      Lake_Wales   M 5.81   3.07  8.68 11.71 September 2018.0
## 1893  K.elegans      Lake_Wales   F 8.47   3.64 10.07 14.02 September 2018.0
## 1894  K.elegans      Lake_Wales   F 7.32   3.58 10.19 13.51 September 2018.0
## 1895  K.elegans      Lake_Wales   F 7.19   3.30  9.02 12.47 September 2018.0
## 1896  K.elegans      Lake_Wales   M 5.68   2.65  7.56 10.60 September 2018.0
## 1897  K.elegans      Lake_Wales   M 5.82   3.25  8.65 11.71 September 2018.0
## 1898  K.elegans      Lake_Wales   F 6.05   3.08  8.14 11.49 September 2018.0
## 1899  K.elegans      Lake_Wales   M 5.57   2.86  7.89 11.03 September 2018.0
## 1900  K.elegans      Lake_Wales   F 7.47   3.25  5.91  9.40 September 2018.0
## 1901  K.elegans      Lake_Wales   M 5.26   2.79  7.97 10.73 September 2018.0
## 1902  K.elegans      Lake_Wales   F 6.80   3.15  8.74 11.85 September 2018.0
## 1903  K.elegans      Lake_Wales   F 6.00   2.56  4.90  7.92 September 2018.0
## 1904  K.elegans      Lake_Wales   F 7.82   3.76 10.17 14.19 September 2018.0
## 1905  K.elegans      Lake_Wales   M 5.85   3.12  8.64 12.00 September 2018.0
## 1906  K.elegans      Lake_Wales   F 7.78   3.50  9.32 13.17 September 2018.0
## 1907  K.elegans      Lake_Wales   F 7.55   3.38  9.58 12.82 September 2018.0
## 1908  K.elegans      Lake_Wales   F 7.58   3.60  9.69 13.14 September 2018.0
## 1909  K.elegans      Lake_Wales   F 7.43   3.45  9.56 12.91 September 2018.0
## 1910  K.elegans      Lake_Wales   F 7.29   3.23  9.22 12.56 September 2018.0
## 1911  K.elegans      Lake_Wales   F 7.75   3.66  9.87 13.53 September 2018.0
## 1912  K.elegans      Lake_Wales   M 5.57   2.79  7.56 10.74 September 2018.0
## 1913  K.elegans      Lake_Wales   M 5.79   3.29  8.68 11.50 September 2018.0
## 1914  K.elegans      Lake_Wales   M 5.40   2.75  7.60 10.55 September 2018.0
## 1915  K.elegans        Leesburg   M 5.45   2.98  8.12 11.05 September 2018.0
## 1916  K.elegans     Gainesville   F 7.48   3.44  9.12 12.60       May 2019.0
## 1917  K.elegans     Gainesville   F 7.66   3.58  9.94 13.63       May 2019.0
## 1918  K.elegans     Gainesville   M 5.14   2.63  7.51 10.21       May 2019.0
## 1919  K.elegans     Gainesville   F 7.68   3.73 10.13 13.47       May 2019.0
## 1920  K.elegans     Gainesville   M 5.91   3.31  8.83 12.47       May 2019.0
## 1921  K.elegans     Gainesville   M 5.09   2.98  5.41  8.43       May 2019.0
## 1922  K.elegans     Gainesville   F 7.87   3.75  9.93 13.35       May 2019.0
## 1923  K.elegans     Gainesville   M 5.22   2.73  7.10  9.88       May 2019.0
## 1924  K.elegans     Gainesville   M 5.34   2.86  8.11 10.90       May 2019.0
## 1925  K.elegans     Gainesville   F 7.60   3.95  9.67 13.80       May 2019.0
## 1926  K.elegans     Gainesville   F 6.98   3.60  8.95 12.30       May 2019.0
## 1927  K.elegans     Gainesville   F 5.91   3.20  8.80 11.86       May 2019.0
## 1928  K.elegans     Gainesville   M 6.24   3.47  9.09 12.80       May 2019.0
## 1929  K.elegans     Gainesville   F 6.30   3.56  9.09 11.94       May 2019.0
## 1930  K.elegans     Gainesville   F 8.09   3.55 10.02 13.84       May 2019.0
## 1931  K.elegans     Gainesville   F 7.98   3.91  9.75 13.98       May 2019.0
## 1932  K.elegans     Gainesville   F 8.64   3.54  9.31 13.34       May 2019.0
## 1933  K.elegans     Gainesville   F 5.74   3.28  8.81 11.81       May 2019.0
## 1934  K.elegans     Gainesville   F 8.28   3.83  9.90 13.64       May 2019.0
## 1935  K.elegans     Gainesville   F 5.22   2.91  5.37  8.36       May 2019.0
## 1936  K.elegans     Gainesville   F 5.42   2.96  7.71 10.13       May 2019.0
## 1937  K.elegans     Gainesville   F 7.80   3.45 10.34 13.52       May 2019.0
## 1938  K.elegans     Gainesville   F 8.16   3.80 10.10 13.21       May 2019.0
## 1939  K.elegans     Gainesville   F 8.22   4.05  9.98 13.50       May 2019.0
## 1940  K.elegans     Gainesville   M 6.19   2.98  9.11 12.05       May 2019.0
## 1941  K.elegans     Gainesville   F 6.10   2.77  8.05 10.45       May 2019.0
## 1942  K.elegans     Gainesville   F 8.83   3.64 10.62 13.59       May 2019.0
## 1943  K.elegans     Gainesville   M 8.63   4.09 10.17 14.07       May 2019.0
## 1944  K.elegans     Gainesville   F 7.73   3.43  9.08 12.52       May 2019.0
## 1945  K.elegans     Gainesville   F 6.96   2.75  7.98 11.29       May 2019.0
## 1946  K.elegans     Gainesville   M 6.00   3.07  8.58 11.37       May 2019.0
## 1947  K.elegans     Gainesville   F 5.76   3.11  8.56 10.96       May 2019.0
## 1948  K.elegans     Gainesville   F 7.94   3.68 10.38 13.63       May 2019.0
## 1949  K.elegans     Gainesville   F 8.55   3.79 10.35 14.16       May 2019.0
## 1950  K.elegans     Gainesville   F 5.71   3.19  7.81 10.87       May 2019.0
## 1951  K.elegans     Gainesville   F 5.68   2.89  7.87 10.53       May 2019.0
## 1952  K.elegans     Gainesville   F 5.48   2.91  8.12 11.38       May 2019.0
## 1953  K.elegans     Gainesville   F 7.96   3.74 10.23 13.69       May 2019.0
## 1954  K.elegans     Gainesville   F 5.95   3.11  8.84 11.05       May 2019.0
## 1955  K.elegans     Gainesville   F 5.34   3.05  8.07 10.83       May 2019.0
## 1956  K.elegans     Gainesville   F 8.15   3.92 10.21 13.99       May 2019.0
## 1957  K.elegans     Gainesville   F 5.89   3.31  8.68 11.40       May 2019.0
## 1958  K.elegans     Gainesville   M 6.44   3.29  9.33 12.58       May 2019.0
## 1959  K.elegans     Gainesville   F 7.27   3.47  9.27 12.69       May 2019.0
## 1960  K.elegans     Gainesville   F 5.77   3.39  8.59 11.61       May 2019.0
## 1961  K.elegans     Gainesville   F 5.74   2.96  8.42 11.34       May 2019.0
## 1962  K.elegans     Gainesville   F 8.25   3.41 10.46 13.77       May 2019.0
## 1963  K.elegans     Gainesville   F 8.11   3.47  9.69 13.42       May 2019.0
## 1964  K.elegans     Gainesville   F 5.68   3.20  8.13 11.37       May 2019.0
## 1965  K.elegans       Homestead   M 5.35   2.39  3.95  6.59       May 2019.0
## 1966  K.elegans       Homestead   M 7.32   3.05  8.09 11.32       May 2019.0
## 1967  K.elegans       Homestead   F 5.50   2.53  4.63  7.37       May 2019.0
## 1968  K.elegans       Homestead   F 6.10   2.88  7.11 10.12       May 2019.0
## 1969  K.elegans       Homestead   M 5.37   2.68  7.29 10.01       May 2019.0
## 1970  K.elegans       Homestead   M 5.94   2.99  8.30 11.24       May 2019.0
## 1971  K.elegans       Homestead   M 5.11   2.47  4.09  7.03       May 2019.0
## 1972  K.elegans       Homestead   M 5.34   2.59  4.94  7.80       May 2019.0
## 1973  K.elegans       Homestead   M 5.16   2.70  5.46  8.24       May 2019.0
## 1974  K.elegans       Homestead   M 4.95   2.58  5.24  8.09       May 2019.0
## 1975  K.elegans       Homestead   F 6.25   2.76  4.25  7.31       May 2019.0
## 1976  K.elegans       Homestead   M 4.96   2.40  4.19  6.98       May 2019.0
## 1977  K.elegans       Homestead   M 5.87   3.36  8.61 11.66       May 2019.0
## 1978  K.elegans       Homestead   M 5.05   2.42  4.21  7.10       May 2019.0
## 1979  K.elegans       Homestead   M 5.01   2.52  4.18  7.18       May 2019.0
## 1980  K.elegans       Homestead   M 5.51   2.91  7.84 10.66       May 2019.0
## 1981  K.elegans       Homestead   F 7.49   3.30  7.31 10.63       May 2019.0
## 1982  K.elegans       Homestead   F 6.44   2.89  4.68  7.83       May 2019.0
## 1983 C.corindum       Key_Largo   M 5.41   2.56  4.47  7.27       May 2019.0
## 1984 C.corindum       Key_Largo   M 5.82   2.59  5.40  8.37       May 2019.0
## 1985 C.corindum       Key_Largo   F 6.10   2.52  4.63  7.48       May 2019.0
## 1986 C.corindum       Key_Largo   M 5.63   2.69  6.50  9.31       May 2019.0
## 1987 C.corindum       Key_Largo   F 8.52   3.70  9.46 12.75       May 2019.0
## 1988 C.corindum       Key_Largo   M 5.83   2.91  7.90 10.75       May 2019.0
## 1989 C.corindum       Key_Largo   M 5.45   2.73  7.29 10.19       May 2019.0
## 1990 C.corindum       Key_Largo   F 7.69   3.10  5.47  9.23       May 2019.0
## 1991 C.corindum       Key_Largo   F 7.05   3.17  6.32  9.98       May 2019.0
## 1992 C.corindum       Key_Largo   F 7.32   2.95  6.57  9.81       May 2019.0
## 1993 C.corindum       Key_Largo   M 4.99   2.13  3.52  5.96       May 2019.0
## 1994 C.corindum       Key_Largo   M 6.05   2.63  4.65  7.55       May 2019.0
## 1995 C.corindum       Key_Largo   F 6.86   3.25  6.33  9.51       May 2019.0
## 1996 C.corindum       Key_Largo   F 7.43   3.18  8.17 11.61       May 2019.0
## 1997 C.corindum       Key_Largo   M 5.91   2.85  5.25  8.22       May 2019.0
## 1998 C.corindum       Key_Largo   M 5.28   2.78  4.91  7.90       May 2019.0
## 1999 C.corindum       Key_Largo   F 6.38   2.88  5.09  8.23       May 2019.0
## 2000 C.corindum       Key_Largo   F 8.20   3.33  8.98 12.25       May 2019.0
## 2001 C.corindum       Key_Largo   M 6.14   2.94  8.04 11.04       May 2019.0
## 2002 C.corindum       Key_Largo   M 5.59   2.80  7.03  9.98       May 2019.0
## 2003 C.corindum       Key_Largo   M 5.74   2.79  7.30 10.09       May 2019.0
## 2004 C.corindum       Key_Largo   M 5.49   2.53  4.48  7.32       May 2019.0
## 2005 C.corindum       Key_Largo   M 6.14   3.19  8.26 11.03       May 2019.0
## 2006 C.corindum       Key_Largo   M 6.26   3.01  8.48 11.78       May 2019.0
## 2007 C.corindum       Key_Largo   F 6.48   2.85  5.18  8.17       May 2019.0
## 2008 C.corindum       Key_Largo   M 8.71   3.55  9.32 13.06       May 2019.0
## 2009 C.corindum       Key_Largo   F 6.42   2.99  4.71  8.33       May 2019.0
## 2010 C.corindum       Key_Largo   M 5.21   2.49  4.42  7.14       May 2019.0
## 2011 C.corindum       Key_Largo   M 5.39   2.35  4.99  7.70       May 2019.0
## 2012 C.corindum       Key_Largo   M 5.73   2.82  6.37  9.26       May 2019.0
## 2013 C.corindum       Key_Largo   M 6.00   2.89  7.90 10.75       May 2019.0
## 2014 C.corindum       Key_Largo   F 6.31   2.92  5.05  8.23       May 2019.0
## 2015 C.corindum       Key_Largo   M 5.54   3.19  8.50 11.95       May 2019.0
## 2016 C.corindum       Key_Largo   M 5.31   2.53  4.35  7.37       May 2019.0
## 2017 C.corindum       Key_Largo   M 5.38   2.53  4.80  7.88       May 2019.0
## 2018 C.corindum       Key_Largo   M 5.33   2.38  4.37  7.02       May 2019.0
## 2019 C.corindum       Key_Largo   M 6.25   3.06  7.77 10.42       May 2019.0
## 2020 C.corindum       Key_Largo   F 6.52   3.05  5.20  8.53       May 2019.0
## 2021 C.corindum       Key_Largo   F 7.14   3.18  5.68  9.11       May 2019.0
## 2022 C.corindum       Key_Largo   F 6.91   2.88  5.02  8.39       May 2019.0
## 2023 C.corindum       Key_Largo   F 6.71   2.94  5.10  8.41       May 2019.0
## 2024 C.corindum       Key_Largo   M 5.89   2.87  7.75 10.51       May 2019.0
## 2025 C.corindum       Key_Largo   M 5.92   2.68  4.94  7.93       May 2019.0
## 2026 C.corindum       Key_Largo   M 5.69   2.66  4.50  7.48       May 2019.0
## 2027 C.corindum       Key_Largo   F 6.60   2.72  5.19  8.48       May 2019.0
## 2028 C.corindum       Key_Largo   M 5.48   2.49  4.88  7.61       May 2019.0
## 2029 C.corindum       Key_Largo   M 5.67   2.77  6.50  9.22       May 2019.0
## 2030 C.corindum       Key_Largo   F 7.91   3.40  8.90 12.33       May 2019.0
## 2031 C.corindum       Key_Largo   M 5.66   2.76  7.51 10.41       May 2019.0
## 2032 C.corindum       Key_Largo   F 5.87   2.56  3.94  6.86       May 2019.0
## 2033 C.corindum       Key_Largo   M 5.38   2.57  4.26  7.06       May 2019.0
## 2034 C.corindum       Key_Largo   M 6.26   2.99  8.15 10.85       May 2019.0
## 2035 C.corindum       Key_Largo   M 5.75   2.86  5.15  8.19       May 2019.0
## 2036 C.corindum       Key_Largo   M 6.57   3.15  8.49 11.60       May 2019.0
## 2037 C.corindum       Key_Largo   M 5.38   2.61  5.23  8.28       May 2019.0
## 2038 C.corindum       Key_Largo   M 5.84   2.88  7.30 10.19       May 2019.0
## 2039 C.corindum       Key_Largo   F 7.45   3.23  5.50  8.98       May 2019.0
## 2040 C.corindum       Key_Largo   M 5.21   2.41  4.14  6.98       May 2019.0
## 2041 C.corindum       Key_Largo   F 6.72   3.04  5.55  9.10       May 2019.0
## 2042 C.corindum       Key_Largo   F 7.33   3.13  8.33 11.78       May 2019.0
## 2043 C.corindum       Key_Largo   F 6.40   2.89  4.63  8.01       May 2019.0
## 2044 C.corindum       Key_Largo   M 5.70   2.75  5.72  8.65       May 2019.0
## 2045 C.corindum       Key_Largo   M 5.10   2.45  4.56  7.52       May 2019.0
## 2046 C.corindum       Key_Largo   M 5.34   2.50  4.44  7.39       May 2019.0
## 2047 C.corindum       Key_Largo   F 6.19   2.79  4.47  7.53       May 2019.0
## 2048 C.corindum       Key_Largo   M 5.49   2.53  4.94  7.90       May 2019.0
## 2049 C.corindum       Key_Largo   M 5.14   2.42  4.09  7.02       May 2019.0
## 2050 C.corindum       Key_Largo   M 5.20   2.50  6.72  9.71       May 2019.0
## 2051 C.corindum       Key_Largo   M 5.67   2.71  4.88  7.60       May 2019.0
## 2052 C.corindum       Key_Largo   F 6.39   2.93  5.05  8.41       May 2019.0
## 2053 C.corindum       Key_Largo   M 6.42   3.08  8.51 11.34       May 2019.0
## 2054 C.corindum       Key_Largo   M 5.42   2.70  4.52  7.48       May 2019.0
## 2055 C.corindum       Key_Largo   M 5.80   2.80  4.84  7.84       May 2019.0
## 2056 C.corindum       Key_Largo   M 5.71   2.63  7.06  9.78       May 2019.0
## 2057 C.corindum       Key_Largo   M 5.91   2.72  5.04  7.92       May 2019.0
## 2058 C.corindum       Key_Largo   M 5.85   2.75  5.58  8.48       May 2019.0
## 2059  K.elegans     Lake_Placid   F 5.34   3.15  8.25 11.32       May 2019.0
## 2060  K.elegans     Lake_Placid   F 5.86   2.89  8.09 11.20       May 2019.0
## 2061  K.elegans     Lake_Placid   F 6.65   2.94  7.56 11.37       May 2019.0
## 2062  K.elegans     Lake_Placid   F 8.04   3.07  9.40 12.70       May 2019.0
## 2063  K.elegans     Lake_Placid   F 7.22   3.50  9.50 13.00       May 2019.0
## 2064  K.elegans     Lake_Placid   F 7.51   3.48  9.86 13.29       May 2019.0
## 2065  K.elegans     Lake_Placid   F 7.78   3.81 10.12 13.14       May 2019.0
## 2066  K.elegans     Lake_Placid   F 5.16   2.99  8.37 11.13       May 2019.0
## 2067  K.elegans     Lake_Placid   F 6.40   3.12  5.92  9.61       May 2019.0
## 2068  K.elegans     Lake_Placid   F 7.53   3.85  9.15 12.61       May 2019.0
## 2069  K.elegans     Lake_Placid   M 5.64   2.52  4.98  7.60       May 2019.0
## 2070  K.elegans     Lake_Placid   F 8.57   4.05 10.50 13.99       May 2019.0
## 2071  K.elegans     Lake_Placid   M 7.18   3.59 10.02 13.28       May 2019.0
## 2072  K.elegans     Lake_Placid   F 8.27   3.48 10.12 12.86       May 2019.0
## 2073  K.elegans     Lake_Placid   M 5.89   3.03  8.87 12.06       May 2019.0
## 2074  K.elegans     Lake_Placid   M 5.45   3.08  7.84 10.35       May 2019.0
## 2075  K.elegans     Lake_Placid   F 5.22   2.72  8.01 10.65       May 2019.0
## 2076  K.elegans     Lake_Placid   F 6.25   2.67  4.90  8.20       May 2019.0
## 2077  K.elegans     Lake_Placid   F 5.49   2.85  7.22 10.06       May 2019.0
## 2078  K.elegans     Lake_Placid   F 5.90   2.64  4.54  7.45       May 2019.0
## 2079  K.elegans     Lake_Placid   F 5.98   3.13  8.34 12.41       May 2019.0
## 2080  K.elegans     Lake_Placid   F 5.61   3.15  8.68 11.28       May 2019.0
## 2081  K.elegans     Lake_Placid   F 8.49   3.59  9.49 13.13       May 2019.0
## 2082  K.elegans     Lake_Placid   F 7.88   3.48  9.68 12.85       May 2019.0
## 2083  K.elegans     Lake_Placid   F 5.25   2.91  8.44 11.34       May 2019.0
## 2084  K.elegans     Lake_Placid   M 5.79   3.29  8.80 11.93       May 2019.0
## 2085  K.elegans     Lake_Placid   F 6.36   3.28  9.53 12.03       May 2019.0
## 2086  K.elegans     Lake_Placid   F 5.53   3.55  8.09 11.33       May 2019.0
## 2087  K.elegans     Lake_Placid   F 6.94   3.20  8.69 11.45       May 2019.0
## 2088  K.elegans     Lake_Placid   F 8.29   4.22  9.49 13.15       May 2019.0
## 2089  K.elegans     Lake_Placid   F 8.39   3.45  9.61 12.97       May 2019.0
## 2090  K.elegans     Lake_Placid   F 8.12   3.98  7.91 13.70       May 2019.0
## 2091  K.elegans     Lake_Placid   F 5.79   2.97  8.34 11.29       May 2019.0
## 2092  K.elegans     Lake_Placid   F 5.54   2.59  7.83 11.64       May 2019.0
## 2093  K.elegans     Lake_Placid   F 5.04   3.18  7.59 10.55       May 2019.0
## 2094  K.elegans     Lake_Placid   F 8.56   4.05 10.14 13.77       May 2019.0
## 2095  K.elegans     Lake_Placid   F 6.25   3.21  8.75 10.86       May 2019.0
## 2096  K.elegans     Lake_Placid   F 6.48   2.78  6.18  9.33       May 2019.0
## 2097  K.elegans     Lake_Placid   F 4.88   2.67  7.77 10.19       May 2019.0
## 2098  K.elegans     Lake_Placid   F 5.36   3.22  8.59 10.98       May 2019.0
## 2099  K.elegans     Lake_Placid   F 6.82   3.15  8.41 11.61       May 2019.0
## 2100  K.elegans     Lake_Placid   F 8.49   3.45  9.43 12.33       May 2019.0
## 2101  K.elegans     Lake_Placid   F 8.11   3.65  9.43 12.79       May 2019.0
## 2102  K.elegans     Lake_Placid   F 7.93   3.68 10.00 12.98       May 2019.0
## 2103  K.elegans     Lake_Placid   M 5.15   2.64  5.22  7.96       May 2019.0
## 2104  K.elegans     Lake_Placid   F 6.70   3.22  8.70 11.39       May 2019.0
## 2105  K.elegans     Lake_Placid   F 7.39   3.43  9.82 13.14       May 2019.0
## 2106  K.elegans     Lake_Placid   M 5.78   2.72  5.10  8.34       May 2019.0
## 2107  K.elegans     Lake_Placid   M 5.75   3.12  8.75 11.56       May 2019.0
## 2108  K.elegans     Lake_Placid   F 6.22   2.83  4.95  8.09       May 2019.0
## 2109  K.elegans     Lake_Placid   M 5.81   3.09  8.56 12.14       May 2019.0
## 2110  K.elegans     Lake_Placid   F 7.49   3.55  9.41 12.23       May 2019.0
## 2111  K.elegans     Lake_Placid   M 5.13   2.80  7.63 10.64       May 2019.0
## 2112  K.elegans     Lake_Placid   F 7.72   3.78  9.90 13.51       May 2019.0
## 2113  K.elegans     Lake_Placid   M 5.66   3.01  7.76 11.07       May 2019.0
## 2114  K.elegans     Lake_Placid   F 7.64   3.25  9.80 13.89       May 2019.0
## 2115  K.elegans     Lake_Placid   F 5.63   3.13  8.43 10.67       May 2019.0
## 2116  K.elegans     Lake_Placid   F 7.80   3.52  9.79 12.53       May 2019.0
## 2117  K.elegans     Lake_Placid   F 5.26   3.12  7.94 11.15       May 2019.0
## 2118  K.elegans     Lake_Placid   F 5.40   2.88  7.92 10.51       May 2019.0
## 2119  K.elegans     Lake_Placid   F 5.66   3.34  8.58 11.75       May 2019.0
## 2120  K.elegans     Lake_Placid   M 5.75   3.16  8.29 11.25       May 2019.0
## 2121 C.corindum North_Key_Largo   F 8.48   3.57  9.14 12.92       May 2019.0
## 2122 C.corindum North_Key_Largo   M 6.27   3.04  8.40 11.46       May 2019.0
## 2123 C.corindum North_Key_Largo   M 5.83   2.70  7.46 10.24       May 2019.0
## 2124 C.corindum North_Key_Largo   M 5.83   3.12  8.40 11.43       May 2019.0
## 2125 C.corindum North_Key_Largo   M 5.50   2.59  5.11  7.88       May 2019.0
## 2126 C.corindum North_Key_Largo   F 8.12   3.33  9.08 12.40       May 2019.0
## 2127 C.corindum North_Key_Largo   M 6.12   2.87  5.81  8.91       May 2019.0
## 2128 C.corindum North_Key_Largo   M 6.50   3.09  8.10 11.04       May 2019.0
## 2129 C.corindum North_Key_Largo   F 8.73   3.59 10.16 13.64       May 2019.0
## 2130 C.corindum North_Key_Largo   M 6.03   2.96  8.02 10.92       May 2019.0
## 2131 C.corindum North_Key_Largo   M 6.10   2.79  4.88  7.89       May 2019.0
## 2132 C.corindum North_Key_Largo   M 5.64   2.71  7.75 10.58       May 2019.0
## 2133 C.corindum North_Key_Largo   M 6.23   3.10  8.35 11.35       May 2019.0
## 2134 C.corindum North_Key_Largo   M 5.66   2.61  7.34 10.10       May 2019.0
## 2135 C.corindum North_Key_Largo   M 5.50   2.75  7.38 10.10       May 2019.0
## 2136 C.corindum North_Key_Largo   M 5.77   2.60  4.81  7.74       May 2019.0
## 2137 C.corindum North_Key_Largo   M 6.19   2.99  8.40 11.30       May 2019.0
## 2138 C.corindum North_Key_Largo   M 5.60   2.73  7.34 10.22       May 2019.0
## 2139 C.corindum North_Key_Largo   M 6.75   3.07  8.23 11.19       May 2019.0
## 2140 C.corindum North_Key_Largo   M 6.32   3.28  8.75 11.80       May 2019.0
## 2141 C.corindum North_Key_Largo   M 6.61   3.08  8.27 11.12       May 2019.0
## 2142 C.corindum North_Key_Largo   F 7.08   3.37  5.67  9.11       May 2019.0
## 2143 C.corindum North_Key_Largo   M 6.54   3.13  8.64 11.66       May 2019.0
## 2144 C.corindum North_Key_Largo   M 5.53   2.51  4.06  6.85       May 2019.0
## 2145 C.corindum North_Key_Largo   F 7.30   3.17  5.24  8.67       May 2019.0
## 2146 C.corindum North_Key_Largo   M 6.29   2.94  7.89 10.84       May 2019.0
## 2147 C.corindum North_Key_Largo   M 5.39   2.52  4.53  7.31       May 2019.0
## 2148 C.corindum North_Key_Largo   F 8.23   3.52  8.89 12.12       May 2019.0
## 2149 C.corindum North_Key_Largo   M 5.88   2.69  5.22  8.29       May 2019.0
## 2150 C.corindum North_Key_Largo   M 5.62   2.93  7.63 10.70       May 2019.0
## 2151 C.corindum North_Key_Largo   F 7.03   3.15  5.28  8.83       May 2019.0
## 2152 C.corindum North_Key_Largo   F 6.41   2.69  4.39  7.73       May 2019.0
## 2153 C.corindum North_Key_Largo   F 7.09   3.06  8.14 11.49       May 2019.0
## 2154 C.corindum North_Key_Largo   M 6.17   3.08  8.54 11.11       May 2019.0
## 2155 C.corindum North_Key_Largo   M 5.56   2.89  7.83 10.56       May 2019.0
## 2156 C.corindum North_Key_Largo   F 6.80   3.01  7.98 11.10       May 2019.0
## 2157 C.corindum North_Key_Largo   F 7.55   3.35  8.91 12.04       May 2019.0
## 2158 C.corindum North_Key_Largo   F 7.07   3.16  8.43 11.51       May 2019.0
## 2159 C.corindum North_Key_Largo   M 6.25   3.11  8.24 11.24       May 2019.0
## 2160 C.corindum North_Key_Largo   F 6.80   3.07  4.91  8.14       May 2019.0
## 2161 C.corindum North_Key_Largo   F 8.04   3.36  8.93 12.34       May 2019.0
## 2162 C.corindum North_Key_Largo   F 6.37   2.68  7.29 10.29       May 2019.0
## 2163 C.corindum North_Key_Largo   M 5.53   2.52  3.80  6.76       May 2019.0
## 2164 C.corindum North_Key_Largo   F 6.13   2.85  4.68  8.08       May 2019.0
## 2165 C.corindum North_Key_Largo   F 7.20   3.17  7.87 11.16       May 2019.0
## 2166 C.corindum North_Key_Largo   M 6.98   3.14  8.39 11.65       May 2019.0
## 2167 C.corindum North_Key_Largo   F 7.65   3.52  8.94 12.39       May 2019.0
## 2168 C.corindum North_Key_Largo   M 6.09   2.80  7.72 10.39       May 2019.0
## 2169 C.corindum North_Key_Largo   M 5.26   2.57  4.43  7.31       May 2019.0
## 2170 C.corindum North_Key_Largo   M 7.15   3.38  9.10 12.57       May 2019.0
## 2171 C.corindum North_Key_Largo   M 5.43   2.61  7.30  9.97       May 2019.0
## 2172 C.corindum North_Key_Largo   M 4.95   2.18  3.80  6.54       May 2019.0
## 2173 C.corindum North_Key_Largo   M 5.25   2.67  7.72 10.48       May 2019.0
## 2174 C.corindum North_Key_Largo   M 4.87   2.30  4.14  6.76       May 2019.0
## 2175 C.corindum North_Key_Largo   F 8.98   3.81  9.92 13.40       May 2019.0
## 2176 C.corindum North_Key_Largo   M 5.96   2.87  7.76 10.64       May 2019.0
## 2177 C.corindum North_Key_Largo   M 5.73   2.91  7.49 10.56       May 2019.0
## 2178 C.corindum North_Key_Largo   M 5.80   2.86  4.92  7.79       May 2019.0
## 2179 C.corindum North_Key_Largo   M 5.72   2.76  4.62  7.55       May 2019.0
## 2180 C.corindum North_Key_Largo   M 5.33   2.58  4.95  7.58       May 2019.0
## 2181 C.corindum North_Key_Largo   M 5.35   2.76  5.71  8.63       May 2019.0
## 2182 C.corindum North_Key_Largo   F 6.63   2.91  4.79  8.29       May 2019.0
## 2183 C.corindum North_Key_Largo   F 5.96   2.67  4.52  7.66       May 2019.0
## 2184 C.corindum North_Key_Largo   F 7.54   3.56  9.03 12.33       May 2019.0
## 2185 C.corindum North_Key_Largo   M 5.76   2.79  7.43 10.63       May 2019.0
## 2186 C.corindum North_Key_Largo   F 7.62   3.14  6.47  9.83       May 2019.0
## 2187 C.corindum North_Key_Largo   F 7.50   3.24  8.72 11.94       May 2019.0
## 2188 C.corindum North_Key_Largo   F 8.22   3.74  9.87 13.73       May 2019.0
## 2189 C.corindum North_Key_Largo   F 9.78   3.74  9.92 13.49       May 2019.0
## 2190 C.corindum North_Key_Largo   F 6.63   3.08  7.69 10.77       May 2019.0
## 2191 C.corindum North_Key_Largo   F 6.85   3.30  5.73  9.11       May 2019.0
## 2192 C.corindum North_Key_Largo   M 5.92   3.02  8.06 10.91       May 2019.0
## 2193 C.corindum North_Key_Largo   M 5.25   2.64  4.43  7.41       May 2019.0
## 2194 C.corindum North_Key_Largo   M 5.21   2.55  4.23  7.01       May 2019.0
## 2195 C.corindum North_Key_Largo   M 5.93   2.78  7.83 10.63       May 2019.0
## 2196 C.corindum North_Key_Largo   F 7.79   3.75  9.81 13.10       May 2019.0
## 2197 C.corindum North_Key_Largo   M 5.42   2.66  4.51  7.41       May 2019.0
## 2198 C.corindum North_Key_Largo   M 5.98   2.98  7.86 10.87       May 2019.0
## 2199 C.corindum North_Key_Largo   M 5.72   2.75  7.50 10.28       May 2019.0
## 2200 C.corindum North_Key_Largo   M 5.65   2.64  4.69  7.57       May 2019.0
## 2201 C.corindum North_Key_Largo   M 5.73   2.73  7.56 10.58       May 2019.0
## 2202 C.corindum North_Key_Largo   F 6.21   2.96  4.60  7.96       May 2019.0
## 2203 C.corindum North_Key_Largo   M 6.06   3.05  8.42 11.41       May 2019.0
## 2204 C.corindum North_Key_Largo   M 5.62   2.68  4.76  7.61       May 2019.0
## 2205 C.corindum North_Key_Largo   M 5.31   2.50  4.30  7.01       May 2019.0
## 2206 C.corindum North_Key_Largo   M 5.78   2.78  7.69 10.75       May 2019.0
## 2207 C.corindum North_Key_Largo   M 5.50   2.63  7.33 10.10       May 2019.0
## 2208 C.corindum North_Key_Largo   M 5.99   2.95  8.05 11.10       May 2019.0
## 2209 C.corindum North_Key_Largo   F 7.00   2.97  5.01  8.47       May 2019.0
## 2210 C.corindum North_Key_Largo   M 5.32   2.53  4.62  7.35       May 2019.0
## 2211 C.corindum North_Key_Largo   M 5.14   2.35  5.62  8.42       May 2019.0
## 2212 C.corindum North_Key_Largo   M 5.26   2.58  4.20  7.15       May 2019.0
## 2213 C.corindum North_Key_Largo   M 5.34   2.44  4.33  7.04       May 2019.0
## 2214 C.corindum North_Key_Largo   M 5.33   2.46  6.85  9.35       May 2019.0
## 2215 C.corindum North_Key_Largo   M 5.18   2.61  4.47  7.49       May 2019.0
## 2216 C.corindum North_Key_Largo   M 4.98   2.47  4.14  6.89       May 2019.0
## 2217 C.corindum North_Key_Largo   M 5.47   2.60  5.38  8.41       May 2019.0
## 2218 C.corindum North_Key_Largo   M 5.44   2.57  4.65  7.60       May 2019.0
## 2219 C.corindum North_Key_Largo   M 5.73   2.87  7.73 10.69       May 2019.0
## 2220 C.corindum North_Key_Largo   F 5.71   2.73  4.51  7.49       May 2019.0
## 2221 C.corindum North_Key_Largo   F 5.67   2.58  4.44  7.55       May 2019.0
## 2222 C.corindum North_Key_Largo   F 6.85   3.06  4.53  8.26       May 2019.0
## 2223 C.corindum North_Key_Largo   F 8.11   3.58  9.45 12.86       May 2019.0
## 2224 C.corindum North_Key_Largo   M 5.91   2.85  7.61 10.42       May 2019.0
## 2225 C.corindum North_Key_Largo   F 7.76   3.44  5.99  9.68       May 2019.0
## 2226 C.corindum North_Key_Largo   M 5.93   2.84  7.56 10.29       May 2019.0
## 2227 C.corindum North_Key_Largo   F 6.85   2.79  4.77  8.03       May 2019.0
## 2228 C.corindum North_Key_Largo   F 7.07   3.03  5.21  8.29       May 2019.0
## 2229 C.corindum North_Key_Largo   F 7.00   3.12  5.23  8.70       May 2019.0
## 2230 C.corindum North_Key_Largo   F 6.85   3.10  5.65  8.83       May 2019.0
## 2231 C.corindum North_Key_Largo   F 6.03   2.78  4.78  8.05       May 2019.0
## 2232 C.corindum North_Key_Largo   F 6.75   2.87  5.35  8.72       May 2019.0
## 2233 C.corindum North_Key_Largo   F 7.89   3.44  8.95 12.39       May 2019.0
## 2234 C.corindum North_Key_Largo   M 5.72   2.74  5.91  8.62       May 2019.0
## 2235 C.corindum North_Key_Largo   F 6.38   2.93  5.19  8.24       May 2019.0
## 2236 C.corindum North_Key_Largo   F 7.77   3.42  9.07 12.61       May 2019.0
## 2237 C.corindum North_Key_Largo   M 6.30   3.06  7.84 10.76       May 2019.0
## 2238 C.corindum North_Key_Largo   M 5.23   2.37  4.67  7.68       May 2019.0
## 2239 C.corindum North_Key_Largo   F 8.73   3.90 10.42 14.30       May 2019.0
## 2240 C.corindum North_Key_Largo   M 6.73   3.31  8.99 12.06       May 2019.0
## 2241 C.corindum North_Key_Largo   F 6.78   3.01  4.59  8.11       May 2019.0
## 2242 C.corindum North_Key_Largo   F 7.09   3.23  6.19  9.61       May 2019.0
## 2243 C.corindum North_Key_Largo   M 6.17   3.42  8.80 11.94       May 2019.0
## 2244 C.corindum North_Key_Largo   M 6.08   3.03  8.21 11.08       May 2019.0
## 2245 C.corindum North_Key_Largo   F 8.43   3.27  8.68 12.17       May 2019.0
## 2246 C.corindum North_Key_Largo   F 8.73   3.73  9.51 13.01       May 2019.0
## 2247 C.corindum North_Key_Largo   F 8.79   3.73 10.31 13.87       May 2019.0
## 2248 C.corindum North_Key_Largo   F 6.71   3.14  5.35  8.69       May 2019.0
## 2249 C.corindum North_Key_Largo   M 6.13   3.11  8.11 11.14       May 2019.0
## 2250 C.corindum North_Key_Largo   M 6.33   2.84  5.12  8.23       May 2019.0
## 2251 C.corindum North_Key_Largo   F 7.41   3.26  8.23 11.43       May 2019.0
## 2252 C.corindum North_Key_Largo   F 7.11   3.18  6.11  9.59       May 2019.0
## 2253 C.corindum North_Key_Largo   M 5.61   2.63  4.86  7.75       May 2019.0
## 2254 C.corindum North_Key_Largo   M 6.31   3.39  7.94 11.35       May 2019.0
## 2255 C.corindum North_Key_Largo   M 5.32   2.60  4.47  7.36       May 2019.0
## 2256 C.corindum North_Key_Largo   M 5.37   2.75  4.65  7.60       May 2019.0
## 2257 C.corindum North_Key_Largo   F 6.53   2.84  4.42  7.79       May 2019.0
## 2258 C.corindum North_Key_Largo   F 6.39   2.83  4.59  7.75       May 2019.0
## 2259 C.corindum North_Key_Largo   F 6.54   2.88  5.00  8.42       May 2019.0
## 2260 C.corindum North_Key_Largo   M 5.42   2.58  4.97  7.88       May 2019.0
## 2261 C.corindum North_Key_Largo   F 7.08   3.01  5.71  9.02       May 2019.0
## 2262 C.corindum North_Key_Largo   F 6.02   2.80  4.81  7.92       May 2019.0
## 2263 C.corindum North_Key_Largo   M 6.20   3.05  8.04 10.90       May 2019.0
## 2264 C.corindum North_Key_Largo   M 5.97   3.01  8.08 10.97       May 2019.0
## 2265 C.corindum North_Key_Largo   F 8.16   3.50  8.92 12.44       May 2019.0
## 2266 C.corindum North_Key_Largo   F 8.35   3.90  9.53 13.14       May 2019.0
## 2267 C.corindum North_Key_Largo   M 5.60   2.67  4.65  7.89       May 2019.0
## 2268 C.corindum North_Key_Largo   M 6.03   2.79  7.32  9.96       May 2019.0
## 2269 C.corindum North_Key_Largo   F 8.02   3.73  9.65 13.41       May 2019.0
## 2270 C.corindum North_Key_Largo   F 8.28   3.63  9.08 12.60       May 2019.0
## 2271 C.corindum North_Key_Largo   M 6.09   2.90  8.24 11.35       May 2019.0
## 2272 C.corindum North_Key_Largo   M 5.95   2.70  7.65 10.58       May 2019.0
## 2273 C.corindum North_Key_Largo   M 5.40   2.57  4.67  7.48       May 2019.0
## 2274 C.corindum North_Key_Largo   F 7.83   3.42  8.92 12.28       May 2019.0
## 2275 C.corindum North_Key_Largo   F 6.35   2.82  4.84  8.16       May 2019.0
## 2276 C.corindum North_Key_Largo   F 6.72   3.06  5.12  8.63       May 2019.0
## 2277 C.corindum North_Key_Largo   F 8.32   3.33  8.82 12.31       May 2019.0
## 2278 C.corindum North_Key_Largo   F 7.08   2.98  4.99  8.25       May 2019.0
## 2279 C.corindum North_Key_Largo   M 6.02   3.05  8.40 11.35       May 2019.0
## 2280 C.corindum North_Key_Largo   F 6.18   2.78  4.85  8.09       May 2019.0
## 2281 C.corindum North_Key_Largo   F 8.52   3.51  9.63 12.95       May 2019.0
## 2282 C.corindum North_Key_Largo   M 4.98   2.12  3.88  6.52       May 2019.0
## 2283 C.corindum North_Key_Largo   M 5.27   2.58  4.71  7.51       May 2019.0
## 2284 C.corindum North_Key_Largo   M 5.38   2.68  4.98  7.84       May 2019.0
## 2285 C.corindum North_Key_Largo   F 8.23   3.57  9.52 12.80       May 2019.0
## 2286 C.corindum North_Key_Largo   F 7.39   3.15  8.47 11.62       May 2019.0
## 2287 C.corindum North_Key_Largo   M 5.15   2.43  4.20  6.81       May 2019.0
## 2288 C.corindum North_Key_Largo   M 5.93   2.92  7.94 10.86       May 2019.0
## 2289 C.corindum North_Key_Largo   F 6.05   2.90  4.69  7.93       May 2019.0
## 2290 C.corindum North_Key_Largo   M 6.01   3.07  8.20 11.22       May 2019.0
## 2291 C.corindum North_Key_Largo   M 6.22   3.24  8.32 11.46       May 2019.0
## 2292 C.corindum North_Key_Largo   M 5.83   2.79  7.17 10.15       May 2019.0
## 2293 C.corindum North_Key_Largo   F 8.56   3.62  9.23 12.44       May 2019.0
## 2294 C.corindum North_Key_Largo   F 8.22   3.73  9.36 12.69       May 2019.0
## 2295 C.corindum North_Key_Largo   M 4.94   2.52  4.25  6.83       May 2019.0
## 2296 C.corindum North_Key_Largo   F 7.16   3.34  5.11  8.80       May 2019.0
## 2297 C.corindum North_Key_Largo   F 7.60   3.20  8.69 12.19       May 2019.0
## 2298 C.corindum North_Key_Largo   M 5.57   2.68  4.66  7.64       May 2019.0
## 2299 C.corindum North_Key_Largo   M 5.81   2.68  4.51  7.35       May 2019.0
## 2300 C.corindum North_Key_Largo   F 7.28   3.23  5.45  9.14       May 2019.0
## 2301 C.corindum North_Key_Largo   F 6.17   2.77  4.89  8.57       May 2019.0
## 2302 C.corindum North_Key_Largo   F 8.75   3.73  9.47 13.07       May 2019.0
## 2303 C.corindum North_Key_Largo   M 5.77   2.82  5.36  8.36       May 2019.0
## 2304 C.corindum North_Key_Largo   F 8.17   3.65  9.16 12.56       May 2019.0
## 2305 C.corindum North_Key_Largo   M 6.11   2.63  4.79  7.80       May 2019.0
## 2306 C.corindum North_Key_Largo   F 6.19   2.84  4.61  7.94       May 2019.0
## 2307 C.corindum North_Key_Largo   M 5.65   2.61  4.84  7.80       May 2019.0
## 2308 C.corindum North_Key_Largo   M 5.74   2.91  8.26 11.18       May 2019.0
## 2309 C.corindum North_Key_Largo   M 5.29   2.39  3.99  6.78       May 2019.0
## 2310 C.corindum North_Key_Largo   M 5.63   2.90  8.40 11.29       May 2019.0
## 2311 C.corindum North_Key_Largo   M 5.89   2.95  8.03 10.77       May 2019.0
## 2312 C.corindum North_Key_Largo   M 5.91   2.84  7.23 10.09       May 2019.0
## 2313 C.corindum North_Key_Largo   F 8.73   3.65  9.64 12.92       May 2019.0
## 2314 C.corindum North_Key_Largo   M 5.53   2.68  5.33  8.47       May 2019.0
## 2315 C.corindum North_Key_Largo   F 6.89   2.95  4.64  7.71       May 2019.0
## 2316 C.corindum North_Key_Largo   M 6.09   2.84  7.42 10.38       May 2019.0
## 2317 C.corindum North_Key_Largo   M 5.76   2.65  4.48  7.35       May 2019.0
## 2318 C.corindum North_Key_Largo   F 7.17   3.09  5.85  9.35       May 2019.0
## 2319 C.corindum North_Key_Largo   M 5.79   2.52  5.18  8.25       May 2019.0
## 2320 C.corindum North_Key_Largo   M 5.51   2.59  4.77  7.56       May 2019.0
## 2321 C.corindum North_Key_Largo   F 6.87   3.20  8.61 11.87       May 2019.0
## 2322 C.corindum North_Key_Largo   M 5.35   2.57  4.30  7.11       May 2019.0
## 2323 C.corindum North_Key_Largo   F 5.92   2.75  4.59  7.71       May 2019.0
## 2324 C.corindum North_Key_Largo   M 5.43   2.63  4.26  7.11       May 2019.0
## 2325 C.corindum North_Key_Largo   M 5.04   2.39  3.98  6.80       May 2019.0
## 2326 C.corindum North_Key_Largo   M 4.91   2.24  3.91  6.70       May 2019.0
## 2327 C.corindum North_Key_Largo   M 5.18   2.33  4.03  6.73       May 2019.0
## 2328 C.corindum North_Key_Largo   M 5.97   2.92  7.90 10.89       May 2019.0
## 2329 C.corindum North_Key_Largo   M 5.43   2.75  4.75  8.11       May 2019.0
## 2330 C.corindum North_Key_Largo   M 5.75   2.72  4.87  7.79       May 2019.0
## 2331 C.corindum North_Key_Largo   M 5.24   2.64  4.12  7.09       May 2019.0
## 2332 C.corindum North_Key_Largo   M 5.99   2.67  4.28  7.27       May 2019.0
## 2333 C.corindum North_Key_Largo   M 6.22   3.09  8.24 11.48       May 2019.0
## 2334 C.corindum North_Key_Largo   F 8.12   3.72  9.08 12.61       May 2019.0
## 2335 C.corindum North_Key_Largo   F 7.53   3.67  9.57 12.90       May 2019.0
## 2336 C.corindum North_Key_Largo   F 6.54   3.07  7.63 10.85       May 2019.0
## 2337 C.corindum North_Key_Largo   M 6.53   3.34  9.46 12.50       May 2019.0
## 2338 C.corindum North_Key_Largo   F 6.33   2.73  5.18  8.80       May 2019.0
## 2339 C.corindum North_Key_Largo   M 5.92   3.17  8.55 11.76       May 2019.0
## 2340 C.corindum North_Key_Largo   F 9.11   3.69  9.84 13.46       May 2019.0
## 2341 C.corindum North_Key_Largo   F 8.15   3.43  9.08 12.23       May 2019.0
## 2342 C.corindum North_Key_Largo   M 6.02   3.62 10.07 13.23       May 2019.0
## 2343 C.corindum North_Key_Largo   F 7.98   3.33  8.83 12.04       May 2019.0
## 2344 C.corindum North_Key_Largo   M 5.96   2.81  7.79 10.71       May 2019.0
## 2345 C.corindum North_Key_Largo   F 7.94   3.64  9.61 13.23       May 2019.0
## 2346 C.corindum North_Key_Largo   M 6.41   3.06  8.31 11.68       May 2019.0
## 2347 C.corindum North_Key_Largo   M 4.96   2.65  6.97  9.80       May 2019.0
## 2348 C.corindum North_Key_Largo   F 7.25   3.23  8.40 11.60       May 2019.0
## 2349 C.corindum North_Key_Largo   M 5.96   2.95  7.89 10.83       May 2019.0
## 2350 C.corindum North_Key_Largo   M 6.16   2.84  7.89 10.89       May 2019.0
## 2351 C.corindum North_Key_Largo   F 6.62   3.82 10.01 13.65       May 2019.0
## 2352 C.corindum North_Key_Largo   M 5.75   2.97  9.03 10.96       May 2019.0
## 2353 C.corindum North_Key_Largo   F 8.43   3.54  9.34 12.55       May 2019.0
## 2354 C.corindum North_Key_Largo   M 6.19   3.08  8.16 11.37       May 2019.0
## 2355 C.corindum North_Key_Largo   M 5.40   2.61  4.22  7.14       May 2019.0
## 2356 C.corindum North_Key_Largo   F 9.84   4.11 10.91 15.02       May 2019.0
## 2357 C.corindum North_Key_Largo   M 6.05   3.03  7.85 10.85       May 2019.0
## 2358 C.corindum North_Key_Largo   M 5.77   3.04  7.74 10.84       May 2019.0
## 2359 C.corindum North_Key_Largo   M 5.95   2.82  7.63 10.57       May 2019.0
## 2360 C.corindum North_Key_Largo   F 6.22   2.64  5.07  8.21       May 2019.0
## 2361 C.corindum North_Key_Largo   M 5.81   2.85  7.36  9.92       May 2019.0
## 2362 C.corindum North_Key_Largo   F 7.77   3.36  8.77 12.28       May 2019.0
## 2363 C.corindum North_Key_Largo   F 8.33   3.42  8.94 12.64       May 2019.0
## 2364 C.corindum North_Key_Largo   F 8.37   3.49  9.35 12.71       May 2019.0
## 2365 C.corindum North_Key_Largo   F 7.19   3.17  5.54  8.91       May 2019.0
## 2366 C.corindum North_Key_Largo   F 8.17   3.31  8.73 12.37       May 2019.0
## 2367 C.corindum North_Key_Largo   M 5.61   2.79  6.00  9.00       May 2019.0
## 2368 C.corindum North_Key_Largo   F 7.02   3.22  5.13  8.61       May 2019.0
## 2369 C.corindum  Plantation_Key   M 5.68   2.73  4.43  7.45       May 2019.0
## 2370 C.corindum  Plantation_Key   M 5.57   2.58  7.07  9.84       May 2019.0
## 2371 C.corindum  Plantation_Key   M 5.08   2.27  3.48  6.11       May 2019.0
## 2372 C.corindum  Plantation_Key   M 6.01   3.22  8.72 11.55       May 2019.0
## 2373 C.corindum  Plantation_Key   M 6.26   3.15  7.99 11.20       May 2019.0
## 2374 C.corindum  Plantation_Key   F 8.50   3.69  9.52 13.16       May 2019.0
## 2375 C.corindum  Plantation_Key   F 6.41   3.14  5.73  8.94       May 2019.0
## 2376 C.corindum  Plantation_Key   M 5.20   2.47  4.09  7.00       May 2019.0
## 2377 C.corindum  Plantation_Key   F 6.58   2.86  5.10  8.48       May 2019.0
## 2378 C.corindum  Plantation_Key   F 6.37   2.89  4.88  8.20       May 2019.0
## 2379 C.corindum  Plantation_Key   F 5.90   2.69  4.89  7.98       May 2019.0
## 2380 C.corindum  Plantation_Key   M 6.37   2.96  8.23 11.22       May 2019.0
## 2381 C.corindum  Plantation_Key   M 5.21   2.47  3.95  6.72       May 2019.0
## 2382 C.corindum  Plantation_Key   M 5.23   2.49  4.51  7.47       May 2019.0
## 2383 C.corindum  Plantation_Key   F 6.10   2.88  4.62  8.15       May 2019.0
## 2384 C.corindum  Plantation_Key   F 7.34   3.05  5.01  8.52       May 2019.0
## 2385 C.corindum  Plantation_Key   F 6.73   3.05  4.89  8.47       May 2019.0
## 2386 C.corindum  Plantation_Key   M 5.01   2.27  4.17  6.86       May 2019.0
## 2387 C.corindum  Plantation_Key   M 5.29   2.49  4.09  7.05       May 2019.0
## 2388 C.corindum  Plantation_Key   M 5.63   2.72  7.30 10.17       May 2019.0
## 2389 C.corindum  Plantation_Key   M 5.37   2.63  4.88  7.78       May 2019.0
## 2390 C.corindum  Plantation_Key   M 6.14   2.96  7.90 11.18       May 2019.0
## 2391 C.corindum  Plantation_Key   M 6.17   2.93  7.69 11.07       May 2019.0
## 2392 C.corindum  Plantation_Key   F 6.72   2.94  5.29  8.39       May 2019.0
## 2393 C.corindum  Plantation_Key   M 5.42   2.63  4.06  6.97       May 2019.0
## 2394 C.corindum  Plantation_Key   M 5.98   3.07  7.75 10.84       May 2019.0
## 2395 C.corindum  Plantation_Key   F 8.56   3.79 10.06 13.66       May 2019.0
## 2396 C.corindum  Plantation_Key   M 5.39   2.67  4.47  7.53       May 2019.0
## 2397 C.corindum  Plantation_Key   M 5.34   2.75  4.34  7.51       May 2019.0
## 2398 C.corindum  Plantation_Key   F 5.93   2.82  4.34  7.53       May 2019.0
## 2399 C.corindum  Plantation_Key   F 5.93   2.75  4.55  7.69       May 2019.0
## 2400 C.corindum  Plantation_Key   F 8.07   3.48  9.28 12.55       May 2019.0
## 2401 C.corindum  Plantation_Key   F 7.00   3.05  5.40  8.97       May 2019.0
## 2402 C.corindum  Plantation_Key   M 5.54   2.59  4.49  7.39       May 2019.0
## 2403  K.elegans     Gainesville   F 7.81   3.58  9.57 13.13   October 2019.0
## 2404  K.elegans     Gainesville   M 6.54   3.36  8.93 12.33   October 2019.0
## 2405  K.elegans     Gainesville   M 5.64   3.20  8.34 11.50   October 2019.0
## 2406  K.elegans     Gainesville   F 7.86   3.59  9.82 13.37   October 2019.0
## 2407  K.elegans     Gainesville   F 8.57   3.90 11.30 14.72   October 2019.0
## 2408  K.elegans     Gainesville   M 5.60   2.74  7.07 10.00   October 2019.0
## 2409  K.elegans     Gainesville   M 5.98   3.08  8.61 11.28   October 2019.0
## 2410  K.elegans     Gainesville   M 6.16   3.30  8.42 11.70   October 2019.0
## 2411  K.elegans     Gainesville   M 5.72   3.18  8.53 11.55   October 2019.0
## 2412  K.elegans     Gainesville   F 7.96   3.51  9.45 13.02   October 2019.0
## 2413  K.elegans     Gainesville   F 6.78   3.25  9.03 11.85   October 2019.0
## 2414  K.elegans     Gainesville   F 7.86   3.63  9.89 13.68   October 2019.0
## 2415  K.elegans     Gainesville   M 5.86   3.09  4.89  8.09   October 2019.0
## 2416  K.elegans     Gainesville   M 5.90   2.87  5.20  8.18   October 2019.0
## 2417  K.elegans     Gainesville   M 5.79   3.37  9.34 12.55   October 2019.0
## 2418  K.elegans     Gainesville   M 5.60   3.41  9.25 12.19   October 2019.0
## 2419  K.elegans       Homestead   M 6.20   3.31  8.85 12.20   October 2019.0
## 2420  K.elegans       Homestead   F 7.94   3.75 10.28 13.41   October 2019.0
## 2421  K.elegans       Homestead   M 5.93   3.21  8.53 11.82   October 2019.0
## 2422  K.elegans       Homestead   M 5.92   3.19  8.71 11.52   October 2019.0
## 2423  K.elegans       Homestead   F 8.37   3.80 10.22 14.17   October 2019.0
## 2424  K.elegans       Homestead   M 5.69   3.10  8.70 11.60   October 2019.0
## 2425  K.elegans       Homestead   F 7.88   4.07 10.46 14.08   October 2019.0
## 2426  K.elegans       Homestead   M 5.95   3.03  8.89 11.69   October 2019.0
## 2427  K.elegans       Homestead   M 5.84   3.15  8.74 11.55   October 2019.0
## 2428  K.elegans       Homestead   F 8.54   3.59  9.63 13.36   October 2019.0
## 2429  K.elegans       Homestead   M 5.86   3.12  8.64 11.82   October 2019.0
## 2430  K.elegans       Homestead   F 8.02   3.69  9.86 13.57   October 2019.0
## 2431  K.elegans       Homestead   F 8.33   3.74  9.30 12.73   October 2019.0
## 2432  K.elegans       Homestead   F 7.96   3.67 10.00 13.34   October 2019.0
## 2433  K.elegans       Homestead   F 7.98   3.66 10.23 13.60   October 2019.0
## 2434  K.elegans       Homestead   F 6.29   2.62  4.78  8.52   October 2019.0
## 2435  K.elegans       Homestead   M 5.38   3.00  8.22 10.99   October 2019.0
## 2436  K.elegans       Homestead   M 5.88   3.15  8.60 11.69   October 2019.0
## 2437  K.elegans       Homestead   M 6.00   3.23  9.32 12.26   October 2019.0
## 2438  K.elegans       Homestead   M 6.08   3.05  8.29 11.20   October 2019.0
## 2439  K.elegans       Homestead   M 5.74   3.15  8.74 11.78   October 2019.0
## 2440  K.elegans       Homestead   M 5.57   3.04  8.33 11.11   October 2019.0
## 2441  K.elegans       Homestead   M 5.70   3.23  8.54 11.59   October 2019.0
## 2442  K.elegans       Homestead   M 6.12   3.26  9.14 12.22   October 2019.0
## 2443  K.elegans       Homestead   M 6.06   3.29  8.80 12.10   October 2019.0
## 2444  K.elegans       Homestead   M 6.14   3.19  9.02 12.10   October 2019.0
## 2445  K.elegans       Homestead   M 5.88   3.39  9.00 12.18   October 2019.0
## 2446  K.elegans       Homestead   M 5.32   2.87  7.66 10.65   October 2019.0
## 2447  K.elegans       Homestead   M 5.88   2.89  7.94 10.62   October 2019.0
## 2448  K.elegans       Homestead   M 5.58   3.11  8.49 11.18   October 2019.0
## 2449  K.elegans       Homestead   F 7.97   3.91  9.98 13.19   October 2019.0
## 2450  K.elegans       Homestead   M 5.75   3.32  9.04 11.98   October 2019.0
## 2451  K.elegans       Homestead   M 5.27   3.16  8.45 11.21   October 2019.0
## 2452  K.elegans       Homestead   F 7.61   3.46  9.41 12.90   October 2019.0
## 2453  K.elegans       Homestead   M 5.50   3.01  8.61 11.37   October 2019.0
## 2454 C.corindum       Key_Largo   F 8.17   3.18  8.37 11.91   October 2019.0
## 2455 C.corindum       Key_Largo   F 7.78   3.44  8.82 11.79   October 2019.0
## 2456 C.corindum       Key_Largo   M 5.56   2.76  4.59  7.77   October 2019.0
## 2457 C.corindum       Key_Largo   F 7.93   3.74  9.31 13.21   October 2019.0
## 2458 C.corindum       Key_Largo   M 6.63   3.07  7.87 11.37   October 2019.0
## 2459 C.corindum       Key_Largo   F 8.56   3.55  9.12 12.58   October 2019.0
## 2460 C.corindum       Key_Largo   M 6.58   3.33  9.56 12.32   October 2019.0
## 2461 C.corindum       Key_Largo   M 6.25   3.37  8.67 11.84   October 2019.0
## 2462 C.corindum       Key_Largo   F 6.95   3.70  9.47 13.09   October 2019.0
## 2463 C.corindum       Key_Largo   M 3.60   2.37  7.13  9.19   October 2019.0
## 2464 C.corindum       Key_Largo   M 5.91   2.86  7.62 10.64   October 2019.0
## 2465 C.corindum       Key_Largo   F 9.66   3.89  9.95 13.57   October 2019.0
## 2466 C.corindum       Key_Largo   M 6.34   3.43  8.32 11.36   October 2019.0
## 2467 C.corindum       Key_Largo   F 7.58   3.23  8.24 11.90   October 2019.0
## 2468 C.corindum       Key_Largo   F 7.68   3.25  8.39 11.53   October 2019.0
## 2469 C.corindum       Key_Largo   F 7.33   3.23  8.13 11.92   October 2019.0
## 2470  K.elegans     Lake_Placid   M 5.30   3.16  8.59 11.62   October 2019.0
## 2471  K.elegans     Lake_Placid   F 7.58   3.10  8.07 11.40   October 2019.0
## 2472  K.elegans     Lake_Placid   F 7.75   3.60  9.68 13.39   October 2019.0
## 2473  K.elegans     Lake_Placid   M 5.61   3.02  8.38 11.54   October 2019.0
## 2474  K.elegans     Lake_Placid   M 5.92   3.21  8.33 11.33   October 2019.0
## 2475  K.elegans     Lake_Placid   F 6.97   3.64 10.09 13.49   October 2019.0
## 2476  K.elegans     Lake_Placid   F 7.64   3.51  9.50 13.20   October 2019.0
## 2477  K.elegans     Lake_Placid   F 8.79   3.96 10.25 14.29   October 2019.0
## 2478  K.elegans     Lake_Placid   M 5.83   3.22  8.29 11.55   October 2019.0
## 2479  K.elegans     Lake_Placid   F 7.99   3.65 10.04 13.85   October 2019.0
## 2480  K.elegans     Lake_Placid   M 5.59   3.37  8.71 11.86   October 2019.0
## 2481  K.elegans     Lake_Placid   M 5.58   3.23  8.46 11.53   October 2019.0
## 2482  K.elegans     Lake_Placid   F 7.64   3.51  9.40 12.83   October 2019.0
## 2483  K.elegans     Lake_Placid   F 7.04   3.56  9.86 12.73   October 2019.0
## 2484  K.elegans     Lake_Placid   F 7.35   3.29  8.79 12.27   October 2019.0
## 2485  K.elegans     Lake_Placid   M 5.41   2.90  8.04 10.86   October 2019.0
## 2486  K.elegans     Lake_Placid   F 8.51   3.85 10.32 14.10   October 2019.0
## 2487  K.elegans     Lake_Placid   F 7.72   3.54  9.30 12.79   October 2019.0
## 2488  K.elegans     Lake_Placid   M 5.69   3.33  9.49 12.73   October 2019.0
## 2489  K.elegans     Lake_Placid   M 5.74   2.99  8.38 11.33   October 2019.0
## 2490  K.elegans     Lake_Placid   F 7.97   3.86  9.85 13.47   October 2019.0
## 2491  K.elegans     Lake_Placid   M 5.73   3.27  9.02 12.22   October 2019.0
## 2492  K.elegans     Lake_Placid   M 5.46   3.04  8.09 11.18   October 2019.0
## 2493  K.elegans     Lake_Placid   F 7.86   3.28  8.98 12.41   October 2019.0
## 2494  K.elegans     Lake_Placid   M 5.87   3.23  8.59 11.76   October 2019.0
## 2495  K.elegans     Lake_Placid   M 5.81   3.18  8.57 11.66   October 2019.0
## 2496  K.elegans     Lake_Placid   F 8.19   3.58  9.47 13.32   October 2019.0
## 2497  K.elegans     Lake_Placid   M 5.78   3.19  8.86 11.93   October 2019.0
## 2498  K.elegans     Lake_Placid   F 7.57   3.61  9.94 13.58   October 2019.0
## 2499  K.elegans     Lake_Placid   M 5.55   2.98  8.23 11.32   October 2019.0
## 2500  K.elegans     Lake_Placid   F 7.79   3.72  9.73 13.44   October 2019.0
## 2501  K.elegans     Lake_Placid   F 7.70   3.27  9.00 12.50   October 2019.0
## 2502  K.elegans     Lake_Placid   M 5.92   3.34  8.90 11.94   October 2019.0
## 2503  K.elegans     Lake_Placid   M 6.08   3.41  8.60 11.88   October 2019.0
## 2504  K.elegans     Lake_Placid   F 7.43   3.51  9.38 12.71   October 2019.0
## 2505  K.elegans     Lake_Placid   F 7.97   3.47  9.65 13.23   October 2019.0
## 2506  K.elegans     Lake_Placid   M 5.70   2.71  7.56 10.58   October 2019.0
## 2507  K.elegans     Lake_Placid   M 5.45   2.74  7.52 10.31   October 2019.0
## 2508  K.elegans     Lake_Placid   M 5.66   3.08  7.97 10.97   October 2019.0
## 2509  K.elegans     Lake_Placid   M 6.15   3.27  8.47 11.54   October 2019.0
## 2510  K.elegans     Lake_Placid   M 6.20   3.12  8.73 11.82   October 2019.0
## 2511  K.elegans     Lake_Placid   M 5.62   3.07  8.09 11.08   October 2019.0
## 2512  K.elegans     Lake_Placid   F 7.46   3.13  8.26 11.36   October 2019.0
## 2513  K.elegans      Lake_Wales   F 6.97   3.45  9.61 12.86   October 2019.0
## 2514  K.elegans      Lake_Wales   F 7.62   3.49  9.78 13.42   October 2019.0
## 2515  K.elegans      Lake_Wales   F 8.27   3.77 10.10 13.86   October 2019.0
## 2516  K.elegans      Lake_Wales   M 5.53   3.12  8.19 11.19   October 2019.0
## 2517  K.elegans      Lake_Wales   F 8.18   3.73 10.05 13.89   October 2019.0
## 2518  K.elegans      Lake_Wales   M 6.16   3.22  8.75 11.93   October 2019.0
## 2519  K.elegans      Lake_Wales   F 7.30   3.70 10.42 13.97   October 2019.0
## 2520  K.elegans      Lake_Wales   F 7.72   3.54 10.05 13.24   October 2019.0
## 2521  K.elegans      Lake_Wales   M 6.07   3.09  8.31 11.48   October 2019.0
## 2522  K.elegans      Lake_Wales   M 5.54   2.64  5.53  8.33   October 2019.0
## 2523  K.elegans      Lake_Wales   M 5.51   3.18  8.44 11.46   October 2019.0
## 2524  K.elegans      Lake_Wales   F 8.10   3.90 10.31 14.12   October 2019.0
## 2525  K.elegans      Lake_Wales   M 5.85   3.20  8.94 12.08   October 2019.0
## 2526  K.elegans      Lake_Wales   F 8.11   3.68  9.99 13.67   October 2019.0
## 2527  K.elegans      Lake_Wales   F 7.52   3.39  9.67 13.10   October 2019.0
## 2528  K.elegans      Lake_Wales   M 5.27   2.87  8.55 11.31   October 2019.0
## 2529  K.elegans      Lake_Wales   M 5.61   2.98  8.03 11.21   October 2019.0
## 2530  K.elegans      Lake_Wales   M 5.76   3.23  8.37 11.35   October 2019.0
## 2531  K.elegans      Lake_Wales   F 8.25   3.82 10.40 14.32   October 2019.0
## 2532  K.elegans      Lake_Wales   F 6.58   3.02  5.57  9.10   October 2019.0
## 2533  K.elegans      Lake_Wales   M 5.65   3.09  8.35 11.43   October 2019.0
## 2534  K.elegans      Lake_Wales   F 7.92   3.49  9.17 12.87   October 2019.0
## 2535  K.elegans      Lake_Wales   F 6.98   3.88  9.70 13.06   October 2019.0
## 2536  K.elegans        Leesburg   F 6.83   3.44  8.54 12.25   October 2019.0
## 2537  K.elegans        Leesburg   F 8.27   3.71 10.48 14.35   October 2019.0
## 2538  K.elegans        Leesburg   F 8.13   3.71  9.98 13.78   October 2019.0
## 2539  K.elegans        Leesburg   F 8.15   3.47  9.36 13.06   October 2019.0
## 2540  K.elegans        Leesburg   F 8.12   3.79  9.92 13.78   October 2019.0
## 2541  K.elegans        Leesburg   M 5.29   2.55  4.39  7.34   October 2019.0
## 2542  K.elegans        Leesburg   M 5.22   2.80  7.42 10.60   October 2019.0
## 2543  K.elegans        Leesburg   M 5.61   2.81  6.07  9.31   October 2019.0
## 2544  K.elegans        Leesburg   F 7.49   3.25  8.54 11.88   October 2019.0
## 2545  K.elegans        Leesburg   M 5.65   3.06  8.46 11.52   October 2019.0
## 2546  K.elegans        Leesburg   M 5.67   2.94  7.15 10.36   October 2019.0
## 2547  K.elegans        Leesburg   F 8.21   3.90 10.35 13.85   October 2019.0
## 2548  K.elegans        Leesburg   M 5.53   2.99  8.42 11.40   October 2019.0
## 2549  K.elegans        Leesburg   M 5.85   2.99  8.04 11.10   October 2019.0
## 2550  K.elegans        Leesburg   M 5.23   2.75  7.36 10.14   October 2019.0
## 2551  K.elegans        Leesburg   F 8.20   3.66  9.55 13.17   October 2019.0
## 2552  K.elegans        Leesburg   M 5.97   2.69  6.04  8.88   October 2019.0
## 2553  K.elegans        Leesburg   M 5.76   3.28  8.84 11.73   October 2019.0
## 2554  K.elegans        Leesburg   F 7.97   3.49  9.98 13.80   October 2019.0
## 2555  K.elegans        Leesburg   F 7.59   3.65  9.85 12.89   October 2019.0
## 2556  K.elegans        Leesburg   M 6.05   3.12  8.66 11.77   October 2019.0
## 2557  K.elegans        Leesburg   F 8.15   3.62  9.81 13.32   October 2019.0
## 2558  K.elegans        Leesburg   F 8.42   3.91 10.56 14.66   October 2019.0
## 2559  K.elegans        Leesburg   F 7.79   3.69  9.86 13.21   October 2019.0
## 2560  K.elegans        Leesburg   M 5.31   2.88  7.37 10.29   October 2019.0
## 2561  K.elegans        Leesburg   M 6.04   3.25  8.34 11.57   October 2019.0
## 2562 C.corindum North_Key_Largo   F 8.10   3.42  8.88 12.66   October 2019.0
## 2563 C.corindum North_Key_Largo   M 6.23   2.94  7.76 10.94   October 2019.0
## 2564 C.corindum North_Key_Largo   F 8.26   3.77 10.11 13.74   October 2019.0
## 2565 C.corindum North_Key_Largo   F 8.74   3.43  8.99 12.55   October 2019.0
## 2566 C.corindum North_Key_Largo   M 5.92   3.07  8.41 11.38   October 2019.0
## 2567 C.corindum North_Key_Largo   F 8.80   3.51  9.27 12.74   October 2019.0
## 2568 C.corindum North_Key_Largo   F 6.53   3.18  5.89  9.30   October 2019.0
## 2569 C.corindum North_Key_Largo   M 5.79   2.78  7.88 10.34   October 2019.0
## 2570 C.corindum North_Key_Largo   M 6.60   2.89  7.98 11.27   October 2019.0
## 2571 C.corindum North_Key_Largo   M 6.31   3.09  8.15 11.11   October 2019.0
## 2572 C.corindum North_Key_Largo   M 6.62   2.99  8.62 11.57   October 2019.0
## 2573 C.corindum North_Key_Largo   F 8.67   3.52  9.46 13.17   October 2019.0
## 2574 C.corindum North_Key_Largo   M 6.19   2.84  7.69 10.69   October 2019.0
## 2575 C.corindum North_Key_Largo   M 6.06   2.77  5.44  8.43   October 2019.0
## 2576 C.corindum North_Key_Largo   M 6.56   3.06  8.04 10.92   October 2019.0
## 2577 C.corindum North_Key_Largo   F 8.98   3.68  9.06 12.81   October 2019.0
## 2578 C.corindum North_Key_Largo   M 5.42   2.57  4.51  7.69   October 2019.0
## 2579 C.corindum North_Key_Largo   M 5.63   2.77  5.22  8.44   October 2019.0
## 2580 C.corindum North_Key_Largo   M 6.03   3.04  8.25 11.01   October 2019.0
## 2581 C.corindum North_Key_Largo   M 6.22   3.08  8.29 10.99   October 2019.0
## 2582 C.corindum North_Key_Largo   F 6.93   3.07  5.38  8.57   October 2019.0
## 2583 C.corindum North_Key_Largo   M 5.75   2.73  7.82 10.43   October 2019.0
## 2584 C.corindum North_Key_Largo   F 7.51   3.00  8.21 11.68   October 2019.0
## 2585 C.corindum North_Key_Largo   F 6.86   3.06  5.86  9.31   October 2019.0
## 2586 C.corindum North_Key_Largo   F 7.79   3.45  9.24 12.54   October 2019.0
## 2587 C.corindum North_Key_Largo   M 6.21   2.94  6.89  9.95   October 2019.0
## 2588 C.corindum North_Key_Largo   M 5.78   2.81  7.14 10.16   October 2019.0
## 2589 C.corindum North_Key_Largo   F 8.86   3.75  9.60 13.42   October 2019.0
## 2590 C.corindum North_Key_Largo   M 6.46   3.37  8.66 11.77   October 2019.0
## 2591 C.corindum North_Key_Largo   M 5.12   2.35  3.86  6.85   October 2019.0
## 2592 C.corindum North_Key_Largo   F 9.07   3.66  9.48 13.11   October 2019.0
## 2593 C.corindum North_Key_Largo   F 8.57   3.59  8.91 12.73   October 2019.0
## 2594 C.corindum North_Key_Largo   M 5.48   2.92  7.85 10.66   October 2019.0
## 2595 C.corindum North_Key_Largo   M 6.34   2.91  8.08 11.25   October 2019.0
## 2596 C.corindum North_Key_Largo   F 7.66   3.16  8.36 11.67   October 2019.0
## 2597 C.corindum North_Key_Largo   F 8.64   3.99  9.71 13.56   October 2019.0
## 2598 C.corindum North_Key_Largo   F 9.09   3.66  9.75 13.43   October 2019.0
## 2599 C.corindum North_Key_Largo   F 7.79   3.37  8.52 12.15   October 2019.0
## 2600 C.corindum North_Key_Largo   F 8.26   3.48  9.41 13.56   October 2019.0
## 2601 C.corindum North_Key_Largo   F 8.77   3.51  9.26 12.35   October 2019.0
## 2602 C.corindum North_Key_Largo   F 5.83   2.68  4.53  7.45   October 2019.0
## 2603 C.corindum North_Key_Largo   F 9.07   3.67  9.91 13.69   October 2019.0
## 2604 C.corindum North_Key_Largo   F 8.22   3.50  8.73 12.27   October 2019.0
## 2605 C.corindum North_Key_Largo   F 7.37   3.25  6.22  9.77   October 2019.0
## 2606 C.corindum North_Key_Largo   F 8.40   3.46  9.33 12.94   October 2019.0
## 2607 C.corindum North_Key_Largo   F 8.50   3.75  9.46 13.32   October 2019.0
## 2608 C.corindum North_Key_Largo   M 6.03   3.08  7.77 10.65   October 2019.0
## 2609 C.corindum North_Key_Largo   M 6.23   3.10  8.29 11.01   October 2019.0
## 2610 C.corindum North_Key_Largo   F 9.25   3.93 10.08 13.78   October 2019.0
## 2611 C.corindum North_Key_Largo   M 5.56   2.67  7.25 10.31   October 2019.0
## 2612 C.corindum North_Key_Largo   M 6.60   3.23  8.34 11.71   October 2019.0
## 2613 C.corindum North_Key_Largo   M 6.16   3.10  8.34 11.57   October 2019.0
## 2614 C.corindum North_Key_Largo   M 5.81   3.18  7.82 10.83   October 2019.0
## 2615 C.corindum North_Key_Largo   M 6.28   3.11  8.59 11.75   October 2019.0
## 2616 C.corindum North_Key_Largo   F 6.56   3.19  8.32 11.34   October 2019.0
## 2617 C.corindum North_Key_Largo   M 5.95   3.05  8.21 11.33   October 2019.0
## 2618 C.corindum North_Key_Largo   F 8.85   3.30  8.85 12.36   October 2019.0
## 2619 C.corindum North_Key_Largo   M 6.20   3.13  8.35 11.47   October 2019.0
## 2620 C.corindum North_Key_Largo   F 9.24   3.99 10.05 13.42   October 2019.0
## 2621 C.corindum North_Key_Largo   M 6.66   3.23  8.63 11.63   October 2019.0
## 2622 C.corindum North_Key_Largo   F 9.35   3.78 10.19 14.01   October 2019.0
## 2623 C.corindum North_Key_Largo   M 6.44   3.29  8.69 11.64   October 2019.0
## 2624 C.corindum North_Key_Largo   M 5.69   2.88  7.83 10.83   October 2019.0
## 2625 C.corindum North_Key_Largo   M 6.17   3.24  8.40 11.61   October 2019.0
## 2626 C.corindum North_Key_Largo   M 6.49   3.29  8.87 12.41   October 2019.0
## 2627 C.corindum North_Key_Largo   M 6.84   3.32  8.23 11.38   October 2019.0
## 2628 C.corindum North_Key_Largo   F 7.97   3.33  8.09 11.76   October 2019.0
## 2629 C.corindum North_Key_Largo   M 5.39   2.89  7.61 10.10   October 2019.0
## 2630 C.corindum North_Key_Largo   F 8.61   3.68  9.53 13.47   October 2019.0
## 2631 C.corindum North_Key_Largo   M 5.73   2.85  7.25 10.10   October 2019.0
## 2632 C.corindum North_Key_Largo   M 5.94   3.07  7.99 10.94   October 2019.0
## 2633 C.corindum North_Key_Largo   M 5.42   2.89  8.59 11.97   October 2019.0
## 2634 C.corindum North_Key_Largo   M 5.70   2.74  5.23  8.33   October 2019.0
## 2635 C.corindum North_Key_Largo   M 5.66   2.65  4.49  7.30   October 2019.0
## 2636 C.corindum North_Key_Largo   F 6.89   2.95  8.13 11.14   October 2019.0
## 2637 C.corindum North_Key_Largo   M 5.58   2.40  4.38  7.16   October 2019.0
## 2638 C.corindum North_Key_Largo   F 7.98   3.56  9.41 12.68   October 2019.0
## 2639 C.corindum North_Key_Largo   F 8.43   3.32  8.88 12.02   October 2019.0
## 2640 C.corindum North_Key_Largo   M 5.08   2.54  4.11  6.92   October 2019.0
## 2641 C.corindum North_Key_Largo   M 5.41   2.52  5.14  7.79   October 2019.0
## 2642 C.corindum North_Key_Largo   M 5.48   2.64  4.54  7.54   October 2019.0
## 2643 C.corindum  Plantation_Key   F 8.26   3.33  6.94 10.92   October 2019.0
## 2644 C.corindum  Plantation_Key   F 7.17   3.09  6.10  9.65   October 2019.0
## 2645 C.corindum  Plantation_Key   F 8.50   3.67  9.20 12.91   October 2019.0
## 2646 C.corindum  Plantation_Key   M 6.75   3.39  8.71 11.97   October 2019.0
## 2647 C.corindum  Plantation_Key   M 6.01   2.97  7.62 10.51   October 2019.0
## 2648 C.corindum  Plantation_Key   F 7.76   3.44  9.12 12.56   October 2019.0
## 2649 C.corindum  Plantation_Key   M 5.74   2.61  4.39  7.52   October 2019.0
## 2650 C.corindum  Plantation_Key   M 5.52   2.44  4.31  7.19   October 2019.0
## 2651 C.corindum  Plantation_Key   M 5.26   2.64  4.98  7.87   October 2019.0
## 2652 C.corindum  Plantation_Key   M 6.36   3.53  9.33 11.98   October 2019.0
## 2653 C.corindum  Plantation_Key   F 8.10   3.32  8.38 11.68   October 2019.0
## 2654 C.corindum  Plantation_Key   M 5.87   2.70  7.40 10.53   October 2019.0
## 2655 C.corindum  Plantation_Key   M 5.36   2.57  4.27  4.33   October 2019.0
## 2656 C.corindum  Plantation_Key   F 9.08   3.88  9.80 13.68   October 2019.0
## 2657 C.corindum  Plantation_Key   M 5.72   2.97  7.96 11.05   October 2019.0
## 2658  K.elegans     Gainesville   M 6.03   3.36  8.90 12.29  February 2020.0
## 2659  K.elegans     Gainesville   M 6.33   3.26  8.42 11.89  February 2020.0
## 2660  K.elegans     Gainesville   M 5.18   3.05  8.23 11.06  February 2020.0
## 2661  K.elegans     Gainesville   M 5.65   3.05  8.35 11.34  February 2020.0
## 2662  K.elegans     Gainesville   M 5.56   3.10  8.23 11.32  February 2020.0
## 2663  K.elegans     Gainesville   M 6.30   3.33  8.29 11.49  February 2020.0
## 2664  K.elegans     Gainesville   M 5.73   3.10  6.99 10.13  February 2020.0
## 2665  K.elegans     Gainesville   M 5.61   3.31  8.84 11.93  February 2020.0
## 2666  K.elegans     Gainesville   M 5.65   2.99  7.95 11.06  February 2020.0
## 2667  K.elegans     Gainesville   M 5.34   2.80  7.67 10.67  February 2020.0
## 2668  K.elegans     Gainesville   F 6.49   3.22  8.96 12.25  February 2020.0
## 2669  K.elegans     Gainesville   M 5.67   2.97  8.31 11.47  February 2020.0
## 2670  K.elegans     Gainesville   F 8.24   3.92  9.50 13.32  February 2020.0
## 2671  K.elegans     Gainesville   M 6.05   3.11  7.79 10.78  February 2020.0
## 2672  K.elegans     Gainesville   M 5.23   3.08  8.14 11.03  February 2020.0
## 2673  K.elegans     Gainesville   M 5.12   3.03  7.77 10.64  February 2020.0
## 2674  K.elegans     Gainesville   M 5.76   3.42  8.96 12.03  February 2020.0
## 2675  K.elegans     Gainesville   F 6.65   3.52  9.59 12.99  February 2020.0
## 2676  K.elegans     Gainesville   M 6.30   3.16  7.56 10.44  February 2020.0
## 2677  K.elegans     Gainesville   F 5.76   3.20  7.60 10.63  February 2020.0
## 2678  K.elegans     Gainesville   M 5.26   3.02  8.11 11.26  February 2020.0
## 2679  K.elegans     Gainesville   F 5.97   3.55  8.08 11.15  February 2020.0
## 2680  K.elegans     Gainesville   M 5.07   2.90  8.04 10.80  February 2020.0
## 2681  K.elegans     Gainesville   M 6.20   3.31  7.98 11.11  February 2020.0
## 2682  K.elegans     Gainesville   M 6.11   3.14  7.87 10.81  February 2020.0
## 2683  K.elegans     Gainesville   M 6.12   3.27  8.21 11.14  February 2020.0
## 2684  K.elegans     Gainesville   M 5.02   2.83  7.44 10.22  February 2020.0
## 2685  K.elegans     Gainesville   M 5.68   3.13  7.23 10.17  February 2020.0
## 2686  K.elegans     Gainesville   M 6.00   3.38  7.75 10.97  February 2020.0
## 2687  K.elegans     Gainesville   M 6.04   3.22  8.05 11.17  February 2020.0
## 2688  K.elegans     Gainesville   M 5.94   3.34  7.95 11.19  February 2020.0
## 2689  K.elegans     Gainesville   F 7.98   3.54  8.75 12.30  February 2020.0
## 2690  K.elegans     Gainesville   M 6.13   3.44  9.16 12.60  February 2020.0
## 2691  K.elegans     Gainesville   F 5.25   3.07  8.26 11.03  February 2020.0
## 2692  K.elegans     Gainesville   M 5.22   3.16  8.30 11.16  February 2020.0
## 2693  K.elegans     Gainesville   M 5.51   3.08  8.28 11.13  February 2020.0
## 2694  K.elegans       Homestead   M 5.59   2.84  7.50 10.55  February 2020.0
## 2695  K.elegans       Homestead   F 7.47   3.82  9.66 13.31  February 2020.0
## 2696  K.elegans       Homestead   F 7.70   3.53  9.43 12.83  February 2020.0
## 2697  K.elegans       Homestead   F 6.14   2.95  7.81 11.09  February 2020.0
## 2698  K.elegans       Homestead   F 7.74   3.38  9.09 12.86  February 2020.0
## 2699  K.elegans       Homestead   M 5.06   2.75  7.68 10.18  February 2020.0
## 2700  K.elegans       Homestead   M 5.14   2.55  7.08  9.77  February 2020.0
## 2701  K.elegans       Homestead   F 7.83   3.40  8.98 12.67  February 2020.0
## 2702  K.elegans       Homestead   M 6.05   3.37  8.45 11.71  February 2020.0
## 2703  K.elegans       Homestead   M 6.01   3.30  8.34 11.64  February 2020.0
## 2704  K.elegans       Homestead   M 5.39   3.22  7.50 10.79  February 2020.0
## 2705  K.elegans       Homestead   M 5.17   2.69  6.93  9.64  February 2020.0
## 2706  K.elegans       Homestead   M 5.32   2.57  7.47 10.35  February 2020.0
## 2707  K.elegans       Homestead   M 5.20   2.62  6.58  9.22  February 2020.0
## 2708  K.elegans       Homestead   F 7.01   3.25  8.17 11.63  February 2020.0
## 2709  K.elegans       Homestead   F 6.63   3.15  8.18 11.58  February 2020.0
## 2710  K.elegans       Homestead   F 7.09   3.13  8.73 12.08  February 2020.0
## 2711  K.elegans       Homestead   M 5.27   2.55  7.03  9.72  February 2020.0
## 2712  K.elegans       Homestead   M 5.19   2.75  7.24  9.97  February 2020.0
## 2713  K.elegans       Homestead   F 6.98   3.15  8.23 11.59  February 2020.0
## 2714  K.elegans       Homestead   M 5.81   2.80  7.91 10.81  February 2020.0
## 2715  K.elegans       Homestead   F 7.68   3.76 10.40 14.34  February 2020.0
## 2716  K.elegans       Homestead   F 6.21   3.04  8.11 11.33  February 2020.0
## 2717  K.elegans       Homestead   M 5.19   2.61  6.48  9.30  February 2020.0
## 2718  K.elegans       Homestead   M 5.42   2.78  7.72 10.74  February 2020.0
## 2719  K.elegans       Homestead   M 5.49   2.65  7.22 10.07  February 2020.0
## 2720  K.elegans       Homestead   M 5.19   2.68  7.12  9.99  February 2020.0
## 2721  K.elegans       Homestead   M 4.98   2.49  6.24  8.84  February 2020.0
## 2722  K.elegans       Homestead   F 6.48   3.05  5.29  8.97  February 2020.0
## 2723  K.elegans       Homestead   F 5.97   2.98  4.94  8.27  February 2020.0
## 2724  K.elegans       Homestead   M 5.35   2.77  5.25  8.36  February 2020.0
## 2725  K.elegans       Homestead   M 5.13   2.89  7.42 10.08  February 2020.0
## 2726  K.elegans       Homestead   M 5.04   3.25  8.62 11.62  February 2020.0
## 2727  K.elegans       Homestead   M 5.18   2.60  5.93  7.98  February 2020.0
## 2728  K.elegans       Homestead   M 5.54   2.63  4.78  7.88  February 2020.0
## 2729  K.elegans       Homestead   M 5.22   2.51  4.53  7.44  February 2020.0
## 2730  K.elegans       Homestead   F 6.52   3.01  5.06  8.40  February 2020.0
## 2731  K.elegans       Homestead   F 7.26   3.06  8.52 11.96  February 2020.0
## 2732  K.elegans       Homestead   M 5.54   2.84  7.72 10.60  February 2020.0
## 2733  K.elegans       Homestead   M 5.62   3.04  8.29 11.42  February 2020.0
## 2734  K.elegans       Homestead   M 5.40   3.29  8.90 11.88  February 2020.0
## 2735  K.elegans       Homestead   M 5.73   3.11  8.39 11.14  February 2020.0
## 2736 C.corindum       Key_Largo   M 5.88   3.14  8.39 11.68  February 2020.0
## 2737 C.corindum       Key_Largo   F 8.79   3.86 10.07 14.00  February 2020.0
## 2738 C.corindum       Key_Largo   F 6.99   3.69  9.20 13.11  February 2020.0
## 2739 C.corindum       Key_Largo   M 5.25   2.72  7.87 10.31  February 2020.0
## 2740 C.corindum       Key_Largo   M 6.53   3.08  8.08 11.31  February 2020.0
## 2741 C.corindum       Key_Largo   F 6.33   3.33  8.78 12.13  February 2020.0
## 2742 C.corindum       Key_Largo   M 6.18   3.03  8.04 10.94  February 2020.0
## 2743 C.corindum       Key_Largo   M 6.08   2.97  7.80 10.95  February 2020.0
## 2744 C.corindum       Key_Largo   F 7.54   3.41  8.42 11.99  February 2020.0
## 2745 C.corindum       Key_Largo   M 8.73   3.59  9.71 13.59  February 2020.0
## 2746 C.corindum       Key_Largo   F 8.45   3.65  9.24 13.04  February 2020.0
## 2747 C.corindum       Key_Largo   F 7.94   3.27  8.52 11.96  February 2020.0
## 2748 C.corindum       Key_Largo   M 5.63   3.01  8.64 11.48  February 2020.0
## 2749 C.corindum       Key_Largo   M 5.98   3.19  8.32 11.62  February 2020.0
## 2750 C.corindum       Key_Largo   F 7.57   3.33  8.38 12.11  February 2020.0
## 2751 C.corindum       Key_Largo   M 5.57   3.01  8.53 11.47  February 2020.0
## 2752 C.corindum       Key_Largo   F 6.96   3.18  8.31 11.78  February 2020.0
## 2753 C.corindum       Key_Largo   M 6.27   2.96  8.02 11.09  February 2020.0
## 2754 C.corindum       Key_Largo   F 7.70   3.36  9.15 12.65  February 2020.0
## 2755 C.corindum       Key_Largo   M 6.11   3.01  8.43 11.32  February 2020.0
## 2756 C.corindum       Key_Largo   M 5.99   3.16  8.02 11.12  February 2020.0
## 2757 C.corindum       Key_Largo   F 7.98   3.57  8.95 12.72  February 2020.0
## 2758 C.corindum       Key_Largo   M 6.16   3.09  8.38 11.50  February 2020.0
## 2759 C.corindum       Key_Largo   M 6.54   2.99  8.03 11.33  February 2020.0
## 2760 C.corindum       Key_Largo   F 8.10   3.79  9.83 13.54  February 2020.0
## 2761 C.corindum       Key_Largo   M 5.94   3.04  8.70 11.56  February 2020.0
## 2762 C.corindum       Key_Largo   F 7.62   3.14  8.16 11.49  February 2020.0
## 2763 C.corindum       Key_Largo   M 6.22   3.03  8.05 11.38  February 2020.0
## 2764 C.corindum       Key_Largo   M 5.72   3.06  8.40 11.36  February 2020.0
## 2765 C.corindum       Key_Largo   M 5.63   3.02  8.20 11.33  February 2020.0
## 2766 C.corindum       Key_Largo   F 7.92   3.47  9.99 13.92  February 2020.0
## 2767 C.corindum       Key_Largo   M 5.37   3.08  8.01 10.80  February 2020.0
## 2768 C.corindum       Key_Largo   M 6.97   3.18  8.55 11.66  February 2020.0
## 2769 C.corindum       Key_Largo   F 7.51   3.31  9.00 12.27  February 2020.0
## 2770 C.corindum       Key_Largo   F 7.84   3.37  8.61 12.22  February 2020.0
## 2771 C.corindum       Key_Largo   M 6.22   3.13  8.02 11.31  February 2020.0
## 2772 C.corindum       Key_Largo   M 5.98   3.18  8.23 11.41  February 2020.0
## 2773 C.corindum       Key_Largo   M 6.69   3.25  8.53 11.76  February 2020.0
## 2774 C.corindum       Key_Largo   M 5.56   3.35  8.80 12.08  February 2020.0
## 2775 C.corindum       Key_Largo   M 5.35   3.23  8.61 11.71  February 2020.0
## 2776 C.corindum       Key_Largo   M 5.98   3.12  8.40 11.48  February 2020.0
## 2777 C.corindum       Key_Largo   F 6.38   2.80  6.91 10.04  February 2020.0
## 2778 C.corindum       Key_Largo   M 5.40   2.63  7.17  9.73  February 2020.0
## 2779 C.corindum       Key_Largo   M 6.28   3.28  8.80 11.96  February 2020.0
## 2780 C.corindum       Key_Largo   M 5.35   2.52  4.34  7.34  February 2020.0
## 2781 C.corindum       Key_Largo   M 5.70   2.72  4.88  8.20  February 2020.0
## 2782 C.corindum       Key_Largo   M 5.26   2.62  5.42  8.47  February 2020.0
## 2783 C.corindum       Key_Largo   M 5.35   2.59  4.40  7.07  February 2020.0
## 2784 C.corindum       Key_Largo   M 5.81   2.83  5.95  8.68  February 2020.0
## 2785 C.corindum       Key_Largo   M 5.17   2.59  4.40  7.44  February 2020.0
## 2786 C.corindum       Key_Largo   M 5.74   2.74  4.52  7.67  February 2020.0
## 2787 C.corindum       Key_Largo   M 5.48   2.46  3.66  6.68  February 2020.0
## 2788 C.corindum       Key_Largo   F 7.10   3.23  4.80  8.61  February 2020.0
## 2789 C.corindum       Key_Largo   F 6.51   3.00  5.07  8.91  February 2020.0
## 2790 C.corindum       Key_Largo   F 6.67   3.09  5.13  8.69  February 2020.0
## 2791 C.corindum       Key_Largo   M 6.00   2.82  4.76  8.30  February 2020.0
## 2792 C.corindum       Key_Largo   M 5.56   2.69  4.80  7.70  February 2020.0
## 2793 C.corindum       Key_Largo   F 6.27   2.92  5.24  8.78  February 2020.0
## 2794 C.corindum       Key_Largo   F 6.62   2.88  4.79  8.33  February 2020.0
## 2795 C.corindum       Key_Largo   M 5.55   2.50  4.71  7.77  February 2020.0
## 2796 C.corindum       Key_Largo   F 6.48   2.80  4.57  8.15  February 2020.0
## 2797 C.corindum       Key_Largo   M 5.18   2.56  4.05  6.90  February 2020.0
## 2798 C.corindum       Key_Largo   M 5.15   2.40  4.07  6.91  February 2020.0
## 2799 C.corindum       Key_Largo   F 6.88   3.29  5.46  9.24  February 2020.0
## 2800 C.corindum       Key_Largo   M 5.28   2.58  4.92  7.52  February 2020.0
## 2801 C.corindum       Key_Largo   F 7.11   2.88  4.95  8.65  February 2020.0
## 2802 C.corindum       Key_Largo   F 6.85   3.16  5.24  8.65  February 2020.0
## 2803 C.corindum       Key_Largo   F 8.83   3.54  9.23 12.92  February 2020.0
## 2804 C.corindum       Key_Largo   F 6.65   3.11  5.37  8.76  February 2020.0
## 2805 C.corindum       Key_Largo   M 5.74   2.65  4.57  7.38  February 2020.0
## 2806 C.corindum       Key_Largo   M 5.81   2.84  5.01  8.14  February 2020.0
## 2807 C.corindum       Key_Largo   M 5.68   2.73  4.57  7.67  February 2020.0
## 2808 C.corindum       Key_Largo   F 7.22   3.60  9.21 12.56  February 2020.0
## 2809 C.corindum       Key_Largo   F 6.43   2.95  4.87  8.47  February 2020.0
## 2810 C.corindum       Key_Largo   M 6.09   2.92  5.42  8.52  February 2020.0
## 2811 C.corindum       Key_Largo   M 6.48   3.18  8.06 11.20  February 2020.0
## 2812  K.elegans     Lake_Placid   M 5.46   3.00  8.23 11.57  February 2020.0
## 2813  K.elegans     Lake_Placid   F 8.31   3.71  9.77 13.61  February 2020.0
## 2814  K.elegans     Lake_Placid   F 6.44   3.38  9.42 12.99  February 2020.0
## 2815  K.elegans     Lake_Placid   M 5.85   2.98  8.35 11.53  February 2020.0
## 2816  K.elegans     Lake_Placid   M 5.31   2.96  7.77 10.89  February 2020.0
## 2817  K.elegans     Lake_Placid   F 6.06   3.20  9.63 12.74  February 2020.0
## 2818  K.elegans     Lake_Placid   F 6.55   3.27  9.44 12.93  February 2020.0
## 2819  K.elegans     Lake_Placid   F 6.38   3.46  9.10 12.75  February 2020.0
## 2820  K.elegans     Lake_Placid   M 4.77   2.62  6.73  9.41  February 2020.0
## 2821  K.elegans     Lake_Placid   F 7.38   3.40  9.21 12.73  February 2020.0
## 2822  K.elegans     Lake_Placid   M 5.88   3.05  9.00 12.01  February 2020.0
## 2823  K.elegans     Lake_Placid   M 5.73   3.17  9.12 11.97  February 2020.0
## 2824  K.elegans     Lake_Placid   M 5.41   3.01  8.68 11.48  February 2020.0
## 2825  K.elegans     Lake_Placid   M 5.41   2.99  8.30 11.21  February 2020.0
## 2826  K.elegans     Lake_Placid   F 8.01   3.46  9.39 12.63  February 2020.0
## 2827  K.elegans     Lake_Placid   M 5.18   2.87  7.29 10.06  February 2020.0
## 2828  K.elegans     Lake_Placid   F 6.44   3.36  8.43 11.86  February 2020.0
## 2829  K.elegans     Lake_Placid   M 5.17   2.76  7.84 10.65  February 2020.0
## 2830  K.elegans     Lake_Placid   M 5.56   3.10  8.99 12.33  February 2020.0
## 2831  K.elegans     Lake_Placid   M 5.58   2.84  7.80 10.96  February 2020.0
## 2832  K.elegans     Lake_Placid   F 6.98   3.71  9.85 13.50  February 2020.0
## 2833  K.elegans     Lake_Placid   M 5.43   2.88  7.66 10.56  February 2020.0
## 2834  K.elegans     Lake_Placid   M 5.37   2.84  7.73 10.82  February 2020.0
## 2835  K.elegans     Lake_Placid   F 7.92   3.37  9.53 13.16  February 2020.0
## 2836  K.elegans     Lake_Placid   F 6.96   3.59  9.18 12.80  February 2020.0
## 2837  K.elegans     Lake_Placid   M 5.56   2.96  7.91 10.89  February 2020.0
## 2838  K.elegans     Lake_Placid   F 7.61   3.44  9.09 12.74  February 2020.0
## 2839  K.elegans     Lake_Placid   F 6.51   3.36  8.88 12.00  February 2020.0
## 2840  K.elegans     Lake_Placid   M 5.14   2.75  6.93  9.83  February 2020.0
## 2841  K.elegans     Lake_Placid   M 5.45   2.95  7.64 10.72  February 2020.0
## 2842  K.elegans     Lake_Placid   M 5.72   3.00  8.36 11.56  February 2020.0
## 2843  K.elegans     Lake_Placid   M 5.46   2.98  7.47 10.46  February 2020.0
## 2844  K.elegans     Lake_Placid   M 5.24   3.14  8.71 11.91  February 2020.0
## 2845  K.elegans     Lake_Placid   M 5.26   2.93  7.93 10.82  February 2020.0
## 2846  K.elegans     Lake_Placid   F 6.88   3.50  9.48 12.92  February 2020.0
## 2847  K.elegans     Lake_Placid   M 5.37   2.85  7.63 10.52  February 2020.0
## 2848  K.elegans     Lake_Placid   F 7.67   3.68  9.78 13.35  February 2020.0
## 2849  K.elegans     Lake_Placid   M 4.97   2.72  7.62 10.18  February 2020.0
## 2850  K.elegans     Lake_Placid   M 5.34   2.85  8.15 11.03  February 2020.0
## 2851  K.elegans     Lake_Placid   M 5.14   2.73  6.58  9.23  February 2020.0
## 2852  K.elegans     Lake_Placid   F 8.05   3.76 10.18 13.84  February 2020.0
## 2853  K.elegans     Lake_Placid   M 5.30   3.01  8.36 11.44  February 2020.0
## 2854  K.elegans     Lake_Placid   M 6.31   3.38  8.83 11.96  February 2020.0
## 2855  K.elegans      Lake_Wales   M 5.41   2.98  8.03 11.18  February 2020.0
## 2856  K.elegans      Lake_Wales   F 7.75   3.58  9.34 13.26  February 2020.0
## 2857  K.elegans      Lake_Wales   M 5.46   2.90  8.21 11.14  February 2020.0
## 2858  K.elegans      Lake_Wales   F 7.44   3.33  8.98 12.36  February 2020.0
## 2859  K.elegans      Lake_Wales   F 7.50   3.28  8.63 12.08  February 2020.0
## 2860  K.elegans      Lake_Wales   F 6.99   3.39  8.98 12.65  February 2020.0
## 2861  K.elegans      Lake_Wales   F 7.59   3.31  9.21 12.82  February 2020.0
## 2862  K.elegans      Lake_Wales   M 5.58   2.89  7.56 10.97  February 2020.0
## 2863  K.elegans      Lake_Wales   M 5.31   2.68  7.65 10.44  February 2020.0
## 2864  K.elegans      Lake_Wales   F 6.62   3.60  9.83 13.61  February 2020.0
## 2865  K.elegans      Lake_Wales   M 5.27   2.74  8.04 10.94  February 2020.0
## 2866  K.elegans      Lake_Wales   M 5.73   2.99  7.88 11.13  February 2020.0
## 2867  K.elegans      Lake_Wales   M 5.96   3.37  8.93 12.11  February 2020.0
## 2868  K.elegans      Lake_Wales   F 7.02   3.53  9.35 12.62  February 2020.0
## 2869  K.elegans      Lake_Wales   F 7.16   3.37  9.22 12.66  February 2020.0
## 2870  K.elegans      Lake_Wales   M 5.54   3.14  8.32 11.48  February 2020.0
## 2871  K.elegans      Lake_Wales   M 5.16   3.04  7.99 11.03  February 2020.0
## 2872  K.elegans      Lake_Wales   M 5.71   3.24  8.09 11.05  February 2020.0
## 2873  K.elegans      Lake_Wales   F 7.25   3.85  9.90 13.48  February 2020.0
## 2874  K.elegans      Lake_Wales   M 5.47   3.21  8.33 11.21  February 2020.0
## 2875  K.elegans      Lake_Wales   M 6.26   2.89  8.07 10.93  February 2020.0
## 2876  K.elegans      Lake_Wales   F 6.44   3.63  9.21 12.82  February 2020.0
## 2877  K.elegans      Lake_Wales   M 5.40   2.90  8.08 11.02  February 2020.0
## 2878  K.elegans      Lake_Wales   F 7.60   3.44  9.21 12.52  February 2020.0
## 2879  K.elegans      Lake_Wales   M 5.05   2.79  7.91 10.82  February 2020.0
## 2880  K.elegans      Lake_Wales   F 6.44   3.68  9.52 12.91  February 2020.0
## 2881  K.elegans      Lake_Wales   F 7.58   3.36  9.24 12.63  February 2020.0
## 2882  K.elegans      Lake_Wales   M 5.54   3.00  7.98 10.91  February 2020.0
## 2883  K.elegans      Lake_Wales   M 5.29   2.67  7.47 10.23  February 2020.0
## 2884  K.elegans      Lake_Wales   F 7.28   3.32  9.46 12.61  February 2020.0
## 2885  K.elegans      Lake_Wales   F 7.68   3.28  9.13 12.48  February 2020.0
## 2886  K.elegans      Lake_Wales   F 6.61   3.59  9.57 12.89  February 2020.0
## 2887  K.elegans      Lake_Wales   M 5.56   2.85  7.61 10.46  February 2020.0
## 2888  K.elegans      Lake_Wales   M 5.67   2.63  4.54  7.41  February 2020.0
## 2889  K.elegans      Lake_Wales   F 6.74   3.23  8.77 11.70  February 2020.0
## 2890  K.elegans      Lake_Wales   M 5.85   3.09  8.13 11.21  February 2020.0
## 2891  K.elegans      Lake_Wales   M 5.87   3.05  8.64 11.58  February 2020.0
## 2892  K.elegans      Lake_Wales   M 5.51   2.79  7.19  9.69  February 2020.0
## 2893  K.elegans      Lake_Wales   M 7.41   3.36  9.13 12.34  February 2020.0
## 2894  K.elegans      Lake_Wales   M 5.73   3.13  8.61 11.54  February 2020.0
## 2895  K.elegans      Lake_Wales   F 6.47   3.54  9.08 12.37  February 2020.0
## 2896  K.elegans      Lake_Wales   M 5.48   2.98  8.32 11.23  February 2020.0
## 2897  K.elegans      Lake_Wales   M 5.22   2.87  7.38 10.01  February 2020.0
## 2898  K.elegans      Lake_Wales   M 5.37   2.88  8.24 10.93  February 2020.0
## 2899  K.elegans      Lake_Wales   F 7.85   3.60  9.49 12.76  February 2020.0
## 2900  K.elegans      Lake_Wales   M 5.02   2.68  8.13 10.86  February 2020.0
## 2901  K.elegans      Lake_Wales   F 6.70   3.35  8.00 11.37  February 2020.0
## 2902  K.elegans      Lake_Wales   F 6.50   3.49  8.99 12.20  February 2020.0
## 2903  K.elegans      Lake_Wales   M 5.64   3.04  8.22 10.85  February 2020.0
## 2904  K.elegans      Lake_Wales   M 5.04   2.86  7.87 10.61  February 2020.0
## 2905  K.elegans        Leesburg   M 5.32   2.94  7.39 10.85  February 2020.0
## 2906  K.elegans        Leesburg   M 5.89   3.32  8.37 11.70  February 2020.0
## 2907  K.elegans        Leesburg   M 5.11   2.81  7.98 10.98  February 2020.0
## 2908  K.elegans        Leesburg   M 5.42   2.98  8.49 11.19  February 2020.0
## 2909  K.elegans        Leesburg   M 5.59   2.99  7.82 11.02  February 2020.0
## 2910  K.elegans        Leesburg   M 5.35   2.92  7.45 10.24  February 2020.0
## 2911  K.elegans        Leesburg   F 6.14   3.66  8.79 12.14  February 2020.0
## 2912  K.elegans        Leesburg   F 6.17   2.97  8.04 11.35  February 2020.0
## 2913  K.elegans        Leesburg   F 6.07   3.45  8.93 12.33  February 2020.0
## 2914  K.elegans        Leesburg   M 5.99   3.22  8.59 11.72  February 2020.0
## 2915  K.elegans        Leesburg   M 5.14   2.72  6.94  9.98  February 2020.0
## 2916  K.elegans        Leesburg   M 5.72   3.10  8.59 11.72  February 2020.0
## 2917  K.elegans        Leesburg   F 6.47   3.50  9.35 12.66  February 2020.0
## 2918  K.elegans        Leesburg   M 5.54   2.94  8.29 11.12  February 2020.0
## 2919  K.elegans        Leesburg   F 6.36   2.74  5.09  8.22  February 2020.0
## 2920  K.elegans        Leesburg   F 6.41   3.00  7.97 11.17  February 2020.0
## 2921  K.elegans        Leesburg   M 5.83   3.26  8.21 11.29  February 2020.0
## 2922  K.elegans        Leesburg   M 4.87   2.96  7.94 10.68  February 2020.0
## 2923  K.elegans        Leesburg   M 5.53   3.19  8.56 11.64  February 2020.0
## 2924  K.elegans        Leesburg   M 5.51   3.31  8.82 12.06  February 2020.0
## 2925  K.elegans        Leesburg   M 5.05   2.89  8.15 10.94  February 2020.0
## 2926  K.elegans        Leesburg   M 5.00   2.99  8.36 11.05  February 2020.0
## 2927  K.elegans        Leesburg   F 6.54   3.46  9.50 13.09  February 2020.0
## 2928  K.elegans        Leesburg   F 6.31   3.47  9.17 12.53  February 2020.0
## 2929  K.elegans        Leesburg   M 5.60   3.10  7.95 11.32  February 2020.0
## 2930  K.elegans        Leesburg   F 7.62   3.37  8.17 11.62  February 2020.0
## 2931  K.elegans        Leesburg   M 5.19   2.88  4.99  7.88  February 2020.0
## 2932  K.elegans        Leesburg   M 5.40   3.05  8.11 10.98  February 2020.0
## 2933  K.elegans        Leesburg   M 4.99   2.96  7.30 10.28  February 2020.0
## 2934 C.corindum North_Key_Largo   M 6.03   2.90  7.68 10.67  February 2020.0
## 2935 C.corindum North_Key_Largo   M 5.75   2.94  8.30 11.40  February 2020.0
## 2936 C.corindum North_Key_Largo   M 5.44   2.97  7.66 10.67  February 2020.0
## 2937 C.corindum North_Key_Largo   M 6.07   3.24  8.40 11.40  February 2020.0
## 2938 C.corindum North_Key_Largo   F 8.03   3.42  9.08 12.77  February 2020.0
## 2939 C.corindum North_Key_Largo   F 7.15   3.01  7.91 11.29  February 2020.0
## 2940 C.corindum North_Key_Largo   F 7.58   3.55  8.72 12.28  February 2020.0
## 2941 C.corindum North_Key_Largo   M 5.50   2.90  7.57 10.73  February 2020.0
## 2942 C.corindum North_Key_Largo   F 6.24   2.98  7.58 10.98  February 2020.0
## 2943 C.corindum North_Key_Largo   F 7.56   3.26  8.18 11.71  February 2020.0
## 2944 C.corindum North_Key_Largo   F 8.12   3.25  8.28 11.71  February 2020.0
## 2945 C.corindum North_Key_Largo   F 8.17   3.54  9.33 12.79  February 2020.0
## 2946 C.corindum North_Key_Largo   M 6.05   3.38  8.39 11.52  February 2020.0
## 2947 C.corindum North_Key_Largo   M 6.21   3.25  8.58 11.64  February 2020.0
## 2948 C.corindum North_Key_Largo   M 5.99   2.99  7.55 10.80  February 2020.0
## 2949 C.corindum North_Key_Largo   M 5.95   3.10  8.20 11.48  February 2020.0
## 2950 C.corindum North_Key_Largo   F 7.44   3.07  7.86 11.20  February 2020.0
## 2951 C.corindum North_Key_Largo   M 5.72   2.82  7.46 10.43  February 2020.0
## 2952 C.corindum North_Key_Largo   F 7.85   3.73  9.71 13.20  February 2020.0
## 2953 C.corindum North_Key_Largo   F 7.19   3.32  8.56 12.21  February 2020.0
## 2954 C.corindum North_Key_Largo   M 6.30   3.04  8.07 11.40  February 2020.0
## 2955 C.corindum North_Key_Largo   F 8.18   3.48  8.57 12.28  February 2020.0
## 2956 C.corindum North_Key_Largo   F 8.45   3.95 10.00 14.16  February 2020.0
## 2957 C.corindum North_Key_Largo   M 6.23   2.97  7.76 10.83  February 2020.0
## 2958 C.corindum North_Key_Largo   M 5.58   2.77  7.22 10.02  February 2020.0
## 2959 C.corindum North_Key_Largo   M 6.41   3.25  8.62 11.65  February 2020.0
## 2960 C.corindum North_Key_Largo   M 5.67   2.98  7.01 10.08  February 2020.0
## 2961 C.corindum North_Key_Largo   M 6.13   2.99  7.43 10.56  February 2020.0
## 2962 C.corindum North_Key_Largo   M 6.44   3.09  8.24 11.42  February 2020.0
## 2963 C.corindum North_Key_Largo   M 5.91   3.22  8.43 11.41  February 2020.0
## 2964 C.corindum North_Key_Largo   F 8.97   3.78 10.05 13.61  February 2020.0
## 2965 C.corindum North_Key_Largo   M 5.94   2.92  7.98 10.85  February 2020.0
## 2966 C.corindum North_Key_Largo   F 9.02   3.71  9.47 13.43  February 2020.0
## 2967 C.corindum North_Key_Largo   M 5.93   2.94  8.16 11.08  February 2020.0
## 2968 C.corindum North_Key_Largo   F 8.29   3.64  9.99 13.81  February 2020.0
## 2969 C.corindum North_Key_Largo   F 8.44   3.70  9.31 13.44  February 2020.0
## 2970 C.corindum North_Key_Largo   F 8.64   3.27  8.90 12.61  February 2020.0
## 2971 C.corindum North_Key_Largo   F 7.58   3.32  8.58 12.21  February 2020.0
## 2972 C.corindum North_Key_Largo   M 6.07   3.15  8.18 11.15  February 2020.0
## 2973 C.corindum North_Key_Largo   M 6.01   3.17  8.18 11.15  February 2020.0
## 2974 C.corindum North_Key_Largo   M 5.75   2.92  7.78 10.93  February 2020.0
## 2975 C.corindum North_Key_Largo   F 9.08   3.71  9.68 13.81  February 2020.0
## 2976 C.corindum North_Key_Largo   F 6.91   3.02  7.75 11.25  February 2020.0
## 2977 C.corindum North_Key_Largo   F 9.87   4.14 10.47 14.34  February 2020.0
## 2978 C.corindum North_Key_Largo   M 5.78   2.83  7.38 10.46  February 2020.0
## 2979 C.corindum North_Key_Largo   M 6.09   2.90  8.08 10.86  February 2020.0
## 2980 C.corindum North_Key_Largo   M 6.88   3.16  8.84 12.06  February 2020.0
## 2981 C.corindum North_Key_Largo   M 5.42   2.70  7.20 10.15  February 2020.0
## 2982 C.corindum North_Key_Largo   F 8.04   3.32  8.36 11.72  February 2020.0
## 2983 C.corindum North_Key_Largo   F 7.41   3.79  9.98 13.66  February 2020.0
## 2984 C.corindum North_Key_Largo   F 7.61   3.82  9.80 13.86  February 2020.0
## 2985 C.corindum North_Key_Largo   M 5.72   3.06  7.80 10.72  February 2020.0
## 2986 C.corindum North_Key_Largo   M 6.85   3.08  8.92 11.99  February 2020.0
## 2987 C.corindum North_Key_Largo   M 5.34   2.93  7.63 10.63  February 2020.0
## 2988 C.corindum North_Key_Largo   F 7.90   3.33  8.50 12.37  February 2020.0
## 2989 C.corindum North_Key_Largo   M 6.39   3.18  8.41 11.86  February 2020.0
## 2990 C.corindum North_Key_Largo   F 8.17   3.48  9.37 13.09  February 2020.0
## 2991 C.corindum North_Key_Largo   M 5.78   2.94  7.97 11.14  February 2020.0
## 2992 C.corindum North_Key_Largo   M 5.94   2.89  7.83 11.00  February 2020.0
## 2993 C.corindum North_Key_Largo   M 6.40   3.08  8.37 11.69  February 2020.0
## 2994 C.corindum North_Key_Largo   F 6.39   2.88  7.56 10.70  February 2020.0
## 2995 C.corindum North_Key_Largo   F 7.35   3.74  9.77 13.20  February 2020.0
## 2996 C.corindum North_Key_Largo   M 5.58   3.11  8.65 11.52  February 2020.0
## 2997 C.corindum North_Key_Largo   M 6.17   2.61  8.01 10.53  February 2020.0
## 2998 C.corindum North_Key_Largo   F 8.51   3.67  9.15 12.95  February 2020.0
## 2999 C.corindum North_Key_Largo   M 5.55   2.77  6.58  9.52  February 2020.0
## 3000 C.corindum North_Key_Largo   M 5.42   2.82  7.60 10.59  February 2020.0
## 3001 C.corindum North_Key_Largo   M 6.16   3.20  8.37 11.71  February 2020.0
## 3002 C.corindum North_Key_Largo   M 6.15   3.04  8.24 11.48  February 2020.0
## 3003 C.corindum North_Key_Largo   F 7.99   3.50  8.71 12.31  February 2020.0
## 3004 C.corindum North_Key_Largo   M 6.38   2.99  7.66 10.66  February 2020.0
## 3005 C.corindum North_Key_Largo   M 5.77   2.91  7.40 10.49  February 2020.0
## 3006 C.corindum North_Key_Largo   M 6.35   3.17  8.53 11.52  February 2020.0
## 3007 C.corindum North_Key_Largo   M 5.95   3.11  8.26 11.56  February 2020.0
## 3008 C.corindum North_Key_Largo   M 5.79   3.06  8.16 11.14  February 2020.0
## 3009 C.corindum North_Key_Largo   F 8.15   4.04 10.52 14.50  February 2020.0
## 3010 C.corindum North_Key_Largo   F 9.17   3.73  9.38 12.86  February 2020.0
## 3011 C.corindum North_Key_Largo   F 8.28   3.46  8.71 12.32  February 2020.0
## 3012 C.corindum North_Key_Largo   M 6.41   3.02  8.13 11.12  February 2020.0
## 3013 C.corindum North_Key_Largo   M 6.67   3.20  8.46 11.40  February 2020.0
## 3014 C.corindum North_Key_Largo   M 5.71   3.34  8.49 11.61  February 2020.0
## 3015 C.corindum North_Key_Largo   F 9.44   4.00 10.17 14.13  February 2020.0
## 3016 C.corindum North_Key_Largo   F 6.90   3.05  7.79 11.22  February 2020.0
## 3017 C.corindum North_Key_Largo   F 8.04   3.53  9.18 12.63  February 2020.0
## 3018 C.corindum North_Key_Largo   F 8.49   3.25  8.52 12.17  February 2020.0
## 3019 C.corindum North_Key_Largo   F 8.54   3.50  9.35 13.05  February 2020.0
## 3020 C.corindum North_Key_Largo   M 5.97   2.88  7.99 10.86  February 2020.0
## 3021 C.corindum North_Key_Largo   M 5.84   2.87  7.55 10.62  February 2020.0
## 3022 C.corindum North_Key_Largo   M 5.78   2.85  7.10 10.18  February 2020.0
## 3023 C.corindum North_Key_Largo   F 8.32   3.39  9.09 12.47  February 2020.0
## 3024 C.corindum North_Key_Largo   M 5.54   3.01  7.68 10.57  February 2020.0
## 3025 C.corindum North_Key_Largo   F 7.84   3.49  9.01 12.59  February 2020.0
## 3026 C.corindum North_Key_Largo   M 6.00   3.30  7.35 10.71  February 2020.0
## 3027 C.corindum North_Key_Largo   F 7.53   3.27  8.13 12.13  February 2020.0
## 3028 C.corindum North_Key_Largo   M 6.05   3.03  8.31 11.52  February 2020.0
## 3029 C.corindum North_Key_Largo   F 6.84   3.02  6.00  9.41  February 2020.0
## 3030 C.corindum North_Key_Largo   M 6.08   3.16  8.42 11.66  February 2020.0
## 3031 C.corindum North_Key_Largo   M 5.47   2.92  8.29 11.29  February 2020.0
## 3032 C.corindum North_Key_Largo   M 5.84   2.98  7.83 10.88  February 2020.0
## 3033 C.corindum North_Key_Largo   M 6.16   3.01  7.88 10.90  February 2020.0
## 3034 C.corindum North_Key_Largo   M 5.51   2.75  7.11  9.94  February 2020.0
## 3035 C.corindum North_Key_Largo   M 6.43   3.27  8.85 11.84  February 2020.0
## 3036 C.corindum North_Key_Largo   M 5.47   2.72  6.73  9.77  February 2020.0
## 3037 C.corindum North_Key_Largo   M 5.69   2.94  7.27 10.38  February 2020.0
## 3038 C.corindum North_Key_Largo   M 6.02   2.76  7.12 10.08  February 2020.0
## 3039 C.corindum North_Key_Largo   M 5.98   2.76  7.15 10.13  February 2020.0
## 3040 C.corindum North_Key_Largo   M 5.24   2.49  6.06  8.89  February 2020.0
## 3041 C.corindum North_Key_Largo   M 5.52   2.64  7.17  9.95  February 2020.0
## 3042 C.corindum North_Key_Largo   F 8.50   3.28  8.65 12.35  February 2020.0
## 3043 C.corindum North_Key_Largo   M 6.08   2.98  7.63 10.70  February 2020.0
## 3044 C.corindum North_Key_Largo   M 5.77   2.77  7.30 10.22  February 2020.0
## 3045 C.corindum North_Key_Largo   M 5.99   3.26  8.25 11.39  February 2020.0
## 3046 C.corindum North_Key_Largo   M 6.12   3.10  8.56 11.66  February 2020.0
## 3047 C.corindum North_Key_Largo   M 5.78   3.00  8.35 11.27  February 2020.0
## 3048 C.corindum North_Key_Largo   M 6.07   2.82  7.53 10.73  February 2020.0
## 3049 C.corindum North_Key_Largo   M 6.56   2.91  8.02 11.22  February 2020.0
## 3050 C.corindum North_Key_Largo   M 6.09   3.08  8.05 11.21  February 2020.0
## 3051 C.corindum North_Key_Largo   F 7.02   3.06  7.35 10.48  February 2020.0
## 3052 C.corindum North_Key_Largo   M 6.65   3.31  8.30 11.50  February 2020.0
## 3053 C.corindum North_Key_Largo   M 5.83   2.69  7.11 10.03  February 2020.0
## 3054 C.corindum North_Key_Largo   F 7.32   3.05  8.34 11.68  February 2020.0
## 3055 C.corindum North_Key_Largo   M 6.17   2.91  7.57 10.44  February 2020.0
## 3056 C.corindum North_Key_Largo   M 6.03   3.05  8.01 11.00  February 2020.0
## 3057 C.corindum North_Key_Largo   M 5.81   2.78  7.32 10.12  February 2020.0
## 3058 C.corindum North_Key_Largo   F 6.35   3.03  7.38 10.93  February 2020.0
## 3059 C.corindum North_Key_Largo   F 7.51   3.09  7.91 11.42  February 2020.0
## 3060 C.corindum North_Key_Largo   M 6.13   3.22  8.68 11.83  February 2020.0
## 3061 C.corindum North_Key_Largo   M 6.59   2.96  7.87 11.05  February 2020.0
## 3062 C.corindum North_Key_Largo   M 5.88   3.07  8.12 11.04  February 2020.0
## 3063 C.corindum North_Key_Largo   M 6.30   2.99  7.93 11.11  February 2020.0
## 3064 C.corindum North_Key_Largo   M 5.93   3.03  7.89 10.85  February 2020.0
## 3065 C.corindum North_Key_Largo   M 5.92   3.35  8.93 12.04  February 2020.0
## 3066 C.corindum North_Key_Largo   F 6.79   3.61  9.77 13.39  February 2020.0
## 3067 C.corindum North_Key_Largo   M 5.68   2.78  7.72 10.29  February 2020.0
## 3068 C.corindum North_Key_Largo   M 6.23   3.34  8.89 12.04  February 2020.0
## 3069 C.corindum North_Key_Largo   M 5.86   2.91  7.99 11.06  February 2020.0
## 3070 C.corindum North_Key_Largo   M 5.56   3.24  8.16 11.42  February 2020.0
## 3071 C.corindum North_Key_Largo   M 6.29   2.90  7.78 10.89  February 2020.0
## 3072 C.corindum North_Key_Largo   M 5.33   2.95  7.70 10.75  February 2020.0
## 3073 C.corindum North_Key_Largo   M 5.97   2.92  8.10 10.84  February 2020.0
## 3074 C.corindum North_Key_Largo   F 7.71   3.47  8.42 11.78  February 2020.0
## 3075 C.corindum North_Key_Largo   F 8.23   3.76  9.40 13.00  February 2020.0
## 3076 C.corindum North_Key_Largo   M 6.06   2.83  5.88  8.77  February 2020.0
## 3077 C.corindum North_Key_Largo   F 8.59   3.68  9.92 13.59  February 2020.0
## 3078 C.corindum North_Key_Largo   M 5.18   2.60  5.45  8.60  February 2020.0
## 3079 C.corindum North_Key_Largo   M 5.50   3.02  8.18 11.11  February 2020.0
## 3080 C.corindum North_Key_Largo   M 5.51   2.66  5.05  7.74  February 2020.0
## 3081 C.corindum North_Key_Largo   M 5.64   2.90  4.80  7.98  February 2020.0
## 3082 C.corindum North_Key_Largo   F 6.88   3.23  5.25  9.09  February 2020.0
## 3083 C.corindum North_Key_Largo   M 5.50   2.75  5.56  8.52  February 2020.0
## 3084 C.corindum North_Key_Largo   F 8.79   3.65  9.15 12.49  February 2020.0
## 3085 C.corindum North_Key_Largo   F 6.14   2.82  4.19  7.63  February 2020.0
## 3086 C.corindum North_Key_Largo   F 6.10   2.94  4.68  8.01  February 2020.0
## 3087 C.corindum North_Key_Largo   F 5.59   2.56  4.49  7.42  February 2020.0
## 3088 C.corindum North_Key_Largo   F 7.76   3.44  6.22 10.32  February 2020.0
## 3089 C.corindum North_Key_Largo   F 6.55   2.91  4.62  7.93  February 2020.0
## 3090 C.corindum North_Key_Largo   M 4.90   2.24  3.67  6.59  February 2020.0
## 3091 C.corindum North_Key_Largo   M 5.76   2.86  7.33 10.26  February 2020.0
## 3092 C.corindum North_Key_Largo   F 8.53   3.58  8.92 12.60  February 2020.0
## 3093 C.corindum North_Key_Largo   F 8.21   3.60  9.06 12.65  February 2020.0
## 3094 C.corindum North_Key_Largo   M 5.89   3.00  7.67 10.66  February 2020.0
## 3095 C.corindum North_Key_Largo   M 5.36   2.69  7.59 10.46  February 2020.0
## 3096 C.corindum North_Key_Largo   M 5.86   2.82  4.69  7.99  February 2020.0
## 3097 C.corindum North_Key_Largo   F 6.22   2.99  4.84  8.34  February 2020.0
## 3098 C.corindum North_Key_Largo   M 5.14   2.48  4.55  7.11  February 2020.0
## 3099 C.corindum North_Key_Largo   M 5.75   2.65  4.47  7.64  February 2020.0
## 3100 C.corindum North_Key_Largo   F 7.97   3.67  9.36 12.93  February 2020.0
## 3101 C.corindum North_Key_Largo   M 6.40   3.34  7.67 10.86  February 2020.0
## 3102 C.corindum North_Key_Largo   M 5.41   3.18  8.00 11.02  February 2020.0
## 3103 C.corindum North_Key_Largo   F 8.51   3.69  9.63 13.47  February 2020.0
## 3104 C.corindum North_Key_Largo   M 5.99   3.03  5.14  8.48  February 2020.0
## 3105 C.corindum North_Key_Largo   M 5.51   2.48  4.24  7.19  February 2020.0
## 3106 C.corindum North_Key_Largo   F 6.85   2.91  4.76  8.20  February 2020.0
## 3107 C.corindum North_Key_Largo   F 6.44   2.75  4.20  7.74  February 2020.0
## 3108 C.corindum North_Key_Largo   M 5.41   2.41  4.45  7.56  February 2020.0
## 3109 C.corindum North_Key_Largo   M 5.91   2.85  5.43  8.28  February 2020.0
## 3110 C.corindum North_Key_Largo   F 6.07   2.78  4.41  7.88  February 2020.0
## 3111 C.corindum North_Key_Largo   M 5.64   2.72  4.73  7.72  February 2020.0
## 3112 C.corindum North_Key_Largo   F 7.51   2.99  5.07  8.70  February 2020.0
## 3113 C.corindum North_Key_Largo   M 5.36   2.44  3.71  6.51  February 2020.0
## 3114 C.corindum North_Key_Largo   F 5.82   2.56  3.86  6.93  February 2020.0
## 3115 C.corindum North_Key_Largo   F 5.88   2.65  4.14  7.31  February 2020.0
## 3116 C.corindum North_Key_Largo   M 5.47   2.41  4.22  6.97  February 2020.0
## 3117 C.corindum North_Key_Largo   M 5.26   2.39  3.66  6.57  February 2020.0
## 3118 C.corindum North_Key_Largo   M 5.31   2.58  4.05  7.11  February 2020.0
## 3119 C.corindum North_Key_Largo   F 6.65   3.19  5.34  9.01  February 2020.0
## 3120 C.corindum North_Key_Largo   M 5.42   2.43  5.10  7.86  February 2020.0
## 3121 C.corindum North_Key_Largo   M 5.64   2.71  4.48  7.30  February 2020.0
## 3122 C.corindum North_Key_Largo   M 5.47   2.85  4.55  7.61  February 2020.0
## 3123 C.corindum North_Key_Largo   F 7.25   3.21  5.47  9.28  February 2020.0
## 3124 C.corindum North_Key_Largo   F 6.07   2.80  4.26  7.67  February 2020.0
## 3125 C.corindum North_Key_Largo   M 5.72   2.73  4.95  8.15  February 2020.0
## 3126 C.corindum North_Key_Largo   M 5.46   2.58  4.52  7.80  February 2020.0
## 3127 C.corindum North_Key_Largo   M 5.31   2.52  4.20  7.30  February 2020.0
## 3128 C.corindum North_Key_Largo   F 6.89   3.03  5.29  9.03  February 2020.0
## 3129 C.corindum North_Key_Largo   F 6.51   3.09  4.87  8.15  February 2020.0
## 3130 C.corindum North_Key_Largo   M 5.65   2.68  4.36  7.38  February 2020.0
## 3131 C.corindum North_Key_Largo   F 8.22   3.70  9.58 13.14  February 2020.0
## 3132 C.corindum North_Key_Largo   M 5.18   2.62  4.39  7.80  February 2020.0
## 3133 C.corindum North_Key_Largo   M 5.08   2.36  3.94  6.79  February 2020.0
## 3134 C.corindum North_Key_Largo   M 5.04   2.51  3.89  6.96  February 2020.0
## 3135 C.corindum North_Key_Largo   F 6.38   2.78  4.47  8.09  February 2020.0
## 3136 C.corindum North_Key_Largo   F 9.21   3.76  9.44 13.19  February 2020.0
## 3137 C.corindum North_Key_Largo   M 6.12   2.93  5.38  8.63  February 2020.0
## 3138 C.corindum North_Key_Largo   F 6.97   3.07  5.12  8.62  February 2020.0
## 3139 C.corindum North_Key_Largo   M 5.94   2.81  4.95  8.11  February 2020.0
## 3140 C.corindum North_Key_Largo   F 7.23   3.18  4.94  8.55  February 2020.0
## 3141 C.corindum North_Key_Largo   M 5.35   2.52  4.32  7.36  February 2020.0
## 3142 C.corindum North_Key_Largo   M 5.62   2.89  4.58  7.70  February 2020.0
## 3143 C.corindum North_Key_Largo   F 7.32   3.25  8.61 11.88  February 2020.0
## 3144 C.corindum North_Key_Largo   M 5.06   2.61  4.47  7.02  February 2020.0
## 3145 C.corindum North_Key_Largo   F 6.00   2.93  4.68  8.05  February 2020.0
## 3146 C.corindum North_Key_Largo   F 6.57   3.20  8.36 11.92  February 2020.0
## 3147 C.corindum North_Key_Largo   F 6.36   2.94  4.67  8.09  February 2020.0
## 3148 C.corindum North_Key_Largo   M 6.48   3.19  8.69 11.99  February 2020.0
## 3149 C.corindum North_Key_Largo   F 6.11   2.72  5.10  8.40  February 2020.0
## 3150 C.corindum North_Key_Largo   F 7.53   3.25  8.75 12.00  February 2020.0
## 3151 C.corindum North_Key_Largo   F 8.37   3.85 10.09 14.09  February 2020.0
## 3152 C.corindum North_Key_Largo   M 5.85   2.83  6.92  9.83  February 2020.0
## 3153 C.corindum North_Key_Largo   F 8.25   3.54  8.75 12.44  February 2020.0
## 3154 C.corindum North_Key_Largo   M 5.40   3.19  8.22 11.20  February 2020.0
## 3155 C.corindum  Plantation_Key   M 5.50   3.18  8.39 11.83  February 2020.0
## 3156 C.corindum  Plantation_Key   M 5.64   3.12  7.88 11.09  February 2020.0
## 3157 C.corindum  Plantation_Key   M 5.75   3.36  8.48 11.90  February 2020.0
## 3158 C.corindum  Plantation_Key   M 6.21   2.97  7.87 10.90  February 2020.0
## 3159 C.corindum  Plantation_Key   F 7.47   3.32  8.33 11.89  February 2020.0
## 3160 C.corindum  Plantation_Key   M 5.76   3.04  8.03 11.00  February 2020.0
## 3161 C.corindum  Plantation_Key   F 8.19   3.64  9.30 13.02  February 2020.0
## 3162 C.corindum  Plantation_Key   F 8.39   3.54  9.38 13.09  February 2020.0
## 3163 C.corindum  Plantation_Key   M 6.10   3.39  9.06 12.14  February 2020.0
## 3164 C.corindum  Plantation_Key   M 6.09   3.28  8.56 12.21  February 2020.0
## 3165 C.corindum  Plantation_Key   F 7.01   3.68  9.23 13.04  February 2020.0
## 3166 C.corindum  Plantation_Key   M 5.69   3.11  8.41 11.60  February 2020.0
## 3167 C.corindum  Plantation_Key   F 8.26   3.53  9.00 12.53  February 2020.0
## 3168 C.corindum  Plantation_Key   M 6.83   3.36  8.61 12.01  February 2020.0
## 3169 C.corindum  Plantation_Key   M 6.14   3.21  8.40 11.85  February 2020.0
## 3170 C.corindum  Plantation_Key   F 7.29   3.16  8.15 11.51  February 2020.0
## 3171 C.corindum  Plantation_Key   M 5.67   3.13  8.17 11.13  February 2020.0
## 3172 C.corindum  Plantation_Key   M 6.06   3.26  8.50 11.93  February 2020.0
## 3173 C.corindum  Plantation_Key   F 6.76   3.59  9.29 12.87  February 2020.0
## 3174 C.corindum  Plantation_Key   M 5.61   2.70  7.20  9.96  February 2020.0
## 3175 C.corindum  Plantation_Key   M 5.72   3.05  8.13 11.52  February 2020.0
## 3176 C.corindum  Plantation_Key   M 5.59   3.13  8.35 11.45  February 2020.0
## 3177 C.corindum  Plantation_Key   M 5.82   3.34  8.52 11.93  February 2020.0
## 3178 C.corindum  Plantation_Key   M 5.79   2.70  7.65 10.51  February 2020.0
## 3179 C.corindum  Plantation_Key   M 5.81   2.96  8.47 11.75  February 2020.0
## 3180 C.corindum  Plantation_Key   M 5.51   2.82  7.41 10.82  February 2020.0
## 3181 C.corindum  Plantation_Key   M 5.77   2.86  8.00 11.06  February 2020.0
## 3182 C.corindum  Plantation_Key   M 5.99   2.96  7.84 10.83  February 2020.0
## 3183 C.corindum  Plantation_Key   F 9.02   3.45  9.36 13.06  February 2020.0
## 3184 C.corindum  Plantation_Key   M 6.20   3.15  8.75 11.74  February 2020.0
## 3185 C.corindum  Plantation_Key   M 5.54   3.20  8.52 11.64  February 2020.0
## 3186 C.corindum  Plantation_Key   M 5.53   2.95  8.12 10.90  February 2020.0
## 3187 C.corindum  Plantation_Key   M 6.25   3.16  8.57 11.73  February 2020.0
## 3188 C.corindum  Plantation_Key   M 5.52   2.88  7.48 10.51  February 2020.0
## 3189 C.corindum  Plantation_Key   F 8.04   3.40  9.11 12.60  February 2020.0
## 3190 C.corindum  Plantation_Key   M 5.84   2.93  7.77 10.76  February 2020.0
## 3191 C.corindum  Plantation_Key   M 6.12   2.94  8.00 11.00  February 2020.0
## 3192 C.corindum  Plantation_Key   M 5.63   2.77  7.55 10.32  February 2020.0
## 3193 C.corindum  Plantation_Key   M 6.30   3.31  8.78 11.97  February 2020.0
## 3194 C.corindum  Plantation_Key   M 5.70   2.91  7.79 10.77  February 2020.0
## 3195 C.corindum  Plantation_Key   F 7.77   3.30  9.02 12.44  February 2020.0
## 3196 C.corindum  Plantation_Key   F 6.58   3.21  8.32 11.70  February 2020.0
## 3197 C.corindum  Plantation_Key   M 6.23   3.11  8.31 11.45  February 2020.0
## 3198 C.corindum  Plantation_Key   F 7.21   3.59 10.02 13.53  February 2020.0
## 3199 C.corindum  Plantation_Key   F 8.53   3.30  8.48 11.98  February 2020.0
## 3200 C.corindum  Plantation_Key   M 5.89   2.14  6.30  9.34  February 2020.0
## 3201 C.corindum  Plantation_Key   M 6.09   2.68  7.57 10.67  February 2020.0
## 3202 C.corindum  Plantation_Key   F 9.01   3.77 10.53 13.86  February 2020.0
## 3203 C.corindum  Plantation_Key   M 6.17   3.16  8.55 11.85  February 2020.0
## 3204 C.corindum  Plantation_Key   M 5.45   2.65  7.20 10.09  February 2020.0
## 3205 C.corindum  Plantation_Key   F 6.37   2.99  7.40 10.73  February 2020.0
## 3206 C.corindum  Plantation_Key   M 5.43   2.58  4.49  7.58  February 2020.0
## 3207 C.corindum  Plantation_Key   M 5.30   2.51  4.09  6.76  February 2020.0
## 3208 C.corindum  Plantation_Key   F 7.03   2.92  4.94  8.71  February 2020.0
## 3209 C.corindum  Plantation_Key   M 5.57   2.63  4.34  7.44  February 2020.0
## 3210 C.corindum  Plantation_Key   F 7.26   3.23  4.78  8.53  February 2020.0
## 3211 C.corindum  Plantation_Key   F 6.48   3.33  9.03 12.18  February 2020.0
## 3212 C.corindum  Plantation_Key   M 6.22   3.44  8.17 11.65  February 2020.0
## 3213 C.corindum  Plantation_Key   M 5.71   2.66  4.46  7.60  February 2020.0
## 3214 C.corindum  Plantation_Key   F 6.04   2.85  4.48  7.84  February 2020.0
## 3215 C.corindum  Plantation_Key   M 4.46   2.23  3.69  6.29  February 2020.0
## 3216 C.corindum  Plantation_Key   M 5.77   2.75  7.82 10.62  February 2020.0
## 3217 C.corindum  Plantation_Key   F 6.33   3.06  5.18  8.61  February 2020.0
## 3218 C.corindum  Plantation_Key   F 7.03   3.11  4.79  8.51  February 2020.0
## 3219 C.corindum  Plantation_Key   F 6.99   3.30  4.87  8.97  February 2020.0
## 3220 C.corindum  Plantation_Key   M 5.64   2.68  4.48  7.56  February 2020.0
## 3221 C.corindum  Plantation_Key   M 5.37   2.50  3.99  7.06  February 2020.0
## 3222 C.corindum  Plantation_Key   F 7.75   3.48  6.27 10.10  February 2020.0
## 3223 C.corindum  Plantation_Key   F 7.50   3.86 10.09 13.60  February 2020.0
## 3224 C.corindum  Plantation_Key   F 7.88   3.99 10.07 13.76  February 2020.0
## 3225 C.corindum  Plantation_Key   F 8.75   3.88  9.79 13.63  February 2020.0
## 3226 C.corindum  Plantation_Key   M 6.08   3.05  8.06 11.28   October 2019.0
## 3227 C.corindum  Plantation_Key   F 6.43   3.18  8.05 11.22   October 2019.0
## 3228 C.corindum  Plantation_Key   F 8.59   3.73  9.18 12.82   October 2019.0
## 3229 C.corindum  Plantation_Key   M 6.60   3.33  8.48 11.61   October 2019.0
## 3230 C.corindum  Plantation_Key   M 6.23   3.25  8.48 11.67   October 2019.0
## 3231 C.corindum  Plantation_Key   F 8.12   3.36  8.71 12.20   October 2019.0
## 3232 C.corindum  Plantation_Key   F 9.33   4.06 10.48 14.57   October 2019.0
## 3233 C.corindum  Plantation_Key   M 5.97   2.89  7.70 10.97   October 2019.0
## 3234 C.corindum  Plantation_Key   F 7.46   3.30  5.36  9.04   October 2019.0
## 3235 C.corindum  Plantation_Key   F 8.02   3.60  9.55 13.19   October 2019.0
## 3236 C.corindum  Plantation_Key   M 6.04   3.00  7.99 11.01   October 2019.0
## 3237 C.corindum  Plantation_Key   M 6.36   2.93  7.71 10.62   October 2019.0
## 3238 C.corindum  Plantation_Key   M 6.19   2.91  7.95 10.87   October 2019.0
## 3239 C.corindum  Plantation_Key   M 6.17   3.13  8.38 11.48   October 2019.0
## 3240 C.corindum  Plantation_Key   F 7.14   2.91  5.41  8.80   October 2019.0
## 3241 C.corindum  Plantation_Key   F 6.46   2.85  4.89  8.38   October 2019.0
## 3242 C.corindum  Plantation_Key   M 6.10   3.07  7.85 11.02   October 2019.0
## 3243 C.corindum  Plantation_Key   F 8.14   3.67  9.15 12.75   October 2019.0
## 3244 C.corindum  Plantation_Key   F 6.79   2.98  5.22  8.39   October 2019.0
## 3245 C.corindum  Plantation_Key   F 8.54   3.62  9.27 12.71   October 2019.0
## 3246 C.corindum  Plantation_Key   M 5.76   2.90  8.39 11.18   October 2019.0
## 3247 C.corindum  Plantation_Key   M 5.98   2.93  8.01 10.81   October 2019.0
## 3248 C.corindum  Plantation_Key   M 5.96   3.02  8.10 11.24   October 2019.0
## 3249 C.corindum  Plantation_Key   F 8.37   3.51  9.58 13.02   October 2019.0
## 3250 C.corindum  Plantation_Key   F 8.33   3.28  8.90 12.08   October 2019.0
## 3251  K.elegans       Homestead   M 5.64   3.25  8.64 11.54   October 2019.0
## 3252  K.elegans       Homestead   M 5.50   3.10  8.11 11.09   October 2019.0
## 3253  K.elegans       Homestead   F 8.16   3.69  9.64 12.97   October 2019.0
## 3254  K.elegans       Homestead   M 5.85   2.98  8.39 11.44   October 2019.0
## 3255  K.elegans       Homestead   F 7.62   3.62  9.65 12.95   October 2019.0
## 3256  K.elegans       Homestead   F 7.69   3.55  9.52 12.94   October 2019.0
## 3257  K.elegans       Homestead   M 6.07   3.36  9.52 12.53   October 2019.0
## 3258  K.elegans       Homestead   F 7.76   3.68  9.58 13.12   October 2019.0
## 3259  K.elegans       Homestead   F 7.57   3.65  9.37 12.73   October 2019.0
## 3260  K.elegans       Homestead   F 6.36   2.93  5.08  8.27   October 2019.0
## 3261  K.elegans       Homestead   M 5.51   2.98  7.68 10.54   October 2019.0
## 3262  K.elegans       Homestead   F 7.96   3.62 10.02 13.60   October 2019.0
## 3263 C.corindum North_Key_Largo   F 8.72   3.85 10.29 14.16   October 2019.0
## 3264 C.corindum North_Key_Largo   F 9.02   3.76  9.98 13.29   October 2019.0
## 3265 C.corindum North_Key_Largo   F 7.97   3.42  9.15 12.72   October 2019.0
## 3266 C.corindum North_Key_Largo   F 9.67   3.81 10.21 13.96   October 2019.0
## 3267 C.corindum North_Key_Largo   M 6.80   3.32  9.09 12.43   October 2019.0
## 3268 C.corindum North_Key_Largo   F 8.52   3.59 10.04 13.44   October 2019.0
## 3269 C.corindum North_Key_Largo   M 6.20   3.31  8.93 12.10   October 2019.0
## 3270 C.corindum North_Key_Largo   F 8.45   3.45  9.00 12.28   October 2019.0
## 3271 C.corindum North_Key_Largo   F 8.73   3.71  9.92 13.28   October 2019.0
## 3272 C.corindum North_Key_Largo   F   NA   3.45  9.02 12.58   October 2019.0
## 3273 C.corindum North_Key_Largo   M 6.18   3.06  8.37 11.44   October 2019.0
## 3274 C.corindum North_Key_Largo   F 7.95   3.51  8.96 12.38   October 2019.0
## 3275 C.corindum North_Key_Largo   F 6.40   2.82  5.37  8.61   October 2019.0
## 3276 C.corindum North_Key_Largo   M 6.01   2.98  8.15 11.23   October 2019.0
## 3277 C.corindum North_Key_Largo   F 8.05   3.68  9.00 12.68   October 2019.0
## 3278 C.corindum North_Key_Largo   M 5.93   2.90  7.74 10.61   October 2019.0
## 3279 C.corindum North_Key_Largo   F 8.69   3.65  9.30 12.76   October 2019.0
## 3280 C.corindum North_Key_Largo   M 5.67   2.75  7.22 10.06   October 2019.0
## 3281 C.corindum North_Key_Largo   F 8.75   3.69  9.63 13.05   October 2019.0
## 3282 C.corindum North_Key_Largo   M 5.65   2.94  7.89 10.77   October 2019.0
## 3283 C.corindum North_Key_Largo   F 8.89   3.68  9.26 12.64   October 2019.0
## 3284 C.corindum North_Key_Largo   M 6.10   3.19  8.48 11.62   October 2019.0
## 3285 C.corindum North_Key_Largo   F 8.13   3.38  8.78 12.31   October 2019.0
## 3286 C.corindum North_Key_Largo   M 5.90   3.13  8.31 11.15   October 2019.0
## 3287 C.corindum North_Key_Largo   M 6.95   3.66  9.36 12.42   October 2019.0
## 3288 C.corindum North_Key_Largo   M 6.87   3.50  9.37 12.72   October 2019.0
## 3289  K.elegans     Lake_Placid   M 5.16   2.59  7.27 10.03   October 2019.0
## 3290  K.elegans     Lake_Placid   F 8.19   3.88 10.19 13.56   October 2019.0
## 3291  K.elegans     Lake_Placid   M 5.65   2.90  7.59 10.56   October 2019.0
## 3292  K.elegans     Lake_Placid   M 5.73   3.19  9.15 12.22   October 2019.0
## 3293  K.elegans     Lake_Placid   F 7.96   3.55 10.10 13.72   October 2019.0
## 3294  K.elegans     Lake_Placid   F 7.61   3.35  9.04 12.49   October 2019.0
## 3295  K.elegans     Lake_Placid   F 8.55   3.51  9.41 13.04   October 2019.0
## 3296  K.elegans     Lake_Placid   M 5.26   2.49  4.75  7.85   October 2019.0
## 3297  K.elegans     Lake_Placid   M 5.34   3.29  8.27 11.53   October 2019.0
## 3298  K.elegans     Lake_Placid   F 8.58   4.01 10.29 14.13   October 2019.0
## 3299  K.elegans     Lake_Placid   M 5.67   3.13  8.83 11.97   October 2019.0
## 3300  K.elegans     Lake_Placid   F 7.28   3.39  9.20 12.70   October 2019.0
## 3301  K.elegans     Lake_Placid   M 5.45   2.73  7.55 10.53   October 2019.0
## 3302  K.elegans     Lake_Placid   F 7.77   3.57  9.38 13.25   October 2019.0
## 3303  K.elegans     Lake_Placid   M 5.60   3.18  8.56 11.45   October 2019.0
## 3304  K.elegans     Lake_Placid   F 7.01   3.26  8.98 12.27   October 2019.0
## 3305  K.elegans     Lake_Placid   F 8.30   3.56  9.82 13.30   October 2019.0
## 3306  K.elegans     Lake_Placid   M 5.52   3.03  8.63 11.83   October 2019.0
## 3307  K.elegans     Lake_Placid   F 8.05   3.98 10.30 13.68   October 2019.0
## 3308  K.elegans     Lake_Placid   M 5.45   2.98  8.20 11.36   October 2019.0
## 3309  K.elegans     Lake_Placid   M 5.23   2.70  7.29 10.23   October 2019.0
## 3310 C.corindum North_Key_Largo   M 6.13   3.31  8.68 11.69   October 2019.0
## 3311 C.corindum North_Key_Largo   F 7.86   3.39  8.71 12.27   October 2019.0
## 3312 C.corindum North_Key_Largo   M 6.32   2.97  8.00 11.25   October 2019.0
## 3313 C.corindum North_Key_Largo   M 5.96   3.11  8.01 11.00   October 2019.0
## 3314  K.elegans       Homestead   F 6.67   3.83 10.20 13.74  December 2016.0
## 3315  K.elegans       Homestead   M 5.04   3.01  4.90  8.22  December 2016.0
## 3316  K.elegans       Homestead   F 5.98   3.43  6.56 10.01  December 2016.0
## 3317  K.elegans       Homestead   M 4.99   3.01  5.16  8.13  December 2016.0
## 3318 C.corindum       Key_Largo   M 6.63   3.48  9.29 12.39   October 2019.0
## 3319 C.corindum       Key_Largo   M 5.74   3.33  9.12 12.96   October 2019.0
## 3320 C.corindum       Key_Largo   F 7.99   3.39  8.82 12.51   October 2019.0
## 3321 C.corindum       Key_Largo   M 6.48   3.08  8.66 11.97   October 2019.0
## 3322 C.corindum       Key_Largo   F 9.08   3.80  9.96 13.69   October 2019.0
## 3323 C.corindum       Key_Largo   F 8.51   3.39  8.87 12.56   October 2019.0
## 3324 C.corindum       Key_Largo   F 8.10   3.33  8.81 12.46   October 2019.0
## 3325 C.corindum North_Key_Largo   M 6.46   3.17  8.67 11.75   October 2019.0
## 3326 C.corindum North_Key_Largo   F 9.38   3.79  9.78 13.51   October 2019.0
## 3327 C.corindum North_Key_Largo   F 7.63   3.31  8.50 11.85   October 2019.0
## 3328 C.corindum North_Key_Largo   M 5.53   2.67  4.40  7.45   October 2019.0
## 3329 C.corindum North_Key_Largo   M 6.08   3.08  8.26 11.10   October 2019.0
## 3330 C.corindum North_Key_Largo   M 5.13   2.30  3.98  6.74   October 2019.0
## 3331 C.corindum       Key_Largo   M 6.24   3.11  8.16 10.98   October 2019.0
## 3332 C.corindum       Key_Largo   F 7.62   3.56 10.13 13.24   October 2019.0
## 3333 C.corindum       Key_Largo   M 6.21   2.72  7.57 10.43   October 2019.0
## 3334 C.corindum North_Key_Largo   F 8.70   3.65  8.90 12.61   October 2019.0
## 3335 C.corindum North_Key_Largo   F 6.85   3.46  8.84 12.45   October 2019.0
## 3336 C.corindum North_Key_Largo   M 6.29   3.17  8.33 11.61   October 2019.0
## 3337 C.corindum North_Key_Largo   F 9.20   3.71  9.88 13.59   October 2019.0
## 3338 C.corindum North_Key_Largo   M 6.10   2.79  7.52 10.50   October 2019.0
## 3339 C.corindum North_Key_Largo   F 8.19   3.33  8.56 12.04   October 2019.0
## 3340  K.elegans      Lake_Wales   F 7.30   3.55  8.87 12.19       May 2019.0
## 3341  K.elegans      Lake_Wales   M 5.60   3.03  4.81  9.19       May 2019.0
## 3342  K.elegans      Lake_Wales   F 5.39   3.24  9.04 11.42       May 2019.0
## 3343  K.elegans      Lake_Wales   F 8.77   3.47  9.86 13.11       May 2019.0
## 3344  K.elegans      Lake_Wales   F 5.54   3.56  9.36 11.96       May 2019.0
## 3345  K.elegans      Lake_Wales   F 5.61   2.90  7.85 10.94       May 2019.0
## 3346  K.elegans      Lake_Wales   F 5.41   3.07  7.81 11.49       May 2019.0
## 3347  K.elegans      Lake_Wales   F 5.38   2.85  7.73 10.62       May 2019.0
## 3348  K.elegans      Lake_Wales   F 5.30   2.84  7.71 10.18       May 2019.0
## 3349  K.elegans      Lake_Wales   M 5.53   3.19  8.23 11.62       May 2019.0
## 3350  K.elegans      Lake_Wales   F 7.60   3.42  9.66 12.71       May 2019.0
## 3351  K.elegans      Lake_Wales   M 6.16   3.20  8.74 11.26       May 2019.0
## 3352  K.elegans      Lake_Wales   F 5.68   3.02  8.76 11.36       May 2019.0
## 3353  K.elegans      Lake_Wales   F 5.82   3.44  7.86 10.52       May 2019.0
## 3354  K.elegans      Lake_Wales   F 7.61   3.63  9.68 13.46       May 2019.0
## 3355  K.elegans      Lake_Wales   F 5.33   3.25  8.99 11.19       May 2019.0
## 3356  K.elegans      Lake_Wales   F 8.11   3.81 10.20 13.80       May 2019.0
## 3357  K.elegans      Lake_Wales   F 5.83   2.75  7.85 10.90       May 2019.0
## 3358  K.elegans      Lake_Wales   F 5.58   3.06  7.93 10.52       May 2019.0
## 3359  K.elegans      Lake_Wales   F 6.99   3.29  7.65 11.30       May 2019.0
## 3360  K.elegans      Lake_Wales   F 5.63   3.27  8.88 12.22       May 2019.0
## 3361  K.elegans      Lake_Wales   F 5.45   3.13  7.90 11.27       May 2019.0
## 3362  K.elegans      Lake_Wales   M 5.93   3.02  8.30 10.91       May 2019.0
## 3363  K.elegans      Lake_Wales   M 5.55   2.82  9.16 12.70       May 2019.0
## 3364  K.elegans      Lake_Wales   F 7.93   3.35  9.39 12.66       May 2019.0
## 3365  K.elegans      Lake_Wales   F 7.61   3.43  9.91 13.19       May 2019.0
## 3366  K.elegans      Lake_Wales   F 7.29   3.83  9.95 12.89       May 2019.0
## 3367  K.elegans      Lake_Wales   F 8.09   3.91  9.54 13.15       May 2019.0
## 3368  K.elegans      Lake_Wales   M 7.90   3.83 10.57 13.70       May 2019.0
## 3369  K.elegans      Lake_Wales   M 6.01   3.05  8.95 11.03       May 2019.0
## 3370  K.elegans      Lake_Wales   F 8.21   3.66  9.95 13.04       May 2019.0
## 3371  K.elegans      Lake_Wales   F 5.89   3.32  8.94 11.76       May 2019.0
## 3372  K.elegans      Lake_Wales   F 5.76   3.15  8.24 10.60       May 2019.0
## 3373  K.elegans      Lake_Wales   M 5.91   2.96  8.98 11.53       May 2019.0
## 3374  K.elegans      Lake_Wales   F 6.94   3.15  8.86 11.75       May 2019.0
## 3375  K.elegans      Lake_Wales   M 5.98   3.23  8.82 12.13       May 2019.0
## 3376  K.elegans      Lake_Wales   F 5.72   3.30  7.89 11.83       May 2019.0
## 3377  K.elegans      Lake_Wales   F 6.52   3.07  8.38 11.57       May 2019.0
## 3378  K.elegans      Lake_Wales   F 7.74   3.78 10.61 14.29       May 2019.0
## 3379  K.elegans      Lake_Wales   M 8.29   3.87  9.00 13.42       May 2019.0
## 3380  K.elegans      Lake_Wales   M 6.01   3.20  8.47 11.67       May 2019.0
## 3381  K.elegans      Lake_Wales   F 7.97   3.77 10.33 13.31       May 2019.0
## 3382  K.elegans      Lake_Wales   M 4.91   2.50  5.52  8.20       May 2019.0
## 3383  K.elegans      Lake_Wales   F 5.38   2.41  5.35  7.90       May 2019.0
## 3384  K.elegans      Lake_Wales   F 7.94   3.46 10.47 13.06       May 2019.0
## 3385  K.elegans      Lake_Wales   F 5.03   3.33  9.30 11.71       May 2019.0
## 3386  K.elegans      Lake_Wales   M 7.70   3.75  9.54 14.35       May 2019.0
## 3387  K.elegans      Lake_Wales   F 8.74   3.83 10.33 13.42       May 2019.0
## 3388  K.elegans      Lake_Wales   M 5.27   2.82  7.38 11.04       May 2019.0
## 3389  K.elegans      Lake_Wales   F 8.03   4.02 10.32 14.91       May 2019.0
## 3390  K.elegans      Lake_Wales   F 5.89   3.16  7.98 11.63       May 2019.0
## 3391  K.elegans      Lake_Wales   F 7.58   3.31  9.31 12.52       May 2019.0
## 3392  K.elegans      Lake_Wales   F 6.15   2.68  8.15 10.95       May 2019.0
## 3393  K.elegans      Lake_Wales   M 5.86   3.10  9.14 13.17       May 2019.0
## 3394  K.elegans        Leesburg   M 4.95   2.94  8.49 11.75       May 2019.0
## 3395  K.elegans        Leesburg   F 7.61   3.69  9.49 12.75       May 2019.0
## 3396  K.elegans        Leesburg   F 6.04   3.38  8.12 11.15       May 2019.0
## 3397  K.elegans        Leesburg   F 8.20   3.76 10.23 13.56       May 2019.0
## 3398  K.elegans        Leesburg   F 5.63   3.00  7.86 11.44       May 2019.0
## 3399  K.elegans        Leesburg   M 6.32   3.07  8.06 12.65       May 2019.0
## 3400  K.elegans        Leesburg   F 5.98   3.14  9.34 11.99       May 2019.0
## 3401  K.elegans        Leesburg   F 5.64   2.64  7.54 11.01       May 2019.0
## 3402  K.elegans        Leesburg   F 5.71   3.21  7.17 10.12       May 2019.0
## 3403  K.elegans        Leesburg   F 6.80   3.26  9.16 12.20       May 2019.0
## 3404  K.elegans        Leesburg   M 8.02   4.11 10.30 13.75       May 2019.0
## 3405  K.elegans        Leesburg   M 6.01   3.03  8.36 11.29       May 2019.0
## 3406  K.elegans        Leesburg   M 8.45   3.79  9.95 13.41       May 2019.0
## 3407  K.elegans        Leesburg   F 5.74   2.78  7.73 10.04       May 2019.0
## 3408  K.elegans        Leesburg   F 8.01   3.75  9.69 13.09       May 2019.0
## 3409  K.elegans        Leesburg   F 5.52   3.02  8.25 11.29       May 2019.0
## 3410  K.elegans        Leesburg   F 5.72   3.07  8.30 10.99       May 2019.0
## 3411  K.elegans        Leesburg   M 5.92   3.40  8.73 11.31       May 2019.0
## 3412  K.elegans        Leesburg   F 5.49   3.13  9.05 11.96       May 2019.0
## 3413  K.elegans        Leesburg   F 5.65   3.09  9.00 11.77       May 2019.0
## 3414  K.elegans        Leesburg   M 5.69   3.09  8.69 11.57       May 2019.0
## 3415  K.elegans        Leesburg   M 6.63   3.60  7.98 11.85       May 2019.0
## 3416  K.elegans        Leesburg   F 6.15   3.32  9.87 11.65       May 2019.0
## 3417  K.elegans        Leesburg   F 6.59   3.46  8.66 12.22       May 2019.0
## 3418  K.elegans        Leesburg   F 6.45   2.89  8.35 11.29       May 2019.0
## 3419  K.elegans        Leesburg   F 8.15   3.58  9.72 12.69       May 2019.0
## 3420  K.elegans        Leesburg   F 6.74   2.99  7.77 11.37       May 2019.0
## 3421  K.elegans        Leesburg   F 7.56   3.68  8.50 11.51       May 2019.0
## 3422  K.elegans        Leesburg   F 6.49   3.46  8.32 11.53       May 2019.0
## 3423  K.elegans        Leesburg   F 5.46   2.75  7.71 10.50       May 2019.0
## 3424  K.elegans        Leesburg   F 6.77   3.49  8.87 11.43       May 2019.0
## 3425  K.elegans        Leesburg   F 7.32   3.86  9.21 12.80       May 2019.0
## 3426  K.elegans        Leesburg   F 6.26   3.33  8.34 11.48       May 2019.0
## 3427  K.elegans        Leesburg   F 6.58   3.89  9.46 12.71       May 2019.0
## 3428  K.elegans        Leesburg   F 5.73   3.29  8.17 10.88       May 2019.0
## 3429  K.elegans        Leesburg   F 8.16   3.80  8.72 12.91       May 2019.0
## 3430  K.elegans        Leesburg   M 7.92   3.68  9.96 13.18       May 2019.0
## 3431  K.elegans        Leesburg   F 5.22   2.56  4.47  7.37       May 2019.0
## 3432  K.elegans        Leesburg   F 6.61   3.47  8.06 11.23       May 2019.0
## 3433  K.elegans        Leesburg   M 7.55   3.34  9.36 12.18       May 2019.0
## 3434  K.elegans        Leesburg   F 5.68   3.12  8.47 11.10       May 2019.0
## 3435  K.elegans        Leesburg   F 6.65   3.31  9.43 12.04       May 2019.0
## 3436  K.elegans        Leesburg   F 7.11   3.62  8.37 11.98       May 2019.0
## 3437  K.elegans        Leesburg   F 5.72   3.26  8.98 11.43       May 2019.0
## 3438  K.elegans        Leesburg   F 6.46   3.28  9.18 12.11       May 2019.0
## 3439  K.elegans        Leesburg   M 5.84   3.46  8.42 11.28       May 2019.0
## 3440  K.elegans        Leesburg   F 4.99   3.36  8.48 11.44       May 2019.0
## 3441  K.elegans        Leesburg   F 6.26   3.31  8.11 11.90       May 2019.0
## 3442  K.elegans        Leesburg   M 5.64   3.66  9.15 11.84       May 2019.0
## 3443  K.elegans        Leesburg   F 6.78   3.90  9.55 13.74       May 2019.0
## 3444  K.elegans        Leesburg   F 6.17   3.85  8.72 12.44       May 2019.0
## 3445  K.elegans        Leesburg   F 8.11   4.17  9.65 13.41       May 2019.0
## 3446  K.elegans        Leesburg   M 6.20   3.92  8.52 12.01       May 2019.0
## 3447  K.elegans        Leesburg   F 5.55   3.55  8.36 11.87       May 2019.0
##      months_since_start season w_morph      lat      long
## 1                     0 spring       L 26.63401 -81.87987
## 2                     0 spring       L 26.63401 -81.87987
## 3                     0 spring       L 26.63401 -81.87987
## 4                     0 spring       L 26.63401 -81.87987
## 5                     0 spring       L 26.63401 -81.87987
## 6                     0 spring       L 26.63401 -81.87987
## 7                     0 spring       L 26.63401 -81.87987
## 8                     0 spring       L 26.63401 -81.87987
## 9                     0 spring       L 26.63401 -81.87987
## 10                    0 spring       L 26.63401 -81.87987
## 11                    0 spring       L 26.63401 -81.87987
## 12                    0 spring       L 26.63401 -81.87987
## 13                    0 spring       L 26.63401 -81.87987
## 14                    0 spring       L 26.63401 -81.87987
## 15                    0 spring       S 26.63401 -81.87987
## 16                    0 spring       L 26.63401 -81.87987
## 17                    0 spring       L 26.63401 -81.87987
## 18                    0 spring       L 26.63401 -81.87987
## 19                    0 spring       L 26.63401 -81.87987
## 20                    0 spring       L 26.63401 -81.87987
## 21                    0 spring       L 26.63401 -81.87987
## 22                    0 spring       L 26.63401 -81.87987
## 23                    0 spring       L 26.63401 -81.87987
## 24                    0 spring       L 26.63401 -81.87987
## 25                    0 spring       L 26.63401 -81.87987
## 26                    0 spring       L 26.63401 -81.87987
## 27                    0 spring       L 26.63401 -81.87987
## 28                    0 spring       L 26.63401 -81.87987
## 29                    0 spring       S 26.63401 -81.87987
## 30                    0 spring       S 26.63401 -81.87987
## 31                    0 spring       L 26.63401 -81.87987
## 32                    0 spring       L 26.63401 -81.87987
## 33                    0 spring       L 26.63401 -81.87987
## 34                    0 spring       L 26.63401 -81.87987
## 35                    0 spring       S 26.63401 -81.87987
## 36                    0 spring       L 26.63401 -81.87987
## 37                    0 spring       L 26.63401 -81.87987
## 38                    0 spring       L 26.63401 -81.87987
## 39                    0 spring       L 26.63401 -81.87987
## 40                    0 spring       L 26.63401 -81.87987
## 41                    0 spring       L 26.63401 -81.87987
## 42                    0 spring       L 26.63401 -81.87987
## 43                    0 spring       L 26.63401 -81.87987
## 44                    0 spring       S 26.63401 -81.87987
## 45                    0 spring       L 26.63401 -81.87987
## 46                    0 spring       L 26.63401 -81.87987
## 47                    0 spring       L 26.63401 -81.87987
## 48                    0 spring       S 26.63401 -81.87987
## 49                    0 spring       L 26.63401 -81.87987
## 50                    0 spring       L 26.63401 -81.87987
## 51                    0 spring       L 26.63401 -81.87987
## 52                    0 spring       L 26.63401 -81.87987
## 53                    0 spring       L 26.63401 -81.87987
## 54                    0 spring       L 26.63401 -81.87987
## 55                    0 spring       L 26.63401 -81.87987
## 56                    0 spring       L 26.63401 -81.87987
## 57                    0 spring       L 26.63401 -81.87987
## 58                    0 spring       L 26.63401 -81.87987
## 59                    0 spring       L 26.63401 -81.87987
## 60                    0 spring       L 26.63401 -81.87987
## 61                    0 spring       L 26.63401 -81.87987
## 62                    0 spring       L 26.63401 -81.87987
## 63                    0 spring       L 26.63401 -81.87987
## 64                    0 spring       L 26.63401 -81.87987
## 65                    0 spring       L 26.63401 -81.87987
## 66                    0 spring       L 26.63401 -81.87987
## 67                    0 spring       L 26.63401 -81.87987
## 68                    0 spring       L 26.63401 -81.87987
## 69                    0 spring       L 26.63401 -81.87987
## 70                    0 spring       L 26.63401 -81.87987
## 71                    0 spring       L 26.63401 -81.87987
## 72                    0 spring       L 26.63401 -81.87987
## 73                    0 spring       L 26.63401 -81.87987
## 74                    0 spring       L 26.63401 -81.87987
## 75                    0 spring       L 26.63401 -81.87987
## 76                    0 spring       S 25.49172 -80.48586
## 77                    0 spring       L 25.49172 -80.48586
## 78                    0 spring       L 25.49172 -80.48586
## 79                    0 spring       L 25.49172 -80.48586
## 80                    0 spring       S 25.49172 -80.48586
## 81                    0 spring       L 25.49172 -80.48586
## 82                    0 spring       S 25.49172 -80.48586
## 83                    0 spring       S 25.49172 -80.48586
## 84                    0 spring       L 25.49172 -80.48586
## 85                    0 spring       S 25.49172 -80.48586
## 86                    0 spring       S 25.49172 -80.48586
## 87                    0 spring       S 25.49172 -80.48586
## 88                    0 spring       S 25.49172 -80.48586
## 89                    0 spring       S 25.49172 -80.48586
## 90                    0 spring       S 25.49172 -80.48586
## 91                    0 spring       S 25.49172 -80.48586
## 92                    0 spring       S 25.49172 -80.48586
## 93                    0 spring       L 25.49172 -80.48586
## 94                    0 spring       L 25.49172 -80.48586
## 95                    0 spring       S 25.49172 -80.48586
## 96                    0 spring       L 25.49172 -80.48586
## 97                    0 spring       L 25.49172 -80.48586
## 98                    0 spring       L 25.49172 -80.48586
## 99                    0 spring       L 25.49172 -80.48586
## 100                   0 spring       S 25.49172 -80.48586
## 101                   0 spring       L 25.49172 -80.48586
## 102                   0 spring       L 25.49172 -80.48586
## 103                   0 spring       L 25.49172 -80.48586
## 104                   0 spring       L 25.49172 -80.48586
## 105                   0 spring       L 25.49172 -80.48586
## 106                   0 spring       L 25.49172 -80.48586
## 107                   0 spring       S 25.49172 -80.48586
## 108                   0 spring       L 25.49172 -80.48586
## 109                   0 spring       L 25.49172 -80.48586
## 110                   0 spring       L 25.49172 -80.48586
## 111                   0 spring       L 25.49172 -80.48586
## 112                   0 spring       S 25.49172 -80.48586
## 113                   0 spring       L 25.49172 -80.48586
## 114                   0 spring       L 25.49172 -80.48586
## 115                   0 spring       L 25.49172 -80.48586
## 116                   0 spring       L 25.49172 -80.48586
## 117                   0 spring       L 25.49172 -80.48586
## 118                   0 spring       L 25.49172 -80.48586
## 119                   0 spring       L 25.49172 -80.48586
## 120                   0 spring       L 25.49172 -80.48586
## 121                   0 spring       L 25.49172 -80.48586
## 122                   0 spring       L 25.49172 -80.48586
## 123                   0 spring       L 25.49172 -80.48586
## 124                   0 spring       L 25.49172 -80.48586
## 125                   0 spring       L 25.49172 -80.48586
## 126                   0 spring       L 25.49172 -80.48586
## 127                   0 spring       L 25.49172 -80.48586
## 128                   0 spring       L 25.49172 -80.48586
## 129                   0 spring       L 25.49172 -80.48586
## 130                   0 spring       L 25.49172 -80.48586
## 131                   0 spring       L 25.49172 -80.48586
## 132                   0 spring       L 25.49172 -80.48586
## 133                   0 spring       L 25.49172 -80.48586
## 134                   0 spring       L 25.49172 -80.48586
## 135                   0 spring       L 25.49172 -80.48586
## 136                   0 spring       L 25.49172 -80.48586
## 137                   0 spring       L 25.49172 -80.48586
## 138                   0 spring       L 25.49172 -80.48586
## 139                   0 spring       L 25.49172 -80.48586
## 140                   0 spring       L 25.12308 -80.41528
## 141                   0 spring       L 25.12308 -80.41528
## 142                   0 spring       L 25.12308 -80.41528
## 143                   0 spring       L 25.12308 -80.41528
## 144                   0 spring       S 25.12308 -80.41528
## 145                   0 spring       L 25.12308 -80.41528
## 146                   0 spring       L 25.12308 -80.41528
## 147                   0 spring       L 25.12308 -80.41528
## 148                   0 spring       L 25.12308 -80.41528
## 149                   0 spring       L 25.12308 -80.41528
## 150                   0 spring       S 25.12308 -80.41528
## 151                   0 spring       L 25.12308 -80.41528
## 152                   0 spring       L 25.12308 -80.41528
## 153                   0 spring       L 25.12308 -80.41528
## 154                   0 spring       L 25.12308 -80.41528
## 155                   0 spring       L 25.12308 -80.41528
## 156                   0 spring       L 25.12308 -80.41528
## 157                   0 spring       L 25.12308 -80.41528
## 158                   0 spring       L 25.12308 -80.41528
## 159                   0 spring       S 25.12308 -80.41528
## 160                   0 spring       L 25.12308 -80.41528
## 161                   0 spring       S 25.12308 -80.41528
## 162                   0 spring       L 25.12308 -80.41528
## 163                   0 spring       L 25.12308 -80.41528
## 164                   0 spring       L 25.12308 -80.41528
## 165                   0 spring       L 25.12308 -80.41528
## 166                   0 spring       L 25.12308 -80.41528
## 167                   0 spring       L 25.12308 -80.41528
## 168                   0 spring       L 25.12308 -80.41528
## 169                   0 spring       L 25.12308 -80.41528
## 170                   0 spring       L 25.12308 -80.41528
## 171                   0 spring       L 25.12308 -80.41528
## 172                   0 spring       L 25.12308 -80.41528
## 173                   0 spring       L 25.12308 -80.41528
## 174                   0 spring       L 25.12308 -80.41528
## 175                   0 spring       S 25.12308 -80.41528
## 176                   0 spring       L 25.12308 -80.41528
## 177                   0 spring       L 25.12308 -80.41528
## 178                   0 spring       L 25.12308 -80.41528
## 179                   0 spring       L 25.12308 -80.41528
## 180                   0 spring       L 25.12308 -80.41528
## 181                   0 spring       L 25.12308 -80.41528
## 182                   0 spring       S 25.12308 -80.41528
## 183                   0 spring       L 25.12308 -80.41528
## 184                   0 spring       S 25.12308 -80.41528
## 185                   0 spring       L 25.12308 -80.41528
## 186                   0 spring       L 25.12308 -80.41528
## 187                   0 spring       L 25.12308 -80.41528
## 188                   0 spring       L 25.12308 -80.41528
## 189                   0 spring       S 25.12308 -80.41528
## 190                   0 spring       S 25.12308 -80.41528
## 191                   0 spring       L 25.12308 -80.41528
## 192                   0 spring       L 25.12308 -80.41528
## 193                   0 spring       S 25.12308 -80.41528
## 194                   0 spring       S 25.12308 -80.41528
## 195                   0 spring       L 25.12308 -80.41528
## 196                   0 spring       L 25.12308 -80.41528
## 197                   0 spring       L 25.12308 -80.41528
## 198                   0 spring       L 25.12308 -80.41528
## 199                   0 spring       L 25.12308 -80.41528
## 200                   0 spring       L 25.12308 -80.41528
## 201                   0 spring       L 27.90335 -81.58946
## 202                   0 spring       L 27.90335 -81.58946
## 203                   0 spring       L 27.90335 -81.58946
## 204                   0 spring       L 27.90335 -81.58946
## 205                   0 spring       L 27.90335 -81.58946
## 206                   0 spring       L 27.90335 -81.58946
## 207                   0 spring       L 27.90335 -81.58946
## 208                   0 spring       L 27.90335 -81.58946
## 209                   0 spring       L 27.90335 -81.58946
## 210                   0 spring       L 27.90335 -81.58946
## 211                   0 spring       L 27.90335 -81.58946
## 212                   0 spring       L 27.90335 -81.58946
## 213                   0 spring       L 27.90335 -81.58946
## 214                   0 spring       S 27.90335 -81.58946
## 215                   0 spring       L 27.90335 -81.58946
## 216                   0 spring       S 27.90335 -81.58946
## 217                   0 spring       L 27.90335 -81.58946
## 218                   0 spring       S 27.90335 -81.58946
## 219                   0 spring       L 27.90335 -81.58946
## 220                   0 spring       L 27.90335 -81.58946
## 221                   0 spring       L 27.90335 -81.58946
## 222                   0 spring       L 27.90335 -81.58946
## 223                   0 spring       L 27.90335 -81.58946
## 224                   0 spring       L 27.90335 -81.58946
## 225                   0 spring       S 27.90335 -81.58946
## 226                   0 spring       L 27.90335 -81.58946
## 227                   0 spring       L 27.90335 -81.58946
## 228                   0 spring       L 27.90335 -81.58946
## 229                   0 spring       S 27.90335 -81.58946
## 230                   0 spring       L 27.90335 -81.58946
## 231                   0 spring       L 27.90335 -81.58946
## 232                   0 spring       L 27.90335 -81.58946
## 233                   0 spring       L 27.90335 -81.58946
## 234                   0 spring       L 27.90335 -81.58946
## 235                   0 spring       L 27.90335 -81.58946
## 236                   0 spring       L 27.90335 -81.58946
## 237                   0 spring       L 27.90335 -81.58946
## 238                   0 spring       L 27.90335 -81.58946
## 239                   0 spring       L 27.90335 -81.58946
## 240                   0 spring       L 27.90335 -81.58946
## 241                   0 spring       L 27.90335 -81.58946
## 242                   0 spring       S 27.90335 -81.58946
## 243                   0 spring       L 27.90335 -81.58946
## 244                   0 spring       L 27.90335 -81.58946
## 245                   0 spring       L 27.90335 -81.58946
## 246                   0 spring       L 27.90335 -81.58946
## 247                   0 spring       L 27.90335 -81.58946
## 248                   0 spring       L 27.90335 -81.58946
## 249                   0 spring       L 27.90335 -81.58946
## 250                   0 spring       L 27.90335 -81.58946
## 251                   0 spring       L 27.90335 -81.58946
## 252                   0 spring       L 27.90335 -81.58946
## 253                   0 spring       L 27.90335 -81.58946
## 254                   0 spring       L 27.90335 -81.58946
## 255                   0 spring       L 27.90335 -81.58946
## 256                   0 spring       L 27.90335 -81.58946
## 257                   0 spring       L 27.90335 -81.58946
## 258                   0 spring       S 27.90335 -81.58946
## 259                   0 spring       L 27.90335 -81.58946
## 260                   0 spring       L 27.90335 -81.58946
## 261                   0 spring       S 28.79602 -81.87777
## 262                   0 spring       S 28.79602 -81.87777
## 263                   0 spring       L 28.79602 -81.87777
## 264                   0 spring       S 28.79602 -81.87777
## 265                   0 spring       L 28.79602 -81.87777
## 266                   0 spring       S 28.79602 -81.87777
## 267                   0 spring       L 28.79602 -81.87777
## 268                   0 spring       L 28.79602 -81.87777
## 269                   0 spring       L 28.79602 -81.87777
## 270                   0 spring       L 28.79602 -81.87777
## 271                   0 spring       L 28.79602 -81.87777
## 272                   0 spring       L 28.79602 -81.87777
## 273                   0 spring       L 28.79602 -81.87777
## 274                   0 spring       S 28.79602 -81.87777
## 275                   0 spring       L 28.79602 -81.87777
## 276                   0 spring       L 28.79602 -81.87777
## 277                   0 spring       L 28.79602 -81.87777
## 278                   0 spring       L 28.79602 -81.87777
## 279                   0 spring       L 28.79602 -81.87777
## 280                   0 spring       L 28.79602 -81.87777
## 281                   0 spring       S 28.79602 -81.87777
## 282                   0 spring       L 28.79602 -81.87777
## 283                   0 spring       L 28.79602 -81.87777
## 284                   0 spring       S 28.79602 -81.87777
## 285                   0 spring       L 28.79602 -81.87777
## 286                   0 spring       L 24.96448 -80.56739
## 287                   0 spring       S 24.96448 -80.56739
## 288                   0 spring       L 24.96448 -80.56739
## 289                   0 spring       L 24.96448 -80.56739
## 290                   0 spring       L 24.96448 -80.56739
## 291                   0 spring       L 24.96448 -80.56739
## 292                   0 spring       L 24.96448 -80.56739
## 293                   0 spring       S 24.96448 -80.56739
## 294                   0 spring       L 24.96448 -80.56739
## 295                   0 spring       S 24.96448 -80.56739
## 296                   0 spring       S 24.96448 -80.56739
## 297                   0 spring       S 24.96448 -80.56739
## 298                   0 spring       L 24.96448 -80.56739
## 299                   0 spring       S 24.96448 -80.56739
## 300                   0 spring       L 24.96448 -80.56739
## 301                   0 spring       L 24.96448 -80.56739
## 302                   0 spring       L 24.96448 -80.56739
## 303                   0 spring       L 24.96448 -80.56739
## 304                   0 spring       S 24.96448 -80.56739
## 305                   0 spring       L 24.96448 -80.56739
## 306                   0 spring       L 24.96448 -80.56739
## 307                   0 spring       S 24.96448 -80.56739
## 308                   0 spring       S 24.96448 -80.56739
## 309                   0 spring       L 24.96448 -80.56739
## 310                   0 spring       S 24.96448 -80.56739
## 311                   0 spring       S 24.96448 -80.56739
## 312                   0 spring       S 24.96448 -80.56739
## 313                   0 spring       L 24.96448 -80.56739
## 314                   0 spring       L 24.96448 -80.56739
## 315                   0 spring       L 24.96448 -80.56739
## 316                   0 spring       L 24.96448 -80.56739
## 317                   0 spring       S 24.96448 -80.56739
## 318                   0 spring       S 24.96448 -80.56739
## 319                   0 spring       L 24.96448 -80.56739
## 320                   0 spring       S 24.96448 -80.56739
## 321                   0 spring       L 24.96448 -80.56739
## 322                   7 winter       L 26.63401 -81.87987
## 323                   7 winter       L 26.63401 -81.87987
## 324                   7 winter       L 26.63401 -81.87987
## 325                   7 winter       L 26.63401 -81.87987
## 326                   7 winter       L 26.63401 -81.87987
## 327                   7 winter       L 26.63401 -81.87987
## 328                   7 winter       L 26.63401 -81.87987
## 329                   7 winter       L 26.63401 -81.87987
## 330                   7 winter       L 26.63401 -81.87987
## 331                   7 winter       L 26.63401 -81.87987
## 332                   7 winter       L 26.63401 -81.87987
## 333                   7 winter       S 26.63401 -81.87987
## 334                   7 winter       L 26.63401 -81.87987
## 335                   7 winter       L 26.63401 -81.87987
## 336                   7 winter       L 26.63401 -81.87987
## 337                   7 winter       L 26.63401 -81.87987
## 338                   7 winter       L 26.63401 -81.87987
## 339                   7 winter       L 26.63401 -81.87987
## 340                   7 winter       L 26.63401 -81.87987
## 341                   7 winter       L 26.63401 -81.87987
## 342                   7 winter       L 26.63401 -81.87987
## 343                   7 winter       L 26.63401 -81.87987
## 344                   7 winter       L 26.63401 -81.87987
## 345                   7 winter       L 26.63401 -81.87987
## 346                   7 winter       L 26.63401 -81.87987
## 347                   7 winter       L 26.63401 -81.87987
## 348                   7 winter       L 26.63401 -81.87987
## 349                   7 winter       L 26.63401 -81.87987
## 350                   7 winter       L 26.63401 -81.87987
## 351                   7 winter       L 26.63401 -81.87987
## 352                   7 winter       L 26.63401 -81.87987
## 353                   7 winter       L 26.63401 -81.87987
## 354                   7 winter       L 26.63401 -81.87987
## 355                   7 winter       L 26.63401 -81.87987
## 356                   7 winter       L 26.63401 -81.87987
## 357                   7 winter       L 26.63401 -81.87987
## 358                   7 winter       L 26.63401 -81.87987
## 359                   7 winter       L 26.63401 -81.87987
## 360                   7 winter       L 26.63401 -81.87987
## 361                   7 winter       L 26.63401 -81.87987
## 362                   7 winter       L 26.63401 -81.87987
## 363                   7 winter       L 26.63401 -81.87987
## 364                   7 winter       L 26.63401 -81.87987
## 365                   7 winter       L 26.63401 -81.87987
## 366                   7 winter       L 26.63401 -81.87987
## 367                   7 winter       L 26.63401 -81.87987
## 368                   7 winter       L 26.63401 -81.87987
## 369                   7 winter       L 26.63401 -81.87987
## 370                   7 winter       L 26.63401 -81.87987
## 371                   7 winter       L 26.63401 -81.87987
## 372                   7 winter       L 26.63401 -81.87987
## 373                   7 winter       L 26.63401 -81.87987
## 374                   7 winter       L 26.63401 -81.87987
## 375                   7 winter       L 26.63401 -81.87987
## 376                   7 winter       L 26.63401 -81.87987
## 377                   7 winter       L 26.63401 -81.87987
## 378                   7 winter       L 26.63401 -81.87987
## 379                   7 winter       L 26.63401 -81.87987
## 380                   7 winter       L 26.63401 -81.87987
## 381                   7 winter       L 26.63401 -81.87987
## 382                   7 winter       L 26.63401 -81.87987
## 383                   7 winter       L 26.63401 -81.87987
## 384                   7 winter       L 26.63401 -81.87987
## 385                   7 winter       L 26.63401 -81.87987
## 386                   7 winter       L 26.63401 -81.87987
## 387                   7 winter       L 26.63401 -81.87987
## 388                   7 winter       L 26.63401 -81.87987
## 389                   7 winter       L 26.63401 -81.87987
## 390                   7 winter       L 26.63401 -81.87987
## 391                   7 winter       L 26.63401 -81.87987
## 392                   7 winter       L 26.63401 -81.87987
## 393                   7 winter       L 26.63401 -81.87987
## 394                   7 winter       L 26.63401 -81.87987
## 395                   7 winter       L 26.63401 -81.87987
## 396                   7 winter       L 26.63401 -81.87987
## 397                   7 winter       L 29.66374 -82.36091
## 398                   7 winter       L 29.66374 -82.36091
## 399                   7 winter       L 29.66374 -82.36091
## 400                   7 winter       L 29.66374 -82.36091
## 401                   7 winter       L 29.66374 -82.36091
## 402                   7 winter       L 29.66374 -82.36091
## 403                   7 winter       L 29.66374 -82.36091
## 404                   7 winter       L 29.66374 -82.36091
## 405                   7 winter       L 29.66374 -82.36091
## 406                   7 winter       L 29.66374 -82.36091
## 407                   7 winter       L 29.66374 -82.36091
## 408                   7 winter       L 29.66374 -82.36091
## 409                   7 winter       L 29.66374 -82.36091
## 410                   7 winter       L 29.66374 -82.36091
## 411                   7 winter       S 25.49172 -80.48586
## 412                   7 winter       S 25.49172 -80.48586
## 413                   7 winter       L 25.49172 -80.48586
## 414                   7 winter       L 25.49172 -80.48586
## 415                   7 winter       S 25.49172 -80.48586
## 416                   7 winter       S 25.49172 -80.48586
## 417                   7 winter       L 25.49172 -80.48586
## 418                   7 winter       L 25.49172 -80.48586
## 419                   7 winter       S 25.49172 -80.48586
## 420                   7 winter       L 25.49172 -80.48586
## 421                   7 winter       S 25.49172 -80.48586
## 422                   7 winter       L 25.49172 -80.48586
## 423                   7 winter       S 25.49172 -80.48586
## 424                   7 winter       S 25.49172 -80.48586
## 425                   7 winter       L 25.49172 -80.48586
## 426                   7 winter       L 25.49172 -80.48586
## 427                   7 winter       S 25.49172 -80.48586
## 428                   7 winter       S 25.49172 -80.48586
## 429                   7 winter       S 25.49172 -80.48586
## 430                   7 winter       L 25.49172 -80.48586
## 431                   7 winter       L 25.49172 -80.48586
## 432                   7 winter       L 25.49172 -80.48586
## 433                   7 winter       L 25.49172 -80.48586
## 434                   7 winter       L 25.49172 -80.48586
## 435                   7 winter       S 25.49172 -80.48586
## 436                   7 winter       L 25.49172 -80.48586
## 437                   7 winter       S 25.49172 -80.48586
## 438                   7 winter       S 25.49172 -80.48586
## 439                   7 winter       L 25.49172 -80.48586
## 440                   7 winter       L 25.49172 -80.48586
## 441                   7 winter       L 25.49172 -80.48586
## 442                   7 winter       L 25.49172 -80.48586
## 443                   7 winter       L 25.49172 -80.48586
## 444                   7 winter       S 25.49172 -80.48586
## 445                   7 winter       L 25.49172 -80.48586
## 446                   7 winter       L 25.49172 -80.48586
## 447                   7 winter       L 25.49172 -80.48586
## 448                   7 winter       S 25.49172 -80.48586
## 449                   7 winter       S 25.49172 -80.48586
## 450                   7 winter       L 25.49172 -80.48586
## 451                   7 winter       S 25.49172 -80.48586
## 452                   7 winter       S 25.49172 -80.48586
## 453                   7 winter       L 25.49172 -80.48586
## 454                   7 winter       L 25.49172 -80.48586
## 455                   7 winter       S 25.49172 -80.48586
## 456                   7 winter       L 25.49172 -80.48586
## 457                   7 winter       L 25.49172 -80.48586
## 458                   7 winter       S 25.49172 -80.48586
## 459                   7 winter       L 25.49172 -80.48586
## 460                   7 winter       L 25.49172 -80.48586
## 461                   7 winter       L 25.49172 -80.48586
## 462                   7 winter       L 25.49172 -80.48586
## 463                   7 winter       L 25.12308 -80.41528
## 464                   7 winter       L 25.12308 -80.41528
## 465                   7 winter       S 25.12308 -80.41528
## 466                   7 winter       L 25.12308 -80.41528
## 467                   7 winter       L 25.12308 -80.41528
## 468                   7 winter       L 25.12308 -80.41528
## 469                   7 winter       L 25.12308 -80.41528
## 470                   7 winter       S 25.12308 -80.41528
## 471                   7 winter       L 25.12308 -80.41528
## 472                   7 winter       S 25.12308 -80.41528
## 473                   7 winter       L 25.12308 -80.41528
## 474                   7 winter       L 25.12308 -80.41528
## 475                   7 winter       L 25.12308 -80.41528
## 476                   7 winter       L 25.12308 -80.41528
## 477                   7 winter       L 25.12308 -80.41528
## 478                   7 winter       S 25.12308 -80.41528
## 479                   7 winter       S 25.12308 -80.41528
## 480                   7 winter       L 25.12308 -80.41528
## 481                   7 winter       L 25.12308 -80.41528
## 482                   7 winter       L 25.12308 -80.41528
## 483                   7 winter       L 25.12308 -80.41528
## 484                   7 winter       L 25.12308 -80.41528
## 485                   7 winter       L 25.12308 -80.41528
## 486                   7 winter       L 25.12308 -80.41528
## 487                   7 winter       L 25.12308 -80.41528
## 488                   7 winter       L 25.12308 -80.41528
## 489                   7 winter       L 25.12308 -80.41528
## 490                   7 winter       L 25.12308 -80.41528
## 491                   7 winter       L 25.12308 -80.41528
## 492                   7 winter       L 25.12308 -80.41528
## 493                   7 winter       S 25.12308 -80.41528
## 494                   7 winter       L 25.12308 -80.41528
## 495                   7 winter       L 27.90335 -81.58946
## 496                   7 winter       L 27.90335 -81.58946
## 497                   7 winter       L 27.90335 -81.58946
## 498                   7 winter       L 27.90335 -81.58946
## 499                   7 winter       L 27.90335 -81.58946
## 500                   7 winter       L 27.90335 -81.58946
## 501                   7 winter       L 27.90335 -81.58946
## 502                   7 winter       L 27.90335 -81.58946
## 503                   7 winter       L 27.90335 -81.58946
## 504                   7 winter       L 27.90335 -81.58946
## 505                   7 winter       L 27.90335 -81.58946
## 506                   7 winter       L 27.90335 -81.58946
## 507                   7 winter       L 27.90335 -81.58946
## 508                   7 winter       L 27.90335 -81.58946
## 509                   7 winter       L 27.90335 -81.58946
## 510                   7 winter       L 27.90335 -81.58946
## 511                   7 winter       L 27.90335 -81.58946
## 512                   7 winter       L 27.90335 -81.58946
## 513                   7 winter       L 27.90335 -81.58946
## 514                   7 winter       L 27.90335 -81.58946
## 515                   7 winter       L 27.90335 -81.58946
## 516                   7 winter       L 27.90335 -81.58946
## 517                   7 winter       L 27.90335 -81.58946
## 518                   7 winter       L 27.90335 -81.58946
## 519                   7 winter       L 27.90335 -81.58946
## 520                   7 winter       L 27.90335 -81.58946
## 521                   7 winter       L 27.90335 -81.58946
## 522                   7 winter       L 27.90335 -81.58946
## 523                   7 winter       L 27.90335 -81.58946
## 524                   7 winter       L 27.90335 -81.58946
## 525                   7 winter       L 27.90335 -81.58946
## 526                   7 winter       L 27.90335 -81.58946
## 527                   7 winter       L 27.90335 -81.58946
## 528                   7 winter       L 27.90335 -81.58946
## 529                   7 winter       L 27.90335 -81.58946
## 530                   7 winter       L 27.90335 -81.58946
## 531                   7 winter       L 27.90335 -81.58946
## 532                   7 winter       L 27.90335 -81.58946
## 533                   7 winter       L 27.90335 -81.58946
## 534                   7 winter       L 27.90335 -81.58946
## 535                   7 winter       L 27.90335 -81.58946
## 536                   7 winter       L 27.90335 -81.58946
## 537                   7 winter       L 27.90335 -81.58946
## 538                   7 winter       L 27.90335 -81.58946
## 539                   7 winter       L 27.90335 -81.58946
## 540                   7 winter       L 27.90335 -81.58946
## 541                   7 winter       L 27.90335 -81.58946
## 542                   7 winter       L 27.90335 -81.58946
## 543                   7 winter       L 27.90335 -81.58946
## 544                   7 winter       L 27.90335 -81.58946
## 545                   7 winter       L 27.90335 -81.58946
## 546                   7 winter       L 27.90335 -81.58946
## 547                   7 winter       L 27.90335 -81.58946
## 548                   7 winter       L 27.90335 -81.58946
## 549                   7 winter       L 27.90335 -81.58946
## 550                   7 winter       L 27.90335 -81.58946
## 551                   7 winter       L 27.90335 -81.58946
## 552                   7 winter       L 27.90335 -81.58946
## 553                   7 winter       L 27.90335 -81.58946
## 554                   7 winter       L 27.90335 -81.58946
## 555                   7 winter       L 27.90335 -81.58946
## 556                   7 winter       L 27.90335 -81.58946
## 557                   7 winter       L 27.90335 -81.58946
## 558                   7 winter       L 27.90335 -81.58946
## 559                   7 winter       L 27.90335 -81.58946
## 560                   7 winter       L 27.90335 -81.58946
## 561                   7 winter       L 27.90335 -81.58946
## 562                   7 winter       L 27.90335 -81.58946
## 563                   7 winter       L 27.90335 -81.58946
## 564                   7 winter       L 27.90335 -81.58946
## 565                   7 winter       L 27.90335 -81.58946
## 566                   7 winter       L 27.90335 -81.58946
## 567                   7 winter       L 27.90335 -81.58946
## 568                   7 winter       L 27.90335 -81.58946
## 569                   7 winter       L 27.90335 -81.58946
## 570                   7 winter       L 27.90335 -81.58946
## 571                   7 winter       L 27.90335 -81.58946
## 572                   7 winter       L 27.90335 -81.58946
## 573                   7 winter       L 27.90335 -81.58946
## 574                   7 winter       L 27.90335 -81.58946
## 575                   7 winter       L 27.90335 -81.58946
## 576                   7 winter       L 27.90335 -81.58946
## 577                   7 winter       L 27.90335 -81.58946
## 578                   7 winter       L 27.90335 -81.58946
## 579                   7 winter       L 28.79602 -81.87777
## 580                   7 winter       L 28.79602 -81.87777
## 581                   7 winter       L 28.79602 -81.87777
## 582                   7 winter       L 28.79602 -81.87777
## 583                   7 winter       L 28.79602 -81.87777
## 584                   7 winter       L 28.79602 -81.87777
## 585                   7 winter       L 28.79602 -81.87777
## 586                   7 winter       L 28.79602 -81.87777
## 587                   7 winter       L 28.79602 -81.87777
## 588                   7 winter       L 28.79602 -81.87777
## 589                   7 winter       L 28.79602 -81.87777
## 590                   7 winter       L 28.79602 -81.87777
## 591                   7 winter       L 28.79602 -81.87777
## 592                   7 winter       L 28.79602 -81.87777
## 593                   7 winter       L 28.79602 -81.87777
## 594                   7 winter       L 28.79602 -81.87777
## 595                   7 winter       L 28.79602 -81.87777
## 596                   7 winter       L 28.79602 -81.87777
## 597                   7 winter       L 28.79602 -81.87777
## 598                   7 winter       L 28.79602 -81.87777
## 599                   7 winter       L 28.79602 -81.87777
## 600                   7 winter       L 28.79602 -81.87777
## 601                   7 winter       L 28.79602 -81.87777
## 602                   7 winter       L 28.79602 -81.87777
## 603                   7 winter       L 28.79602 -81.87777
## 604                   7 winter       L 28.79602 -81.87777
## 605                   7 winter       L 28.79602 -81.87777
## 606                   7 winter       L 28.79602 -81.87777
## 607                   7 winter       L 28.79602 -81.87777
## 608                   7 winter       L 28.79602 -81.87777
## 609                   7 winter       L 28.79602 -81.87777
## 610                   7 winter       L 28.79602 -81.87777
## 611                   7 winter       L 28.79602 -81.87777
## 612                   7 winter       L 28.79602 -81.87777
## 613                   7 winter       L 28.79602 -81.87777
## 614                   7 winter       L 28.79602 -81.87777
## 615                   7 winter       L 28.79602 -81.87777
## 616                   7 winter       L 28.79602 -81.87777
## 617                   7 winter       L 28.79602 -81.87777
## 618                   7 winter       L 28.79602 -81.87777
## 619                   7 winter       L 28.79602 -81.87777
## 620                   7 winter       L 28.79602 -81.87777
## 621                   7 winter       L 28.79602 -81.87777
## 622                   7 winter       L 28.79602 -81.87777
## 623                   7 winter       L 28.79602 -81.87777
## 624                   7 winter       L 28.79602 -81.87777
## 625                   7 winter       L 28.79602 -81.87777
## 626                   7 winter       L 28.79602 -81.87777
## 627                   7 winter       S 28.79602 -81.87777
## 628                   7 winter       L 28.79602 -81.87777
## 629                   7 winter       L 28.79602 -81.87777
## 630                   7 winter       L 28.79602 -81.87777
## 631                   7 winter       L 28.79602 -81.87777
## 632                   7 winter       L 28.79602 -81.87777
## 633                   7 winter       L 28.79602 -81.87777
## 634                   7 winter       L 28.79602 -81.87777
## 635                   7 winter       L 28.79602 -81.87777
## 636                   7 winter       L 28.79602 -81.87777
## 637                   7 winter       L 28.79602 -81.87777
## 638                   7 winter       L 28.79602 -81.87777
## 639                   7 winter       L 28.79602 -81.87777
## 640                   7 winter       L 28.79602 -81.87777
## 641                   7 winter       L 28.79602 -81.87777
## 642                   7 winter       L 28.79602 -81.87777
## 643                   7 winter       L 28.79602 -81.87777
## 644                   7 winter       L 28.79602 -81.87777
## 645                   7 winter       L 28.79602 -81.87777
## 646                   7 winter       L 28.79602 -81.87777
## 647                   7 winter       L 28.79602 -81.87777
## 648                   7 winter       L 28.79602 -81.87777
## 649                   7 winter       L 28.79602 -81.87777
## 650                   7 winter       L 28.79602 -81.87777
## 651                   7 winter       L 28.79602 -81.87777
## 652                   7 winter       L 28.79602 -81.87777
## 653                   7 winter       L 28.79602 -81.87777
## 654                   7 winter       L 28.79602 -81.87777
## 655                   7 winter       L 28.79602 -81.87777
## 656                   7 winter       L 28.79602 -81.87777
## 657                   7 winter       L 28.79602 -81.87777
## 658                   7 winter       L 28.79602 -81.87777
## 659                   7 winter       L 28.79602 -81.87777
## 660                   7 winter       L 28.79602 -81.87777
## 661                   7 winter       L 28.79602 -81.87777
## 662                   7 winter       L 28.79602 -81.87777
## 663                   7 winter       L 28.79602 -81.87777
## 664                   7 winter       L 28.79602 -81.87777
## 665                   7 winter       S 28.79602 -81.87777
## 666                   7 winter       L 28.79602 -81.87777
## 667                   7 winter       L 28.79602 -81.87777
## 668                   7 winter       L 28.79602 -81.87777
## 669                   7 winter       L 28.79602 -81.87777
## 670                   7 winter       L 24.96448 -80.56739
## 671                   7 winter       L 24.96448 -80.56739
## 672                   7 winter       L 24.96448 -80.56739
## 673                   7 winter       L 24.96448 -80.56739
## 674                   7 winter       L 24.96448 -80.56739
## 675                   7 winter       L 24.96448 -80.56739
## 676                   7 winter       L 24.96448 -80.56739
## 677                   7 winter       L 24.96448 -80.56739
## 678                   7 winter       L 24.96448 -80.56739
## 679                   7 winter       S 24.96448 -80.56739
## 680                   7 winter       L 24.96448 -80.56739
## 681                   7 winter       L 24.96448 -80.56739
## 682                   7 winter       L 24.96448 -80.56739
## 683                   7 winter       L 24.96448 -80.56739
## 684                   7 winter       L 24.96448 -80.56739
## 685                   7 winter       L 24.96448 -80.56739
## 686                   7 winter       L 24.96448 -80.56739
## 687                   7 winter       L 24.96448 -80.56739
## 688                   7 winter       L 24.96448 -80.56739
## 689                   7 winter       L 24.96448 -80.56739
## 690                   7 winter       L 24.96448 -80.56739
## 691                   7 winter       L 24.96448 -80.56739
## 692                   7 winter       L 24.96448 -80.56739
## 693                   7 winter       L 24.96448 -80.56739
## 694                   7 winter       L 24.96448 -80.56739
## 695                   7 winter       L 24.96448 -80.56739
## 696                   7 winter       S 24.96448 -80.56739
## 697                   7 winter       L 24.96448 -80.56739
## 698                   7 winter       L 24.96448 -80.56739
## 699                   7 winter       L 24.96448 -80.56739
## 700                   7 winter       L 24.96448 -80.56739
## 701                   7 winter       S 24.96448 -80.56739
## 702                   7 winter       L 24.96448 -80.56739
## 703                   7 winter       S 24.96448 -80.56739
## 704                   7 winter       L 24.96448 -80.56739
## 705                  11 spring       L 29.66374 -82.36091
## 706                  11 spring       L 29.66374 -82.36091
## 707                  11 spring       L 29.66374 -82.36091
## 708                  11 spring       L 29.66374 -82.36091
## 709                  11 spring       L 29.66374 -82.36091
## 710                  11 spring       L 29.66374 -82.36091
## 711                  11 spring       L 29.66374 -82.36091
## 712                  11 spring       L 29.66374 -82.36091
## 713                  11 spring       L 29.66374 -82.36091
## 714                  11 spring       L 29.66374 -82.36091
## 715                  11 spring       L 29.66374 -82.36091
## 716                  11 spring       L 29.66374 -82.36091
## 717                  11 spring       L 29.66374 -82.36091
## 718                  11 spring       L 29.66374 -82.36091
## 719                  11 spring       L 29.66374 -82.36091
## 720                  11 spring       L 29.66374 -82.36091
## 721                  11 spring       L 29.66374 -82.36091
## 722                  11 spring       L 29.66374 -82.36091
## 723                  11 spring       L 29.66374 -82.36091
## 724                  11 spring       L 29.66374 -82.36091
## 725                  11 spring       L 29.66374 -82.36091
## 726                  11 spring       S 29.66374 -82.36091
## 727                  11 spring       L 29.66374 -82.36091
## 728                  11 spring       L 29.66374 -82.36091
## 729                  11 spring       L 29.66374 -82.36091
## 730                  11 spring       L 29.66374 -82.36091
## 731                  11 spring       L 29.66374 -82.36091
## 732                  11 spring       S 29.66374 -82.36091
## 733                  11 spring       L 29.66374 -82.36091
## 734                  11 spring       L 29.66374 -82.36091
## 735                  11 spring       L 29.66374 -82.36091
## 736                  11 spring       L 29.66374 -82.36091
## 737                  11 spring       L 29.66374 -82.36091
## 738                  11 spring       L 29.66374 -82.36091
## 739                  11 spring       L 29.66374 -82.36091
## 740                  11 spring       L 29.66374 -82.36091
## 741                  11 spring       L 29.66374 -82.36091
## 742                  11 spring       L 29.66374 -82.36091
## 743                  11 spring       L 29.66374 -82.36091
## 744                  11 spring       L 29.66374 -82.36091
## 745                  11 spring       L 29.66374 -82.36091
## 746                  11 spring       L 29.66374 -82.36091
## 747                  11 spring       L 29.66374 -82.36091
## 748                  11 spring       L 29.66374 -82.36091
## 749                  11 spring       L 29.66374 -82.36091
## 750                  11 spring       L 29.66374 -82.36091
## 751                  11 spring       L 29.66374 -82.36091
## 752                  11 spring       L 29.66374 -82.36091
## 753                  11 spring       L 25.49172 -80.48586
## 754                  11 spring       L 25.49172 -80.48586
## 755                  11 spring       L 25.49172 -80.48586
## 756                  11 spring       L 25.49172 -80.48586
## 757                  11 spring       L 25.49172 -80.48586
## 758                  11 spring       S 25.49172 -80.48586
## 759                  11 spring       S 25.49172 -80.48586
## 760                  11 spring       S 25.49172 -80.48586
## 761                  11 spring       S 25.49172 -80.48586
## 762                  11 spring       S 25.49172 -80.48586
## 763                  11 spring       S 25.49172 -80.48586
## 764                  11 spring       S 25.49172 -80.48586
## 765                  11 spring       L 25.49172 -80.48586
## 766                  11 spring       L 25.49172 -80.48586
## 767                  11 spring       L 25.49172 -80.48586
## 768                  11 spring       L 25.49172 -80.48586
## 769                  11 spring       S 25.49172 -80.48586
## 770                  11 spring       S 25.12308 -80.41528
## 771                  11 spring       S 25.12308 -80.41528
## 772                  11 spring       S 25.12308 -80.41528
## 773                  11 spring       L 25.12308 -80.41528
## 774                  11 spring       S 25.12308 -80.41528
## 775                  11 spring       S 25.12308 -80.41528
## 776                  11 spring       L 25.12308 -80.41528
## 777                  11 spring       S 25.12308 -80.41528
## 778                  11 spring       L 25.12308 -80.41528
## 779                  11 spring       S 25.12308 -80.41528
## 780                  11 spring       S 25.12308 -80.41528
## 781                  11 spring       L 25.12308 -80.41528
## 782                  11 spring       S 25.12308 -80.41528
## 783                  11 spring       L 25.12308 -80.41528
## 784                  11 spring       L 25.12308 -80.41528
## 785                  11 spring       S 25.12308 -80.41528
## 786                  11 spring       S 25.12308 -80.41528
## 787                  11 spring       S 25.12308 -80.41528
## 788                  11 spring       L 25.12308 -80.41528
## 789                  11 spring       L 25.12308 -80.41528
## 790                  11 spring       S 25.12308 -80.41528
## 791                  11 spring       L 25.12308 -80.41528
## 792                  11 spring       L 25.12308 -80.41528
## 793                  11 spring       S 25.12308 -80.41528
## 794                  11 spring       S 25.12308 -80.41528
## 795                  11 spring       S 25.12308 -80.41528
## 796                  11 spring       L 25.12308 -80.41528
## 797                  11 spring       S 25.12308 -80.41528
## 798                  11 spring       L 25.12308 -80.41528
## 799                  11 spring       S 25.12308 -80.41528
## 800                  11 spring       S 25.12308 -80.41528
## 801                  11 spring       L 25.12308 -80.41528
## 802                  11 spring       S 25.12308 -80.41528
## 803                  11 spring       L 25.12308 -80.41528
## 804                  11 spring       L 25.12308 -80.41528
## 805                  11 spring       L 25.12308 -80.41528
## 806                  11 spring       S 25.12308 -80.41528
## 807                  11 spring       S 25.12308 -80.41528
## 808                  11 spring       L 25.12308 -80.41528
## 809                  11 spring       L 25.12308 -80.41528
## 810                  11 spring       S 27.90335 -81.58946
## 811                  11 spring       L 27.90335 -81.58946
## 812                  11 spring       L 27.90335 -81.58946
## 813                  11 spring       L 27.90335 -81.58946
## 814                  11 spring       L 27.90335 -81.58946
## 815                  11 spring       L 27.90335 -81.58946
## 816                  11 spring       L 27.90335 -81.58946
## 817                  11 spring       L 27.90335 -81.58946
## 818                  11 spring       L 27.90335 -81.58946
## 819                  11 spring       L 27.90335 -81.58946
## 820                  11 spring       L 27.90335 -81.58946
## 821                  11 spring       L 27.90335 -81.58946
## 822                  11 spring       L 27.90335 -81.58946
## 823                  11 spring       L 27.90335 -81.58946
## 824                  11 spring       L 27.90335 -81.58946
## 825                  11 spring       L 27.90335 -81.58946
## 826                  11 spring       L 27.90335 -81.58946
## 827                  11 spring       S 27.90335 -81.58946
## 828                  11 spring       L 27.90335 -81.58946
## 829                  11 spring       L 27.90335 -81.58946
## 830                  11 spring       L 27.90335 -81.58946
## 831                  11 spring       L 27.90335 -81.58946
## 832                  11 spring       S 27.90335 -81.58946
## 833                  11 spring       L 27.90335 -81.58946
## 834                  11 spring       L 27.90335 -81.58946
## 835                  11 spring       L 27.90335 -81.58946
## 836                  11 spring       L 27.90335 -81.58946
## 837                  11 spring       L 27.90335 -81.58946
## 838                  11 spring       L 27.90335 -81.58946
## 839                  11 spring       S 27.90335 -81.58946
## 840                  11 spring       L 27.90335 -81.58946
## 841                  11 spring       L 27.90335 -81.58946
## 842                  11 spring       L 27.90335 -81.58946
## 843                  11 spring       L 27.90335 -81.58946
## 844                  11 spring       L 27.90335 -81.58946
## 845                  11 spring       L 27.90335 -81.58946
## 846                  11 spring       L 27.90335 -81.58946
## 847                  11 spring       L 27.90335 -81.58946
## 848                  11 spring       S 27.90335 -81.58946
## 849                  11 spring       L 27.90335 -81.58946
## 850                  11 spring       L 27.90335 -81.58946
## 851                  11 spring       L 27.90335 -81.58946
## 852                  11 spring       L 27.90335 -81.58946
## 853                  11 spring       L 27.90335 -81.58946
## 854                  11 spring       L 28.79602 -81.87777
## 855                  11 spring       L 28.79602 -81.87777
## 856                  11 spring       L 28.79602 -81.87777
## 857                  11 spring       L 28.79602 -81.87777
## 858                  11 spring       L 28.79602 -81.87777
## 859                  11 spring       L 28.79602 -81.87777
## 860                  11 spring       L 28.79602 -81.87777
## 861                  11 spring       L 28.79602 -81.87777
## 862                  11 spring       L 28.79602 -81.87777
## 863                  11 spring       L 28.79602 -81.87777
## 864                  11 spring       L 28.79602 -81.87777
## 865                  11 spring       L 28.79602 -81.87777
## 866                  11 spring       L 28.79602 -81.87777
## 867                  11 spring       L 28.79602 -81.87777
## 868                  11 spring       L 24.96448 -80.56739
## 869                  11 spring       S 24.96448 -80.56739
## 870                  11 spring       L 24.96448 -80.56739
## 871                  11 spring       S 24.96448 -80.56739
## 872                  11 spring       S 24.96448 -80.56739
## 873                  11 spring       S 24.96448 -80.56739
## 874                  11 spring       L 24.96448 -80.56739
## 875                  11 spring       L 24.96448 -80.56739
## 876                  11 spring       S 24.96448 -80.56739
## 877                  11 spring       S 24.96448 -80.56739
## 878                  11 spring       L 24.96448 -80.56739
## 879                  11 spring       S 24.96448 -80.56739
## 880                  11 spring       L 24.96448 -80.56739
## 881                  11 spring       L 24.96448 -80.56739
## 882                  11 spring       S 24.96448 -80.56739
## 883                  11 spring       L 24.96448 -80.56739
## 884                  11 spring       L 24.96448 -80.56739
## 885                  11 spring       S 24.96448 -80.56739
## 886                  11 spring       L 24.96448 -80.56739
## 887                  11 spring       L 24.96448 -80.56739
## 888                  11 spring       S 24.96448 -80.56739
## 889                  11 spring       L 24.96448 -80.56739
## 890                  11 spring       L 24.96448 -80.56739
## 891                  11 spring       L 24.96448 -80.56739
## 892                  11 spring       L 24.96448 -80.56739
## 893                  11 spring       S 24.96448 -80.56739
## 894                  11 spring       L 24.96448 -80.56739
## 895                  11 spring       S 24.96448 -80.56739
## 896                  11 spring       L 24.96448 -80.56739
## 897                  11 spring       L 24.96448 -80.56739
## 898                  11 spring       S 24.96448 -80.56739
## 899                  11 spring       S 24.96448 -80.56739
## 900                  11 spring       S 24.96448 -80.56739
## 901                  11 spring       S 24.96448 -80.56739
## 902                  11 spring       S 24.96448 -80.56739
## 903                  11 spring       L 24.96448 -80.56739
## 904                  11 spring       L 24.96448 -80.56739
## 905                  11 spring       S 24.96448 -80.56739
## 906                  11 spring       L 24.96448 -80.56739
## 907                  11 spring       L 24.96448 -80.56739
## 908                  11 spring       L 24.96448 -80.56739
## 909                  11 spring       S 24.96448 -80.56739
## 910                  11 spring       L 24.96448 -80.56739
## 911                  11 spring       L 24.96448 -80.56739
## 912                  23 spring       S 25.12308 -80.41528
## 913                  23 spring       S 25.12308 -80.41528
## 914                  23 spring       S 25.12308 -80.41528
## 915                  23 spring       L 25.12308 -80.41528
## 916                  23 spring       S 25.12308 -80.41528
## 917                  23 spring       S 25.12308 -80.41528
## 918                  23 spring       L 25.12308 -80.41528
## 919                  23 spring       S 25.12308 -80.41528
## 920                  23 spring       S 25.12308 -80.41528
## 921                  23 spring       S 25.12308 -80.41528
## 922                  23 spring       S 25.12308 -80.41528
## 923                  23 spring       S 25.12308 -80.41528
## 924                  23 spring       S 25.12308 -80.41528
## 925                  23 spring       S 25.12308 -80.41528
## 926                  23 spring       L 25.12308 -80.41528
## 927                  23 spring       S 25.12308 -80.41528
## 928                  23 spring       S 25.12308 -80.41528
## 929                  23 spring       S 25.12308 -80.41528
## 930                  23 spring       L 25.12308 -80.41528
## 931                  23 spring       S 25.12308 -80.41528
## 932                  23 spring       S 25.12308 -80.41528
## 933                  23 spring       L 25.12308 -80.41528
## 934                  23 spring       S 25.12308 -80.41528
## 935                  23 spring       L 25.12308 -80.41528
## 936                  23 spring       L 25.12308 -80.41528
## 937                  23 spring       L 25.12308 -80.41528
## 938                  23 spring       S 25.12308 -80.41528
## 939                  23 spring       S 25.12308 -80.41528
## 940                  23 spring       S 25.12308 -80.41528
## 941                  23 spring       L 25.12308 -80.41528
## 942                  23 spring       S 25.12308 -80.41528
## 943                  23 spring       S 25.12308 -80.41528
## 944                  23 spring       S 25.12308 -80.41528
## 945                  23 spring       S 25.12308 -80.41528
## 946                  23 spring       S 25.12308 -80.41528
## 947                  23 spring       S 25.12308 -80.41528
## 948                  23 spring       S 25.12308 -80.41528
## 949                  23 spring       S 25.12308 -80.41528
## 950                  23 spring       S 25.12308 -80.41528
## 951                  23 spring       S 25.12308 -80.41528
## 952                  23 spring       L 25.12308 -80.41528
## 953                  23 spring       S 25.12308 -80.41528
## 954                  23 spring       S 25.12308 -80.41528
## 955                  23 spring       S 25.12308 -80.41528
## 956                  23 spring       S 25.12308 -80.41528
## 957                  23 spring       L 25.12308 -80.41528
## 958                  23 spring       S 25.12308 -80.41528
## 959                  23 spring       S 25.12308 -80.41528
## 960                  23 spring       S 25.12308 -80.41528
## 961                  23 spring       S 25.12308 -80.41528
## 962                  23 spring       S 25.12308 -80.41528
## 963                  23 spring       L 27.90335 -81.58946
## 964                  23 spring       L 27.90335 -81.58946
## 965                  23 spring       L 27.90335 -81.58946
## 966                  23 spring       L 27.90335 -81.58946
## 967                  23 spring       L 27.90335 -81.58946
## 968                  23 spring       L 27.90335 -81.58946
## 969                  23 spring       L 27.90335 -81.58946
## 970                  23 spring       L 27.90335 -81.58946
## 971                  23 spring       L 27.90335 -81.58946
## 972                  23 spring       L 27.90335 -81.58946
## 973                  23 spring       L 27.90335 -81.58946
## 974                  23 spring       L 27.90335 -81.58946
## 975                  23 spring       L 27.90335 -81.58946
## 976                  23 spring       L 27.90335 -81.58946
## 977                  23 spring       L 27.90335 -81.58946
## 978                  23 spring       L 27.90335 -81.58946
## 979                  23 spring       L 27.90335 -81.58946
## 980                  23 spring       L 27.90335 -81.58946
## 981                  23 spring       L 27.90335 -81.58946
## 982                  23 spring       L 27.90335 -81.58946
## 983                  23 spring       L 27.90335 -81.58946
## 984                  23 spring       L 27.90335 -81.58946
## 985                  23 spring       L 27.90335 -81.58946
## 986                  23 spring       L 27.90335 -81.58946
## 987                  23 spring       L 27.90335 -81.58946
## 988                  23 spring       L 27.90335 -81.58946
## 989                  23 spring       L 27.90335 -81.58946
## 990                  23 spring       L 27.90335 -81.58946
## 991                  23 spring       L 27.90335 -81.58946
## 992                  23 spring       L 27.90335 -81.58946
## 993                  23 spring       L 27.90335 -81.58946
## 994                  23 spring       L 27.90335 -81.58946
## 995                  23 spring       L 27.90335 -81.58946
## 996                  23 spring       L 27.90335 -81.58946
## 997                  23 spring       L 27.90335 -81.58946
## 998                  23 spring       L 27.90335 -81.58946
## 999                  23 spring       L 27.90335 -81.58946
## 1000                 23 spring       L 27.90335 -81.58946
## 1001                 23 spring       L 27.90335 -81.58946
## 1002                 23 spring       L 27.90335 -81.58946
## 1003                 23 spring       L 27.90335 -81.58946
## 1004                 23 spring       L 27.90335 -81.58946
## 1005                 23 spring       L 27.90335 -81.58946
## 1006                 23 spring       L 27.90335 -81.58946
## 1007                 23 spring       L 27.90335 -81.58946
## 1008                 23 spring       L 27.90335 -81.58946
## 1009                 23 spring       L 27.90335 -81.58946
## 1010                 23 spring       L 27.90335 -81.58946
## 1011                 23 spring       L 27.90335 -81.58946
## 1012                 23 spring       L 27.90335 -81.58946
## 1013                 23 spring       L 27.90335 -81.58946
## 1014                 23 spring       L 27.90335 -81.58946
## 1015                 23 spring       L 27.90335 -81.58946
## 1016                 23 spring       L 28.79602 -81.87777
## 1017                 23 spring       L 28.79602 -81.87777
## 1018                 23 spring       L 28.79602 -81.87777
## 1019                 23 spring       L 28.79602 -81.87777
## 1020                 23 spring       L 28.79602 -81.87777
## 1021                 23 spring       L 28.79602 -81.87777
## 1022                 23 spring       L 28.79602 -81.87777
## 1023                 23 spring       L 28.79602 -81.87777
## 1024                 23 spring       L 28.79602 -81.87777
## 1025                 23 spring       L 28.79602 -81.87777
## 1026                 23 spring       S 28.79602 -81.87777
## 1027                 23 spring       L 28.79602 -81.87777
## 1028                 23 spring       L 28.79602 -81.87777
## 1029                 23 spring       L 28.79602 -81.87777
## 1030                 23 spring       L 28.79602 -81.87777
## 1031                 23 spring       L 28.79602 -81.87777
## 1032                 23 spring       L 28.79602 -81.87777
## 1033                 23 spring       L 28.79602 -81.87777
## 1034                 23 spring       L 28.79602 -81.87777
## 1035                 23 spring       L 28.79602 -81.87777
## 1036                 23 spring       L 28.79602 -81.87777
## 1037                 23 spring       L 28.79602 -81.87777
## 1038                 23 spring       L 28.79602 -81.87777
## 1039                 23 spring       L 28.79602 -81.87777
## 1040                 23 spring       L 28.79602 -81.87777
## 1041                 23 spring       S 28.79602 -81.87777
## 1042                 23 spring       L 28.79602 -81.87777
## 1043                 23 spring       L 28.79602 -81.87777
## 1044                 23 spring       L 28.79602 -81.87777
## 1045                 23 spring       L 28.79602 -81.87777
## 1046                 23 spring       L 28.79602 -81.87777
## 1047                 23 spring       L 28.79602 -81.87777
## 1048                 23 spring       S 28.79602 -81.87777
## 1049                 23 spring       L 28.79602 -81.87777
## 1050                 23 spring       L 28.79602 -81.87777
## 1051                 23 spring       L 28.79602 -81.87777
## 1052                 23 spring       S 24.96448 -80.56739
## 1053                 23 spring       L 24.96448 -80.56739
## 1054                 23 spring       S 24.96448 -80.56739
## 1055                 23 spring       S 24.96448 -80.56739
## 1056                 23 spring       L 24.96448 -80.56739
## 1057                 23 spring       L 24.96448 -80.56739
## 1058                 23 spring       L 24.96448 -80.56739
## 1059                 23 spring       S 24.96448 -80.56739
## 1060                 23 spring       L 24.96448 -80.56739
## 1061                 23 spring       L 24.96448 -80.56739
## 1062                 23 spring       S 24.96448 -80.56739
## 1063                 23 spring       L 24.96448 -80.56739
## 1064                 43 winter       L 29.66374 -82.36091
## 1065                 43 winter       L 29.66374 -82.36091
## 1066                 43 winter       L 29.66374 -82.36091
## 1067                 43 winter       L 29.66374 -82.36091
## 1068                 43 winter       L 29.66374 -82.36091
## 1069                 43 winter       L 29.66374 -82.36091
## 1070                 43 winter       L 29.66374 -82.36091
## 1071                 43 winter       L 29.66374 -82.36091
## 1072                 43 winter       L 29.66374 -82.36091
## 1073                 43 winter       L 29.66374 -82.36091
## 1074                 43 winter       L 29.66374 -82.36091
## 1075                 43 winter       L 29.66374 -82.36091
## 1076                 43 winter       L 29.66374 -82.36091
## 1077                 43 winter       L 29.66374 -82.36091
## 1078                 43 winter       L 29.66374 -82.36091
## 1079                 43 winter       L 29.66374 -82.36091
## 1080                 43 winter       L 29.66374 -82.36091
## 1081                 43 winter       L 29.66374 -82.36091
## 1082                 43 winter       L 29.66374 -82.36091
## 1083                 43 winter       L 29.66374 -82.36091
## 1084                 43 winter       L 29.66374 -82.36091
## 1085                 43 winter       L 29.66374 -82.36091
## 1086                 43 winter       L 29.66374 -82.36091
## 1087                 43 winter       L 29.66374 -82.36091
## 1088                 43 winter       L 29.66374 -82.36091
## 1089                 43 winter       L 29.66374 -82.36091
## 1090                 43 winter       L 29.66374 -82.36091
## 1091                 43 winter       L 29.66374 -82.36091
## 1092                 43 winter       L 29.66374 -82.36091
## 1093                 43 winter       L 29.66374 -82.36091
## 1094                 43 winter       L 29.66374 -82.36091
## 1095                 43 winter       L 29.66374 -82.36091
## 1096                 43 winter       L 29.66374 -82.36091
## 1097                 43 winter       L 29.66374 -82.36091
## 1098                 43 winter       S 29.66374 -82.36091
## 1099                 43 winter       L 29.66374 -82.36091
## 1100                 43 winter       L 29.66374 -82.36091
## 1101                 43 winter       L 29.66374 -82.36091
## 1102                 43 winter       L 29.66374 -82.36091
## 1103                 43 winter       L 29.66374 -82.36091
## 1104                 43 winter       L 29.66374 -82.36091
## 1105                 43 winter       L 29.66374 -82.36091
## 1106                 43 winter       L 29.66374 -82.36091
## 1107                 43 winter       S 29.66374 -82.36091
## 1108                 43 winter       L 29.66374 -82.36091
## 1109                 43 winter       L 29.66374 -82.36091
## 1110                 43 winter       S 29.66374 -82.36091
## 1111                 43 winter       L 29.66374 -82.36091
## 1112                 43 winter       L 29.66374 -82.36091
## 1113                 43 winter       L 29.66374 -82.36091
## 1114                 43 winter       S 29.66374 -82.36091
## 1115                 43 winter       L 29.66374 -82.36091
## 1116                 43 winter       L 29.66374 -82.36091
## 1117                 43 winter       L 29.66374 -82.36091
## 1118                 43 winter       L 29.66374 -82.36091
## 1119                 43 winter       L 29.66374 -82.36091
## 1120                 43 winter       L 29.66374 -82.36091
## 1121                 43 winter       L 25.49172 -80.48586
## 1122                 43 winter       S 25.49172 -80.48586
## 1123                 43 winter       S 25.49172 -80.48586
## 1124                 43 winter       L 25.49172 -80.48586
## 1125                 43 winter       L 25.49172 -80.48586
## 1126                 43 winter       S 25.49172 -80.48586
## 1127                 43 winter       L 25.49172 -80.48586
## 1128                 43 winter       L 25.49172 -80.48586
## 1129                 43 winter       S 25.49172 -80.48586
## 1130                 43 winter       L 25.49172 -80.48586
## 1131                 43 winter       L 25.49172 -80.48586
## 1132                 43 winter       L 25.49172 -80.48586
## 1133                 43 winter       L 25.49172 -80.48586
## 1134                 43 winter       L 25.25687 -80.30942
## 1135                 43 winter       L 25.25687 -80.30942
## 1136                 43 winter       L 25.25687 -80.30942
## 1137                 43 winter       S 25.25687 -80.30942
## 1138                 43 winter       L 25.25687 -80.30942
## 1139                 43 winter       S 25.25687 -80.30942
## 1140                 43 winter       L 25.25687 -80.30942
## 1141                 43 winter       L 25.25687 -80.30942
## 1142                 43 winter       L 25.25687 -80.30942
## 1143                 43 winter       L 25.25687 -80.30942
## 1144                 43 winter       L 25.25687 -80.30942
## 1145                 43 winter       S 25.25687 -80.30942
## 1146                 43 winter       S 25.25687 -80.30942
## 1147                 43 winter       L 25.25687 -80.30942
## 1148                 43 winter       L 25.25687 -80.30942
## 1149                 43 winter       L 25.25687 -80.30942
## 1150                 43 winter       L 25.25687 -80.30942
## 1151                 43 winter       L 25.25687 -80.30942
## 1152                 43 winter       L 25.25687 -80.30942
## 1153                 43 winter       L 25.25687 -80.30942
## 1154                 43 winter       L 25.25687 -80.30942
## 1155                 43 winter       S 25.25687 -80.30942
## 1156                 43 winter       L 25.25687 -80.30942
## 1157                 43 winter       S 25.25687 -80.30942
## 1158                 43 winter       L 25.25687 -80.30942
## 1159                 43 winter       S 25.25687 -80.30942
## 1160                 43 winter       L 25.25687 -80.30942
## 1161                 43 winter       L 25.25687 -80.30942
## 1162                 43 winter       L 25.25687 -80.30942
## 1163                 43 winter       L 25.25687 -80.30942
## 1164                 43 winter       L 25.25687 -80.30942
## 1165                 43 winter       L 25.25687 -80.30942
## 1166                 43 winter       L 25.25687 -80.30942
## 1167                 43 winter       L 25.25687 -80.30942
## 1168                 43 winter       S 25.25687 -80.30942
## 1169                 43 winter       L 25.25687 -80.30942
## 1170                 43 winter       S 25.25687 -80.30942
## 1171                 43 winter       S 25.25687 -80.30942
## 1172                 43 winter       S 25.25687 -80.30942
## 1173                 43 winter       L 25.25687 -80.30942
## 1174                 43 winter       L 25.25687 -80.30942
## 1175                 43 winter       S 25.25687 -80.30942
## 1176                 43 winter       L 25.25687 -80.30942
## 1177                 43 winter       L 25.25687 -80.30942
## 1178                 43 winter       L 25.25687 -80.30942
## 1179                 43 winter       S 25.25687 -80.30942
## 1180                 43 winter       L 25.25687 -80.30942
## 1181                 43 winter       S 25.25687 -80.30942
## 1182                 43 winter       L 25.25687 -80.30942
## 1183                 43 winter       L 25.25687 -80.30942
## 1184                 43 winter       L 25.25687 -80.30942
## 1185                 43 winter       L 25.25687 -80.30942
## 1186                 43 winter       L 25.25687 -80.30942
## 1187                 43 winter       L 25.12308 -80.41528
## 1188                 43 winter       L 25.12308 -80.41528
## 1189                 43 winter       L 25.12308 -80.41528
## 1190                 43 winter       S 25.12308 -80.41528
## 1191                 43 winter       L 25.12308 -80.41528
## 1192                 43 winter       L 25.12308 -80.41528
## 1193                 43 winter       S 25.12308 -80.41528
## 1194                 43 winter       L 25.12308 -80.41528
## 1195                 43 winter       S 25.12308 -80.41528
## 1196                 43 winter       L 25.12308 -80.41528
## 1197                 43 winter       L 25.12308 -80.41528
## 1198                 43 winter       L 27.93574 -81.57414
## 1199                 43 winter       L 27.93574 -81.57414
## 1200                 43 winter       L 27.93574 -81.57414
## 1201                 43 winter       L 27.93574 -81.57414
## 1202                 43 winter       L 27.93574 -81.57414
## 1203                 43 winter       L 27.93574 -81.57414
## 1204                 43 winter       L 27.93574 -81.57414
## 1205                 43 winter       S 27.93574 -81.57414
## 1206                 43 winter       L 27.93574 -81.57414
## 1207                 43 winter       L 27.93574 -81.57414
## 1208                 43 winter       L 27.93574 -81.57414
## 1209                 43 winter       L 27.93574 -81.57414
## 1210                 43 winter       L 27.93574 -81.57414
## 1211                 43 winter       L 27.93574 -81.57414
## 1212                 43 winter       L 27.93574 -81.57414
## 1213                 43 winter       L 28.80523 -81.88178
## 1214                 43 winter       L 28.80523 -81.88178
## 1215                 43 winter       L 28.80523 -81.88178
## 1216                 43 winter       L 28.80523 -81.88178
## 1217                 43 winter       L 28.80523 -81.88178
## 1218                 43 winter       L 28.80523 -81.88178
## 1219                 43 winter       L 28.80523 -81.88178
## 1220                 43 winter       L 28.80523 -81.88178
## 1221                 43 winter       L 28.80523 -81.88178
## 1222                 43 winter       L 28.80523 -81.88178
## 1223                 43 winter       L 28.80523 -81.88178
## 1224                 43 winter       L 28.80523 -81.88178
## 1225                 43 winter       L 28.80523 -81.88178
## 1226                 43 winter       L 28.80523 -81.88178
## 1227                 43 winter       L 28.80523 -81.88178
## 1228                 43 winter       L 28.80523 -81.88178
## 1229                 43 winter       L 28.80523 -81.88178
## 1230                 43 winter       L 28.80523 -81.88178
## 1231                 43 winter       L 28.80523 -81.88178
## 1232                 43 winter       L 28.80523 -81.88178
## 1233                 43 winter       L 28.79602 -81.87777
## 1234                 43 winter       L 28.79602 -81.87777
## 1235                 43 winter       L 28.79602 -81.87777
## 1236                 43 winter       L 28.79602 -81.87777
## 1237                 43 winter       L 28.79602 -81.87777
## 1238                 43 winter       L 28.79602 -81.87777
## 1239                 43 winter       L 28.79602 -81.87777
## 1240                 43 winter       L 28.79602 -81.87777
## 1241                 43 winter       L 28.79602 -81.87777
## 1242                 43 winter       L 28.79602 -81.87777
## 1243                 43 winter       L 28.79602 -81.87777
## 1244                 43 winter       S 28.79602 -81.87777
## 1245                 43 winter       L 28.79602 -81.87777
## 1246                 43 winter       L 28.79602 -81.87777
## 1247                 43 winter       L 28.79602 -81.87777
## 1248                 43 winter       L 28.79602 -81.87777
## 1249                 43 winter       L 28.79602 -81.87777
## 1250                 43 winter       L 28.79602 -81.87777
## 1251                 43 winter       L 28.79602 -81.87777
## 1252                 43 winter       L 28.79602 -81.87777
## 1253                 43 winter       L 28.79602 -81.87777
## 1254                 43 winter       L 28.79602 -81.87777
## 1255                 43 winter       L 28.79602 -81.87777
## 1256                 43 winter       L 28.79602 -81.87777
## 1257                 43 winter       L 28.79602 -81.87777
## 1258                 43 winter       L 28.79602 -81.87777
## 1259                 43 winter       L 28.79602 -81.87777
## 1260                 43 winter       L 28.79602 -81.87777
## 1261                 43 winter       L 28.79602 -81.87777
## 1262                 43 winter       L 28.79602 -81.87777
## 1263                 43 winter       L 28.79602 -81.87777
## 1264                 43 winter       L 28.79602 -81.87777
## 1265                 43 winter       L 28.79602 -81.87777
## 1266                 43 winter       L 28.79602 -81.87777
## 1267                 43 winter       L 28.79602 -81.87777
## 1268                 43 winter       L 28.79602 -81.87777
## 1269                 43 winter       L 28.79602 -81.87777
## 1270                 43 winter       L 28.79602 -81.87777
## 1271                 43 winter       L 28.79602 -81.87777
## 1272                 43 winter       L 28.79602 -81.87777
## 1273                 43 winter       L 28.79602 -81.87777
## 1274                 43 winter       L 28.79602 -81.87777
## 1275                 43 winter       L 28.79602 -81.87777
## 1276                 43 winter       L 28.79602 -81.87777
## 1277                 43 winter       L 28.79602 -81.87777
## 1278                 43 winter       S 24.97998 -80.54862
## 1279                 43 winter       L 24.97998 -80.54862
## 1280                 43 winter       L 24.97998 -80.54862
## 1281                 43 winter       S 24.97998 -80.54862
## 1282                 43 winter       L 24.97998 -80.54862
## 1283                 43 winter       L 24.97998 -80.54862
## 1284                 43 winter       S 24.97998 -80.54862
## 1285                 43 winter       L 24.97998 -80.54862
## 1286                 43 winter       L 24.97998 -80.54862
## 1287                 43 winter       S 24.97998 -80.54862
## 1288                 43 winter       L 24.97998 -80.54862
## 1289                 43 winter       S 24.97998 -80.54862
## 1290                 43 winter       S 24.97998 -80.54862
## 1291                 43 winter       S 24.97998 -80.54862
## 1292                 43 winter       S 24.97998 -80.54862
## 1293                 43 winter       L 24.97998 -80.54862
## 1294                 43 winter       L 24.97998 -80.54862
## 1295                 43 winter       L 24.97998 -80.54862
## 1296                 43 winter       L 24.97998 -80.54862
## 1297                 43 winter       L 24.97998 -80.54862
## 1298                 43 winter       S 24.97998 -80.54862
## 1299                 43 winter       S 24.97998 -80.54862
## 1300                 43 winter       L 24.97998 -80.54862
## 1301                 43 winter       S 24.97998 -80.54862
## 1302                 43 winter       S 24.97998 -80.54862
## 1303                 43 winter       L 24.97998 -80.54862
## 1304                 43 winter       L 24.97998 -80.54862
## 1305                 43 winter       S 24.97998 -80.54862
## 1306                 43 winter       L 24.97998 -80.54862
## 1307                 43 winter       L 24.97998 -80.54862
## 1308                 43 winter       L 24.97998 -80.54862
## 1309                 43 winter       L 24.97998 -80.54862
## 1310                 43 winter       L 24.97998 -80.54862
## 1311                 43 winter       L 24.97998 -80.54862
## 1312                 43 winter       S 24.97998 -80.54862
## 1313                 43 winter       S 24.97998 -80.54862
## 1314                 43 winter       L 24.97998 -80.54862
## 1315                 51 summer       L 29.66668 -82.35574
## 1316                 51 summer       L 29.66668 -82.35574
## 1317                 51 summer       L 29.66668 -82.35574
## 1318                 51 summer       S 29.66668 -82.35574
## 1319                 51 summer       L 29.66668 -82.35574
## 1320                 51 summer       L 29.66668 -82.35574
## 1321                 51 summer       S 29.66668 -82.35574
## 1322                 51 summer       L 29.66668 -82.35574
## 1323                 51 summer       L 29.66668 -82.35574
## 1324                 51 summer       L 29.66668 -82.35574
## 1325                 51 summer       L 29.66668 -82.35574
## 1326                 51 summer       L 29.66668 -82.35574
## 1327                 51 summer       L 29.66668 -82.35574
## 1328                 51 summer       L 29.66668 -82.35574
## 1329                 51 summer       L 29.66668 -82.35574
## 1330                 51 summer       L 29.66668 -82.35574
## 1331                 51 summer       S 29.66668 -82.35574
## 1332                 51 summer       L 29.66668 -82.35574
## 1333                 51 summer       L 29.66668 -82.35574
## 1334                 51 summer       L 29.66668 -82.35574
## 1335                 51 summer       L 29.66668 -82.35574
## 1336                 51 summer       L 29.66668 -82.35574
## 1337                 51 summer       L 29.66668 -82.35574
## 1338                 51 summer       L 29.66668 -82.35574
## 1339                 51 summer       L 29.66668 -82.35574
## 1340                 51 summer       S 29.66668 -82.35574
## 1341                 51 summer       L 29.66668 -82.35574
## 1342                 51 summer       L 29.66668 -82.35574
## 1343                 51 summer       L 29.66668 -82.35574
## 1344                 51 summer       L 29.66668 -82.35574
## 1345                 51 summer       L 29.66668 -82.35574
## 1346                 51 summer       L 29.66668 -82.35574
## 1347                 51 summer       L 29.66668 -82.35574
## 1348                 51 summer       L 29.66668 -82.35574
## 1349                 51 summer       L 29.66668 -82.35574
## 1350                 51 summer       L 29.66668 -82.35574
## 1351                 51 summer       L 29.66668 -82.35574
## 1352                 51 summer       L 29.66668 -82.35574
## 1353                 51 summer       L 29.66668 -82.35574
## 1354                 51 summer       L 29.66668 -82.35574
## 1355                 51 summer       L 29.66668 -82.35574
## 1356                 51 summer       L 29.66668 -82.35574
## 1357                 51 summer       L 29.66668 -82.35574
## 1358                 51 summer       S 29.66668 -82.35574
## 1359                 51 summer       L 29.66668 -82.35574
## 1360                 51 summer       L 29.66668 -82.35574
## 1361                 51 summer       L 29.66668 -82.35574
## 1362                 51 summer       L 29.66668 -82.35574
## 1363                 51 summer       L 29.66668 -82.35574
## 1364                 51 summer       L 29.66668 -82.35574
## 1365                 51 summer       L 29.66668 -82.35574
## 1366                 51 summer       L 29.66668 -82.35574
## 1367                 51 summer       L 29.66668 -82.35574
## 1368                 51 summer       L 29.66668 -82.35574
## 1369                 51 summer       L 29.66668 -82.35574
## 1370                 51 summer       L 29.66668 -82.35574
## 1371                 51 summer       L 29.66668 -82.35574
## 1372                 51 summer       L 29.66668 -82.35574
## 1373                 51 summer       L 29.66668 -82.35574
## 1374                 51 summer       S 29.66668 -82.35574
## 1375                 51 summer       L 25.94157 -80.48569
## 1376                 51 summer       S 25.94157 -80.48569
## 1377                 51 summer       L 25.94157 -80.48569
## 1378                 51 summer       L 25.94157 -80.48569
## 1379                 51 summer       S 25.94157 -80.48569
## 1380                 51 summer       L 25.94157 -80.48569
## 1381                 51 summer       L 25.94157 -80.48569
## 1382                 51 summer       L 25.94157 -80.48569
## 1383                 51 summer       L 25.94157 -80.48569
## 1384                 51 summer       L 25.94157 -80.48569
## 1385                 51 summer       L 25.94157 -80.48569
## 1386                 51 summer       L 25.94157 -80.48569
## 1387                 51 summer       L 25.94157 -80.48569
## 1388                 51 summer       L 25.94157 -80.48569
## 1389                 51 summer       L 25.94157 -80.48569
## 1390                 51 summer       L 25.94157 -80.48569
## 1391                 51 summer       L 25.94157 -80.48569
## 1392                 51 summer       L 25.94157 -80.48569
## 1393                 51 summer       S 25.94157 -80.48569
## 1394                 51 summer       L 25.94157 -80.48569
## 1395                 51 summer       L 25.94157 -80.48569
## 1396                 51 summer       L 25.94157 -80.48569
## 1397                 51 summer       L 25.94157 -80.48569
## 1398                 51 summer       L 25.94157 -80.48569
## 1399                 51 summer       L 25.94157 -80.48569
## 1400                 51 summer       L 25.94157 -80.48569
## 1401                 51 summer       L 25.94157 -80.48569
## 1402                 51 summer       L 25.94157 -80.48569
## 1403                 51 summer       S 25.94157 -80.48569
## 1404                 51 summer       L 25.94157 -80.48569
## 1405                 51 summer       L 25.94157 -80.48569
## 1406                 51 summer       L 25.94157 -80.48569
## 1407                 51 summer       L 25.94157 -80.48569
## 1408                 51 summer       S 25.94157 -80.48569
## 1409                 51 summer       L 25.94157 -80.48569
## 1410                 51 summer       L 25.94157 -80.48569
## 1411                 51 summer       L 25.94157 -80.48569
## 1412                 51 summer       L 25.94157 -80.48569
## 1413                 51 summer       L 25.94157 -80.48569
## 1414                 51 summer       L 25.94157 -80.48569
## 1415                 51 summer       L 25.94157 -80.48569
## 1416                 51 summer       L 25.94157 -80.48569
## 1417                 51 summer       L 25.94157 -80.48569
## 1418                 51 summer       S 25.94157 -80.48569
## 1419                 51 summer       L 25.94157 -80.48569
## 1420                 51 summer       L 25.94157 -80.48569
## 1421                 51 summer       L 25.94157 -80.48569
## 1422                 51 summer       L 25.94157 -80.48569
## 1423                 51 summer       L 25.94157 -80.48569
## 1424                 51 summer       L 25.94157 -80.48569
## 1425                 51 summer       L 25.94157 -80.48569
## 1426                 51 summer       L 25.94157 -80.48569
## 1427                 51 summer       L 25.94157 -80.48569
## 1428                 51 summer       L 25.94157 -80.48569
## 1429                 51 summer       L 25.94157 -80.48569
## 1430                 51 summer       L 25.94157 -80.48569
## 1431                 51 summer       L 25.94157 -80.48569
## 1432                 51 summer       L 25.94157 -80.48569
## 1433                 51 summer       L 25.94157 -80.48569
## 1434                 51 summer       L 25.94157 -80.48569
## 1435                 51 summer       L 25.94157 -80.48569
## 1436                 51 summer       L 25.94157 -80.48569
## 1437                 51 summer       L 25.94157 -80.48569
## 1438                 51 summer       L 25.94157 -80.48569
## 1439                 51 summer       L 25.94157 -80.48569
## 1440                 51 summer       L 25.94157 -80.48569
## 1441                 51 summer       L 25.94157 -80.48569
## 1442                 51 summer       L 25.94157 -80.48569
## 1443                 51 summer       L 25.94157 -80.48569
## 1444                 51 summer       L 25.94157 -80.48569
## 1445                 51 summer       L 25.94157 -80.48569
## 1446                 51 summer       L 25.94157 -80.48569
## 1447                 51 summer       L 25.94157 -80.48569
## 1448                 51 summer       L 25.94157 -80.48569
## 1449                 51 summer       L 25.94157 -80.48569
## 1450                 51 summer       L 25.94157 -80.48569
## 1451                 51 summer       L 25.94157 -80.48569
## 1452                 51 summer       L 25.94157 -80.48569
## 1453                 51 summer       L 25.94157 -80.48569
## 1454                 51 summer       L 25.94157 -80.48569
## 1455                 51 summer       L 25.94157 -80.48569
## 1456                 51 summer       L 25.94157 -80.48569
## 1457                 51 summer       L 25.94157 -80.48569
## 1458                 51 summer       L 25.94157 -80.48569
## 1459                 51 summer       L 25.94157 -80.48569
## 1460                 51 summer       L 25.94157 -80.48569
## 1461                 51 summer       L 25.94157 -80.48569
## 1462                 51 summer       L 25.94157 -80.48569
## 1463                 51 summer       L 25.94157 -80.48569
## 1464                 51 summer       L 25.94157 -80.48569
## 1465                 51 summer       L 25.94157 -80.48569
## 1466                 51 summer       L 25.94157 -80.48569
## 1467                 51 summer       L 25.94157 -80.48569
## 1468                 51 summer       L 25.94157 -80.48569
## 1469                 51 summer       L 25.94157 -80.48569
## 1470                 51 summer       L 25.94157 -80.48569
## 1471                 51 summer       L 25.94157 -80.48569
## 1472                 51 summer       L 25.94157 -80.48569
## 1473                 51 summer       L 25.94157 -80.48569
## 1474                 51 summer       L 25.94157 -80.48569
## 1475                 51 summer       L 25.94157 -80.48569
## 1476                 51 summer       L 25.94157 -80.48569
## 1477                 51 summer       L 25.94157 -80.48569
## 1478                 51 summer       L 25.94157 -80.48569
## 1479                 51 summer       L 25.94157 -80.48569
## 1480                 51 summer       L 25.94157 -80.48569
## 1481                 51 summer       L 25.94157 -80.48569
## 1482                 51 summer       L 25.94157 -80.48569
## 1483                 51 summer       L 25.94157 -80.48569
## 1484                 51 summer       L 25.94157 -80.48569
## 1485                 51 summer       L 25.94157 -80.48569
## 1486                 51 summer       L 25.94157 -80.48569
## 1487                 51 summer       L 25.94157 -80.48569
## 1488                 51 summer       L 25.94157 -80.48569
## 1489                 51 summer       L 25.94157 -80.48569
## 1490                 51 summer       L 25.94157 -80.48569
## 1491                 51 summer       L 25.94157 -80.48569
## 1492                 51 summer       L 25.94157 -80.48569
## 1493                 51 summer       L 25.94157 -80.48569
## 1494                 51 summer       L 25.94157 -80.48569
## 1495                 51 summer       L 25.94157 -80.48569
## 1496                 51 summer       L 25.94157 -80.48569
## 1497                 51 summer       L 25.94157 -80.48569
## 1498                 51 summer       L 25.94157 -80.48569
## 1499                 51 summer       L 25.94157 -80.48569
## 1500                 51 summer       L 25.94157 -80.48569
## 1501                 51 summer       L 25.94157 -80.48569
## 1502                 51 summer       L 25.12811 -80.40805
## 1503                 51 summer       L 25.12811 -80.40805
## 1504                 51 summer       L 25.12811 -80.40805
## 1505                 51 summer       S 25.12811 -80.40805
## 1506                 51 summer       L 25.12811 -80.40805
## 1507                 51 summer       L 25.12811 -80.40805
## 1508                 51 summer       L 25.12811 -80.40805
## 1509                 51 summer       L 25.12811 -80.40805
## 1510                 51 summer       L 25.12811 -80.40805
## 1511                 51 summer       L 25.12811 -80.40805
## 1512                 51 summer       L 25.12811 -80.40805
## 1513                 51 summer       S 25.12811 -80.40805
## 1514                 51 summer       L 25.12811 -80.40805
## 1515                 51 summer       L 25.12811 -80.40805
## 1516                 51 summer       L 25.12811 -80.40805
## 1517                 51 summer       L 25.12811 -80.40805
## 1518                 51 summer       L 25.12811 -80.40805
## 1519                 51 summer       L 25.12800 -80.40808
## 1520                 51 summer       L 25.12800 -80.40808
## 1521                 51 summer       L 25.12800 -80.40808
## 1522                 51 summer       L 25.12800 -80.40808
## 1523                 51 summer       L 25.12800 -80.40808
## 1524                 51 summer       S 25.12800 -80.40808
## 1525                 51 summer       S 25.12800 -80.40808
## 1526                 51 summer       L 25.12800 -80.40808
## 1527                 51 summer       L 25.12800 -80.40808
## 1528                 51 summer       L 25.12800 -80.40808
## 1529                 51 summer       L 25.12800 -80.40808
## 1530                 51 summer       L 25.12800 -80.40808
## 1531                 51 summer       L 25.12800 -80.40808
## 1532                 51 summer       L 25.12800 -80.40808
## 1533                 51 summer       L 25.12800 -80.40808
## 1534                 51 summer       L 25.12800 -80.40808
## 1535                 51 summer       S 25.12800 -80.40808
## 1536                 51 summer       L 25.12800 -80.40808
## 1537                 51 summer       L 25.12858 -80.40809
## 1538                 51 summer       L 25.12858 -80.40809
## 1539                 51 summer       L 25.12858 -80.40809
## 1540                 51 summer       L 25.12858 -80.40809
## 1541                 51 summer       S 25.12858 -80.40809
## 1542                 51 summer       L 25.12858 -80.40809
## 1543                 51 summer       L 25.12858 -80.40809
## 1544                 51 summer       L 25.12858 -80.40809
## 1545                 51 summer       S 25.12858 -80.40809
## 1546                 51 summer       S 25.12858 -80.40809
## 1547                 51 summer       L 25.12858 -80.40809
## 1548                 51 summer       L 25.12858 -80.40809
## 1549                 51 summer       S 25.12858 -80.40809
## 1550                 51 summer       L 25.12858 -80.40809
## 1551                 51 summer       S 25.12858 -80.40809
## 1552                 51 summer       S 25.12858 -80.40809
## 1553                 51 summer       L 25.12858 -80.40809
## 1554                 51 summer       L 25.12858 -80.40809
## 1555                 51 summer       S 25.12858 -80.40809
## 1556                 51 summer       L 25.12858 -80.40809
## 1557                 51 summer       L 25.12858 -80.40809
## 1558                 51 summer       L 25.12858 -80.40809
## 1559                 51 summer       L 25.12858 -80.40809
## 1560                 51 summer       S 25.12858 -80.40809
## 1561                 51 summer       L 25.12858 -80.40809
## 1562                 51 summer       S 25.12858 -80.40809
## 1563                 51 summer       S 25.12858 -80.40809
## 1564                 51 summer       S 25.12858 -80.40809
## 1565                 51 summer       S 25.12858 -80.40809
## 1566                 51 summer       S 25.12858 -80.40809
## 1567                 51 summer       S 25.12858 -80.40809
## 1568                 51 summer       L 25.12858 -80.40809
## 1569                 51 summer       S 25.12858 -80.40809
## 1570                 51 summer       L 25.12858 -80.40809
## 1571                 51 summer       S 25.12858 -80.40809
## 1572                 51 summer       S 25.12858 -80.40809
## 1573                 51 summer       L 25.12858 -80.40809
## 1574                 51 summer       L 25.25688 -80.30938
## 1575                 51 summer       L 25.25688 -80.30938
## 1576                 51 summer       L 25.25688 -80.30938
## 1577                 51 summer       L 25.25688 -80.30938
## 1578                 51 summer       L 25.25688 -80.30938
## 1579                 51 summer       L 25.25688 -80.30938
## 1580                 51 summer       L 25.25688 -80.30938
## 1581                 51 summer       L 25.25688 -80.30938
## 1582                 51 summer       L 25.25688 -80.30938
## 1583                 51 summer       L 25.25688 -80.30938
## 1584                 51 summer       L 25.25688 -80.30938
## 1585                 51 summer       L 25.25688 -80.30938
## 1586                 51 summer       S 25.25688 -80.30938
## 1587                 51 summer       L 25.25688 -80.30938
## 1588                 51 summer       S 25.25688 -80.30938
## 1589                 51 summer       L 25.25688 -80.30938
## 1590                 51 summer       L 25.25688 -80.30938
## 1591                 51 summer       L 25.25688 -80.30938
## 1592                 51 summer       L 25.25688 -80.30938
## 1593                 51 summer       S 25.25688 -80.30938
## 1594                 51 summer       L 27.93573 -81.57409
## 1595                 51 summer       L 27.93573 -81.57409
## 1596                 51 summer       L 27.93573 -81.57409
## 1597                 51 summer       L 27.93573 -81.57409
## 1598                 51 summer       L 27.93573 -81.57409
## 1599                 51 summer       L 27.93573 -81.57409
## 1600                 51 summer       L 27.93573 -81.57409
## 1601                 51 summer       L 27.93573 -81.57409
## 1602                 51 summer       L 27.93573 -81.57409
## 1603                 51 summer       L 27.93573 -81.57409
## 1604                 51 summer       L 27.93573 -81.57409
## 1605                 51 summer       L 27.93573 -81.57409
## 1606                 51 summer       L 27.93573 -81.57409
## 1607                 51 summer       L 27.93573 -81.57409
## 1608                 51 summer       L 27.93573 -81.57409
## 1609                 51 summer       S 27.93573 -81.57409
## 1610                 51 summer       L 27.93573 -81.57409
## 1611                 51 summer       S 27.93573 -81.57409
## 1612                 51 summer       L 27.93573 -81.57409
## 1613                 51 summer       L 27.93573 -81.57409
## 1614                 51 summer       L 27.93573 -81.57409
## 1615                 51 summer       L 27.93573 -81.57409
## 1616                 51 summer       L 27.93573 -81.57409
## 1617                 51 summer       L 27.93573 -81.57409
## 1618                 51 summer       L 27.93573 -81.57409
## 1619                 51 summer       S 27.93573 -81.57409
## 1620                 51 summer       L 27.93573 -81.57409
## 1621                 51 summer       L 27.93573 -81.57409
## 1622                 51 summer       L 27.93573 -81.57409
## 1623                 51 summer       L 27.93573 -81.57409
## 1624                 51 summer       L 27.93573 -81.57409
## 1625                 51 summer       L 27.93573 -81.57409
## 1626                 51 summer       L 27.93573 -81.57409
## 1627                 51 summer       L 27.93573 -81.57409
## 1628                 51 summer       S 27.93573 -81.57409
## 1629                 51 summer       S 27.93573 -81.57409
## 1630                 51 summer       L 27.93573 -81.57409
## 1631                 51 summer       L 27.93573 -81.57409
## 1632                 51 summer       L 27.93573 -81.57409
## 1633                 51 summer       S 27.93573 -81.57409
## 1634                 51 summer       S 27.93573 -81.57409
## 1635                 51 summer       L 27.93573 -81.57409
## 1636                 51 summer       L 27.93573 -81.57409
## 1637                 51 summer       S 27.93573 -81.57409
## 1638                 51 summer       S 27.93573 -81.57409
## 1639                 51 summer       L 27.93573 -81.57409
## 1640                 51 summer       S 27.93573 -81.57409
## 1641                 51 summer       S 27.93573 -81.57409
## 1642                 51 summer       L 27.93573 -81.57409
## 1643                 51 summer       S 27.93573 -81.57409
## 1644                 51 summer       L 27.93573 -81.57409
## 1645                 51 summer       S 27.93573 -81.57409
## 1646                 51 summer       L 27.93573 -81.57409
## 1647                 51 summer       L 27.93573 -81.57409
## 1648                 51 summer       S 27.93573 -81.57409
## 1649                 51 summer       L 27.93573 -81.57409
## 1650                 51 summer       L 27.93573 -81.57409
## 1651                 51 summer       S 27.93573 -81.57409
## 1652                 51 summer       L 27.93573 -81.57409
## 1653                 51 summer       L 27.93573 -81.57409
## 1654                 51 summer       S 27.93573 -81.57409
## 1655                 51 summer       L 27.93573 -81.57409
## 1656                 51 summer       S 27.93573 -81.57409
## 1657                 51 summer       S 27.93573 -81.57409
## 1658                 51 summer       S 27.93573 -81.57409
## 1659                 51 summer       S 27.93573 -81.57409
## 1660                 51 summer       L 27.93573 -81.57409
## 1661                 51 summer       S 27.93573 -81.57409
## 1662                 51 summer       L 27.93573 -81.57409
## 1663                 51 summer       L 27.93573 -81.57409
## 1664                 51 summer       L 27.93573 -81.57409
## 1665                 51 summer       L 27.93573 -81.57409
## 1666                 51 summer       L 27.93573 -81.57409
## 1667                 51 summer       S 27.93573 -81.57409
## 1668                 51 summer       S 27.93573 -81.57409
## 1669                 51 summer       L 27.93573 -81.57409
## 1670                 51 summer       S 27.93573 -81.57409
## 1671                 51 summer       S 27.93573 -81.57409
## 1672                 51 summer       S 27.93573 -81.57409
## 1673                 51 summer       L 27.93573 -81.57409
## 1674                 51 summer       S 27.93573 -81.57409
## 1675                 51 summer       L 27.93573 -81.57409
## 1676                 51 summer       S 27.93573 -81.57409
## 1677                 51 summer       S 27.93573 -81.57409
## 1678                 51 summer       S 27.93573 -81.57409
## 1679                 51 summer       S 27.93573 -81.57409
## 1680                 51 summer       L 27.93573 -81.57409
## 1681                 51 summer       S 27.93573 -81.57409
## 1682                 51 summer       L 27.93573 -81.57409
## 1683                 51 summer       L 27.93573 -81.57409
## 1684                 51 summer       S 27.93573 -81.57409
## 1685                 51 summer       L 28.80530 -81.88184
## 1686                 51 summer       L 28.80530 -81.88184
## 1687                 51 summer       S 28.80530 -81.88184
## 1688                 51 summer       S 28.80530 -81.88184
## 1689                 51 summer       S 28.80530 -81.88184
## 1690                 51 summer       L 28.80530 -81.88184
## 1691                 51 summer       L 28.80530 -81.88184
## 1692                 51 summer       L 28.80530 -81.88184
## 1693                 51 summer       L 28.80530 -81.88184
## 1694                 51 summer       S 28.80530 -81.88184
## 1695                 51 summer       L 28.80530 -81.88184
## 1696                 51 summer       L 28.80530 -81.88184
## 1697                 51 summer       L 28.80530 -81.88184
## 1698                 51 summer       L 28.80530 -81.88184
## 1699                 51 summer       S 28.80530 -81.88184
## 1700                 51 summer       S 28.80530 -81.88184
## 1701                 51 summer       L 28.80530 -81.88184
## 1702                 51 summer       S 28.80530 -81.88184
## 1703                 51 summer       L 28.80530 -81.88184
## 1704                 51 summer       L 28.80530 -81.88184
## 1705                 51 summer       L 28.80530 -81.88184
## 1706                 51 summer       L 28.80530 -81.88184
## 1707                 51 summer       L 28.80530 -81.88184
## 1708                 51 summer       S 28.80530 -81.88184
## 1709                 51 summer       L 28.80530 -81.88184
## 1710                 51 summer       L 28.80530 -81.88184
## 1711                 51 summer       S 28.80530 -81.88184
## 1712                 51 summer       L 28.80530 -81.88184
## 1713                 51 summer       L 28.80530 -81.88184
## 1714                 51 summer       L 28.80530 -81.88184
## 1715                 51 summer       L 28.80530 -81.88184
## 1716                 51 summer       L 28.80530 -81.88184
## 1717                 51 summer       L 28.80530 -81.88184
## 1718                 51 summer       S 28.80530 -81.88184
## 1719                 51 summer       S 28.80530 -81.88184
## 1720                 51 summer       L 28.80530 -81.88184
## 1721                 51 summer       L 28.80530 -81.88184
## 1722                 51 summer       S 28.80530 -81.88184
## 1723                 51 summer       L 28.80530 -81.88184
## 1724                 51 summer       L 28.80530 -81.88184
## 1725                 51 summer       S 28.80530 -81.88184
## 1726                 51 summer       L 28.80530 -81.88184
## 1727                 51 summer       L 28.80530 -81.88184
## 1728                 51 summer       L 28.80530 -81.88184
## 1729                 51 summer       S 28.80530 -81.88184
## 1730                 51 summer       S 28.80530 -81.88184
## 1731                 51 summer       L 28.80530 -81.88184
## 1732                 51 summer       L 28.80530 -81.88184
## 1733                 51 summer       L 28.80530 -81.88184
## 1734                 51 summer       S 28.80530 -81.88184
## 1735                 51 summer       S 28.80530 -81.88184
## 1736                 51 summer       S 28.80530 -81.88184
## 1737                 51 summer       S 28.80530 -81.88184
## 1738                 51 summer       S 28.80530 -81.88184
## 1739                 51 summer       S 28.80530 -81.88184
## 1740                 51 summer       S 28.80530 -81.88184
## 1741                 51 summer       L 28.80530 -81.88184
## 1742                 51 summer       S 28.80530 -81.88184
## 1743                 64   fall       L 29.66648 -82.35720
## 1744                 64   fall       L 29.66648 -82.35720
## 1745                 64   fall       L 29.66648 -82.35720
## 1746                 64   fall       L 29.66648 -82.35720
## 1747                 64   fall       L 29.66648 -82.35720
## 1748                 64   fall       L 29.66648 -82.35720
## 1749                 64   fall       L 29.66648 -82.35720
## 1750                 64   fall       L 29.66648 -82.35720
## 1751                 64   fall       L 29.66648 -82.35720
## 1752                 64   fall       L 29.66648 -82.35720
## 1753                 64   fall       L 29.66648 -82.35720
## 1754                 64   fall       L 29.66648 -82.35720
## 1755                 64   fall       L 29.66648 -82.35720
## 1756                 64   fall       L 29.66648 -82.35720
## 1757                 64   fall       L 29.66648 -82.35720
## 1758                 64   fall       L 29.66648 -82.35720
## 1759                 64   fall       S 29.66648 -82.35720
## 1760                 64   fall       L 29.66648 -82.35720
## 1761                 64   fall       L 29.66648 -82.35720
## 1762                 64   fall       L 29.66648 -82.35720
## 1763                 64   fall       L 29.66648 -82.35720
## 1764                 64   fall       L 29.66648 -82.35720
## 1765                 64   fall       L 29.66648 -82.35720
## 1766                 64   fall       L 29.66648 -82.35720
## 1767                 64   fall       L 29.66648 -82.35720
## 1768                 64   fall       L 29.66648 -82.35720
## 1769                 64   fall       L 29.66648 -82.35720
## 1770                 64   fall       L 29.66648 -82.35720
## 1771                 64   fall       L 29.66648 -82.35720
## 1772                 64   fall       L 29.66648 -82.35720
## 1773                 64   fall       L 29.66648 -82.35720
## 1774                 64   fall       L 29.66648 -82.35720
## 1775                 64   fall       L 29.66648 -82.35720
## 1776                 64   fall       L 29.66648 -82.35720
## 1777                 64   fall       L 29.66648 -82.35720
## 1778                 64   fall       L 29.66648 -82.35720
## 1779                 64   fall       L 29.66648 -82.35720
## 1780                 64   fall       L 29.66648 -82.35720
## 1781                 64   fall       L 29.66648 -82.35720
## 1782                 64   fall       L 29.66648 -82.35720
## 1783                 64   fall       L 29.66648 -82.35720
## 1784                 64   fall       L 29.66648 -82.35720
## 1785                 64   fall       L 29.66648 -82.35720
## 1786                 64   fall       L 29.66648 -82.35720
## 1787                 64   fall       L 29.66648 -82.35720
## 1788                 64   fall       L 29.66648 -82.35720
## 1789                 64   fall       L 29.66648 -82.35720
## 1790                 64   fall       L 29.66648 -82.35720
## 1791                 64   fall       L 29.66648 -82.35720
## 1792                 64   fall       L 29.66648 -82.35720
## 1793                 64   fall       L 29.66648 -82.35720
## 1794                 64   fall       L 29.66648 -82.35720
## 1795                 64   fall       L 29.66648 -82.35720
## 1796                 64   fall       L 29.66648 -82.35720
## 1797                 64   fall       L 29.66648 -82.35720
## 1798                 64   fall       S 29.66648 -82.35720
## 1799                 64   fall       L 29.66648 -82.35720
## 1800                 64   fall       L 29.66648 -82.35720
## 1801                 64   fall       L 29.66648 -82.35720
## 1802                 64   fall       L 29.66648 -82.35720
## 1803                 64   fall       S 29.66648 -82.35720
## 1804                 64   fall       L 29.66648 -82.35720
## 1805                 64   fall       L 29.66648 -82.35720
## 1806                 64   fall       L 29.66648 -82.35720
## 1807                 64   fall       L 25.19492 -80.34596
## 1808                 64   fall       L 25.19492 -80.34596
## 1809                 64   fall       L 25.19492 -80.34596
## 1810                 64   fall       L 25.19492 -80.34596
## 1811                 64   fall       S 25.19492 -80.34596
## 1812                 64   fall       S 25.19492 -80.34596
## 1813                 64   fall       S 25.19492 -80.34596
## 1814                 64   fall       S 25.19492 -80.34596
## 1815                 64   fall       L 25.19492 -80.34596
## 1816                 64   fall       S 25.19492 -80.34596
## 1817                 64   fall       S 25.19492 -80.34596
## 1818                 64   fall       L 25.19492 -80.34596
## 1819                 64   fall       S 25.19492 -80.34596
## 1820                 64   fall       S 25.19492 -80.34596
## 1821                 64   fall       L 25.19492 -80.34596
## 1822                 64   fall       S 25.19492 -80.34596
## 1823                 64   fall       L 25.19492 -80.34596
## 1824                 64   fall       S 25.19492 -80.34596
## 1825                 64   fall       L 25.19492 -80.34596
## 1826                 64   fall       L 25.19492 -80.34596
## 1827                 64   fall       L 25.19492 -80.34596
## 1828                 64   fall       S 25.19492 -80.34596
## 1829                 64   fall       S 25.19492 -80.34596
## 1830                 64   fall       L 25.19492 -80.34596
## 1831                 64   fall       S 25.19492 -80.34596
## 1832                 64   fall       L 25.19492 -80.34596
## 1833                 64   fall       L 25.19492 -80.34596
## 1834                 64   fall       S 25.19492 -80.34596
## 1835                 64   fall       S 25.19492 -80.34596
## 1836                 64   fall       S 25.19492 -80.34596
## 1837                 64   fall       L 25.19492 -80.34596
## 1838                 64   fall       S 25.19492 -80.34596
## 1839                 64   fall       L 25.19492 -80.34596
## 1840                 64   fall       L 25.19492 -80.34596
## 1841                 64   fall       L 25.19492 -80.34596
## 1842                 64   fall       S 25.19492 -80.34596
## 1843                 64   fall       S 25.19492 -80.34596
## 1844                 64   fall       S 25.19492 -80.34596
## 1845                 64   fall       S 25.19492 -80.34596
## 1846                 64   fall       S 25.19492 -80.34596
## 1847                 64   fall       L 25.19492 -80.34596
## 1848                 64   fall       S 25.19492 -80.34596
## 1849                 64   fall       L 25.19492 -80.34596
## 1850                 64   fall       L 25.19492 -80.34596
## 1851                 64   fall       L 25.19492 -80.34596
## 1852                 64   fall       S 25.19492 -80.34596
## 1853                 64   fall       L 25.19492 -80.34596
## 1854                 64   fall       L 25.19492 -80.34596
## 1855                 64   fall       L 25.19492 -80.34596
## 1856                 64   fall       L 25.19492 -80.34596
## 1857                 64   fall       S 25.19492 -80.34596
## 1858                 64   fall       S 25.19492 -80.34596
## 1859                 64   fall       L 25.19492 -80.34596
## 1860                 64   fall       S 25.19492 -80.34596
## 1861                 64   fall       S 25.19492 -80.34596
## 1862                 64   fall       L 25.19492 -80.34596
## 1863                 64   fall       L 25.19492 -80.34596
## 1864                 64   fall       S 25.19492 -80.34596
## 1865                 64   fall       L 25.19492 -80.34596
## 1866                 64   fall       S 25.19492 -80.34596
## 1867                 64   fall       L 25.19492 -80.34596
## 1868                 64   fall       S 25.19492 -80.34596
## 1869                 64   fall       L 25.19492 -80.34596
## 1870                 64   fall       S 25.19492 -80.34596
## 1871                 64   fall       L 25.19492 -80.34596
## 1872                 64   fall       S 25.19492 -80.34596
## 1873                 64   fall       S 25.19492 -80.34596
## 1874                 64   fall       S 25.19492 -80.34596
## 1875                 64   fall       L 27.93575 -81.57412
## 1876                 64   fall       L 27.93575 -81.57412
## 1877                 64   fall       L 27.93575 -81.57412
## 1878                 64   fall       L 27.93575 -81.57412
## 1879                 64   fall       L 27.93575 -81.57412
## 1880                 64   fall       L 27.93575 -81.57412
## 1881                 64   fall       L 27.93575 -81.57412
## 1882                 64   fall       S 27.93575 -81.57412
## 1883                 64   fall       L 27.93575 -81.57412
## 1884                 64   fall       L 27.93575 -81.57412
## 1885                 64   fall       L 27.93575 -81.57412
## 1886                 64   fall       L 27.93575 -81.57412
## 1887                 64   fall       L 27.93575 -81.57412
## 1888                 64   fall       L 27.93575 -81.57412
## 1889                 64   fall       L 27.93575 -81.57412
## 1890                 64   fall       L 27.93575 -81.57412
## 1891                 64   fall       L 27.93575 -81.57412
## 1892                 64   fall       L 27.93575 -81.57412
## 1893                 64   fall       L 27.93575 -81.57412
## 1894                 64   fall       L 27.93575 -81.57412
## 1895                 64   fall       L 27.93575 -81.57412
## 1896                 64   fall       L 27.93575 -81.57412
## 1897                 64   fall       L 27.93575 -81.57412
## 1898                 64   fall       L 27.93575 -81.57412
## 1899                 64   fall       L 27.93575 -81.57412
## 1900                 64   fall       S 27.93575 -81.57412
## 1901                 64   fall       L 27.93575 -81.57412
## 1902                 64   fall       L 27.93575 -81.57412
## 1903                 64   fall       S 27.93575 -81.57412
## 1904                 64   fall       L 27.93575 -81.57412
## 1905                 64   fall       L 27.93575 -81.57412
## 1906                 64   fall       L 27.93575 -81.57412
## 1907                 64   fall       L 27.93575 -81.57412
## 1908                 64   fall       L 27.93575 -81.57412
## 1909                 64   fall       L 27.93575 -81.57412
## 1910                 64   fall       L 27.93575 -81.57412
## 1911                 64   fall       L 27.93575 -81.57412
## 1912                 64   fall       L 27.93575 -81.57412
## 1913                 64   fall       L 27.93575 -81.57412
## 1914                 64   fall       L 27.93575 -81.57412
## 1915                 64   fall       L 28.81527 -81.88217
## 1916                 72 spring       L 29.66679 -82.35761
## 1917                 72 spring       L 29.66679 -82.35761
## 1918                 72 spring       L 29.66679 -82.35761
## 1919                 72 spring       L 29.66679 -82.35761
## 1920                 72 spring       L 29.66679 -82.35761
## 1921                 72 spring       S 29.66679 -82.35761
## 1922                 72 spring       L 29.66679 -82.35761
## 1923                 72 spring       L 29.66679 -82.35761
## 1924                 72 spring       L 29.66679 -82.35761
## 1925                 72 spring       L 29.66197 -82.34728
## 1926                 72 spring       L 29.66197 -82.34728
## 1927                 72 spring       L 29.66197 -82.34728
## 1928                 72 spring       L 29.66197 -82.34728
## 1929                 72 spring       L 29.66197 -82.34728
## 1930                 72 spring       L 29.66197 -82.34728
## 1931                 72 spring       L 29.66197 -82.34728
## 1932                 72 spring       L 29.66197 -82.34728
## 1933                 72 spring       L 29.66197 -82.34728
## 1934                 72 spring       L 29.66197 -82.34728
## 1935                 72 spring       S 29.66197 -82.34728
## 1936                 72 spring       L 29.66197 -82.34728
## 1937                 72 spring       L 29.66197 -82.34728
## 1938                 72 spring       L 29.66197 -82.34728
## 1939                 72 spring       L 29.66197 -82.34728
## 1940                 72 spring       L 29.66197 -82.34728
## 1941                 72 spring       L 29.66197 -82.34728
## 1942                 72 spring       L 29.66197 -82.34728
## 1943                 72 spring       L 29.66197 -82.34728
## 1944                 72 spring       L 29.66197 -82.34728
## 1945                 72 spring       L 29.66197 -82.34728
## 1946                 72 spring       L 29.66197 -82.34728
## 1947                 72 spring       L 29.66197 -82.34728
## 1948                 72 spring       L 29.66197 -82.34728
## 1949                 72 spring       L 29.66197 -82.34728
## 1950                 72 spring       L 29.66197 -82.34728
## 1951                 72 spring       L 29.66197 -82.34728
## 1952                 72 spring       L 29.66197 -82.34728
## 1953                 72 spring       L 29.66197 -82.34728
## 1954                 72 spring       L 29.66197 -82.34728
## 1955                 72 spring       L 29.66197 -82.34728
## 1956                 72 spring       L 29.66197 -82.34728
## 1957                 72 spring       L 29.66197 -82.34728
## 1958                 72 spring       L 29.66197 -82.34728
## 1959                 72 spring       L 29.66197 -82.34728
## 1960                 72 spring       L 29.66197 -82.34728
## 1961                 72 spring       L 29.66197 -82.34728
## 1962                 72 spring       L 29.66197 -82.34728
## 1963                 72 spring       L 29.66197 -82.34728
## 1964                 72 spring       L 29.66197 -82.34728
## 1965                 72 spring       S 25.48862 -80.48976
## 1966                 72 spring       L 25.48862 -80.48976
## 1967                 72 spring       L 25.48862 -80.48976
## 1968                 72 spring       L 25.48862 -80.48976
## 1969                 72 spring       L 25.48862 -80.48976
## 1970                 72 spring       L 25.48862 -80.48976
## 1971                 72 spring       S 25.48862 -80.48976
## 1972                 72 spring       L 25.48862 -80.48976
## 1973                 72 spring       L 25.48862 -80.48976
## 1974                 72 spring       S 25.48862 -80.48976
## 1975                 72 spring       S 25.48862 -80.48976
## 1976                 72 spring       S 25.48862 -80.48976
## 1977                 72 spring       L 25.48862 -80.48976
## 1978                 72 spring       S 25.48862 -80.48976
## 1979                 72 spring       S 25.48862 -80.48976
## 1980                 72 spring       L 25.48862 -80.48976
## 1981                 72 spring       L 25.48862 -80.48976
## 1982                 72 spring       S 25.48862 -80.48976
## 1983                 72 spring       S 25.12848 -80.40754
## 1984                 72 spring       S 25.12848 -80.40754
## 1985                 72 spring       S 25.12848 -80.40754
## 1986                 72 spring       L 25.12848 -80.40754
## 1987                 72 spring       L 25.12848 -80.40754
## 1988                 72 spring       L 25.12848 -80.40754
## 1989                 72 spring       L 25.12848 -80.40754
## 1990                 72 spring       S 25.12848 -80.40754
## 1991                 72 spring       S 25.12848 -80.40754
## 1992                 72 spring       S 25.12848 -80.40754
## 1993                 72 spring       S 25.12848 -80.40754
## 1994                 72 spring       S 25.12848 -80.40754
## 1995                 72 spring       S 25.12848 -80.40754
## 1996                 72 spring       L 25.12848 -80.40754
## 1997                 72 spring       S 25.12848 -80.40754
## 1998                 72 spring       S 25.12848 -80.40754
## 1999                 72 spring       S 25.12848 -80.40754
## 2000                 72 spring       L 25.12848 -80.40754
## 2001                 72 spring       L 25.12848 -80.40754
## 2002                 72 spring       L 25.12848 -80.40754
## 2003                 72 spring       L 25.12848 -80.40754
## 2004                 72 spring       S 25.12848 -80.40754
## 2005                 72 spring       L 25.12848 -80.40754
## 2006                 72 spring       L 25.12848 -80.40754
## 2007                 72 spring       S 25.12848 -80.40754
## 2008                 72 spring       L 25.12848 -80.40754
## 2009                 72 spring       S 25.12848 -80.40754
## 2010                 72 spring       S 25.12848 -80.40754
## 2011                 72 spring       S 25.12848 -80.40754
## 2012                 72 spring       S 25.12848 -80.40754
## 2013                 72 spring       L 25.12848 -80.40754
## 2014                 72 spring       S 25.12848 -80.40754
## 2015                 72 spring       L 25.12848 -80.40754
## 2016                 72 spring       S 25.12848 -80.40754
## 2017                 72 spring       S 25.12848 -80.40754
## 2018                 72 spring       S 25.12848 -80.40754
## 2019                 72 spring       L 25.12848 -80.40754
## 2020                 72 spring       S 25.12848 -80.40754
## 2021                 72 spring       S 25.12848 -80.40754
## 2022                 72 spring       S 25.12848 -80.40754
## 2023                 72 spring       S 25.12848 -80.40754
## 2024                 72 spring       L 25.12848 -80.40754
## 2025                 72 spring       S 25.12848 -80.40754
## 2026                 72 spring       S 25.12848 -80.40754
## 2027                 72 spring       S 25.12848 -80.40754
## 2028                 72 spring       S 25.12848 -80.40754
## 2029                 72 spring       L 25.12848 -80.40754
## 2030                 72 spring       L 25.12848 -80.40754
## 2031                 72 spring       L 25.12848 -80.40754
## 2032                 72 spring       S 25.12848 -80.40754
## 2033                 72 spring       S 25.12848 -80.40754
## 2034                 72 spring       L 25.12848 -80.40754
## 2035                 72 spring       S 25.12848 -80.40754
## 2036                 72 spring       L 25.12848 -80.40754
## 2037                 72 spring       S 25.12848 -80.40754
## 2038                 72 spring       L 25.12848 -80.40754
## 2039                 72 spring       S 25.12848 -80.40754
## 2040                 72 spring       S 25.12848 -80.40754
## 2041                 72 spring       S 25.12848 -80.40754
## 2042                 72 spring       L 25.12848 -80.40754
## 2043                 72 spring       S 25.12848 -80.40754
## 2044                 72 spring       S 25.12848 -80.40754
## 2045                 72 spring       S 25.12848 -80.40754
## 2046                 72 spring       S 25.12848 -80.40754
## 2047                 72 spring       S 25.12848 -80.40754
## 2048                 72 spring       S 25.12848 -80.40754
## 2049                 72 spring       S 25.12848 -80.40754
## 2050                 72 spring       L 25.12848 -80.40754
## 2051                 72 spring       S 25.12848 -80.40754
## 2052                 72 spring       S 25.12848 -80.40754
## 2053                 72 spring       L 25.12848 -80.40754
## 2054                 72 spring       S 25.12848 -80.40754
## 2055                 72 spring       S 25.12848 -80.40754
## 2056                 72 spring       L 25.12848 -80.40754
## 2057                 72 spring       S 25.12848 -80.40754
## 2058                 72 spring       S 25.12848 -80.40754
## 2059                 72 spring       L 27.29866 -81.36612
## 2060                 72 spring       L 27.29866 -81.36612
## 2061                 72 spring       L 27.29866 -81.36612
## 2062                 72 spring       L 27.29866 -81.36612
## 2063                 72 spring       L 27.29866 -81.36612
## 2064                 72 spring       L 27.29866 -81.36612
## 2065                 72 spring       L 27.29866 -81.36612
## 2066                 72 spring       L 27.29866 -81.36612
## 2067                 72 spring       S 27.29866 -81.36612
## 2068                 72 spring       L 27.29866 -81.36612
## 2069                 72 spring       S 27.29866 -81.36612
## 2070                 72 spring       L 27.29866 -81.36612
## 2071                 72 spring       S 27.29866 -81.36612
## 2072                 72 spring       L 27.29866 -81.36612
## 2073                 72 spring       L 27.29866 -81.36612
## 2074                 72 spring       L 27.29866 -81.36612
## 2075                 72 spring       L 27.29866 -81.36612
## 2076                 72 spring       S 27.29866 -81.36612
## 2077                 72 spring       L 27.29866 -81.36612
## 2078                 72 spring       S 27.29866 -81.36612
## 2079                 72 spring       L 27.29866 -81.36612
## 2080                 72 spring       L 27.29866 -81.36612
## 2081                 72 spring       L 27.29866 -81.36612
## 2082                 72 spring       L 27.29866 -81.36612
## 2083                 72 spring       L 27.29866 -81.36612
## 2084                 72 spring       L 27.29866 -81.36612
## 2085                 72 spring       L 27.29866 -81.36612
## 2086                 72 spring       L 27.29866 -81.36612
## 2087                 72 spring       L 27.29866 -81.36612
## 2088                 72 spring       L 27.29866 -81.36612
## 2089                 72 spring       L 27.29866 -81.36612
## 2090                 72 spring       L 27.29866 -81.36612
## 2091                 72 spring       L 27.29866 -81.36612
## 2092                 72 spring       L 27.29866 -81.36612
## 2093                 72 spring       L 27.29866 -81.36612
## 2094                 72 spring       L 27.29866 -81.36612
## 2095                 72 spring       L 27.29866 -81.36612
## 2096                 72 spring       L 27.29866 -81.36612
## 2097                 72 spring       L 27.29866 -81.36612
## 2098                 72 spring       L 27.29866 -81.36612
## 2099                 72 spring       L 27.29866 -81.36612
## 2100                 72 spring       L 27.29866 -81.36612
## 2101                 72 spring       L 27.29866 -81.36612
## 2102                 72 spring       L 27.29866 -81.36612
## 2103                 72 spring       S 27.29866 -81.36612
## 2104                 72 spring       L 27.29866 -81.36612
## 2105                 72 spring       L 27.29866 -81.36612
## 2106                 72 spring       S 27.29866 -81.36612
## 2107                 72 spring       L 27.29866 -81.36612
## 2108                 72 spring       S 27.29866 -81.36612
## 2109                 72 spring       L 27.29866 -81.36612
## 2110                 72 spring       L 27.29866 -81.36612
## 2111                 72 spring       L 27.29866 -81.36612
## 2112                 72 spring       L 27.29866 -81.36612
## 2113                 72 spring       L 27.29866 -81.36612
## 2114                 72 spring       L 27.29866 -81.36612
## 2115                 72 spring       L 27.29866 -81.36612
## 2116                 72 spring       L 27.29866 -81.36612
## 2117                 72 spring       L 27.29866 -81.36612
## 2118                 72 spring       L 27.29866 -81.36612
## 2119                 72 spring       L 27.29866 -81.36612
## 2120                 72 spring       L 27.29866 -81.36612
## 2121                 72 spring       L 25.22809 -80.32888
## 2122                 72 spring       L 25.22809 -80.32888
## 2123                 72 spring       L 25.22809 -80.32888
## 2124                 72 spring       L 25.22809 -80.32888
## 2125                 72 spring       S 25.22809 -80.32888
## 2126                 72 spring       L 25.22809 -80.32888
## 2127                 72 spring       S 25.22809 -80.32888
## 2128                 72 spring       L 25.22809 -80.32888
## 2129                 72 spring       L 25.22809 -80.32888
## 2130                 72 spring       L 25.22809 -80.32888
## 2131                 72 spring       S 25.22809 -80.32888
## 2132                 72 spring       L 25.22809 -80.32888
## 2133                 72 spring       L 25.22809 -80.32888
## 2134                 72 spring       L 25.22809 -80.32888
## 2135                 72 spring       L 25.22809 -80.32888
## 2136                 72 spring       S 25.22809 -80.32888
## 2137                 72 spring       L 25.22809 -80.32888
## 2138                 72 spring       L 25.22809 -80.32888
## 2139                 72 spring       L 25.22809 -80.32888
## 2140                 72 spring       L 25.22809 -80.32888
## 2141                 72 spring       L 25.22809 -80.32888
## 2142                 72 spring       S 25.22809 -80.32888
## 2143                 72 spring       L 25.22809 -80.32888
## 2144                 72 spring       S 25.22809 -80.32888
## 2145                 72 spring       S 25.22809 -80.32888
## 2146                 72 spring       L 25.22809 -80.32888
## 2147                 72 spring       S 25.22809 -80.32888
## 2148                 72 spring       L 25.22809 -80.32888
## 2149                 72 spring       S 25.22809 -80.32888
## 2150                 72 spring       L 25.22809 -80.32888
## 2151                 72 spring       S 25.22809 -80.32888
## 2152                 72 spring       S 25.22809 -80.32888
## 2153                 72 spring       L 25.22809 -80.32888
## 2154                 72 spring       L 25.22809 -80.32888
## 2155                 72 spring       L 25.22809 -80.32888
## 2156                 72 spring       L 25.22809 -80.32888
## 2157                 72 spring       L 25.22809 -80.32888
## 2158                 72 spring       L 25.22809 -80.32888
## 2159                 72 spring       L 25.22809 -80.32888
## 2160                 72 spring       S 25.22809 -80.32888
## 2161                 72 spring       L 25.22809 -80.32888
## 2162                 72 spring       L 25.22809 -80.32888
## 2163                 72 spring       S 25.22809 -80.32888
## 2164                 72 spring       S 25.19484 -80.34590
## 2165                 72 spring       L 25.19484 -80.34590
## 2166                 72 spring       L 25.19484 -80.34590
## 2167                 72 spring       L 25.19484 -80.34590
## 2168                 72 spring       L 25.19484 -80.34590
## 2169                 72 spring       S 25.19484 -80.34590
## 2170                 72 spring       L 25.19484 -80.34590
## 2171                 72 spring       L 25.19484 -80.34590
## 2172                 72 spring       S 25.19484 -80.34590
## 2173                 72 spring       L 25.19484 -80.34590
## 2174                 72 spring       S 25.19484 -80.34590
## 2175                 72 spring       L 25.19484 -80.34590
## 2176                 72 spring       L 25.19484 -80.34590
## 2177                 72 spring       L 25.19484 -80.34590
## 2178                 72 spring       S 25.19484 -80.34590
## 2179                 72 spring       S 25.19484 -80.34590
## 2180                 72 spring       S 25.19484 -80.34590
## 2181                 72 spring       S 25.19484 -80.34590
## 2182                 72 spring       S 25.19484 -80.34590
## 2183                 72 spring       S 25.19484 -80.34590
## 2184                 72 spring       L 25.19484 -80.34590
## 2185                 72 spring       L 25.19484 -80.34590
## 2186                 72 spring       S 25.19484 -80.34590
## 2187                 72 spring       L 25.19484 -80.34590
## 2188                 72 spring       L 25.19484 -80.34590
## 2189                 72 spring       L 25.19484 -80.34590
## 2190                 72 spring       L 25.19484 -80.34590
## 2191                 72 spring       S 25.19484 -80.34590
## 2192                 72 spring       L 25.19484 -80.34590
## 2193                 72 spring       S 25.19484 -80.34590
## 2194                 72 spring       S 25.19484 -80.34590
## 2195                 72 spring       L 25.19484 -80.34590
## 2196                 72 spring       L 25.19484 -80.34590
## 2197                 72 spring       S 25.19484 -80.34590
## 2198                 72 spring       L 25.19484 -80.34590
## 2199                 72 spring       L 25.19484 -80.34590
## 2200                 72 spring       S 25.19484 -80.34590
## 2201                 72 spring       L 25.19484 -80.34590
## 2202                 72 spring       S 25.19484 -80.34590
## 2203                 72 spring       L 25.19484 -80.34590
## 2204                 72 spring       S 25.19484 -80.34590
## 2205                 72 spring       S 25.19484 -80.34590
## 2206                 72 spring       L 25.19484 -80.34590
## 2207                 72 spring       L 25.19484 -80.34590
## 2208                 72 spring       L 25.19484 -80.34590
## 2209                 72 spring       S 25.19484 -80.34590
## 2210                 72 spring       S 25.19484 -80.34590
## 2211                 72 spring       S 25.19484 -80.34590
## 2212                 72 spring       S 25.19484 -80.34590
## 2213                 72 spring       S 25.19484 -80.34590
## 2214                 72 spring       L 25.19484 -80.34590
## 2215                 72 spring       S 25.19484 -80.34590
## 2216                 72 spring       S 25.19484 -80.34590
## 2217                 72 spring       S 25.19484 -80.34590
## 2218                 72 spring       S 25.19484 -80.34590
## 2219                 72 spring       L 25.19484 -80.34590
## 2220                 72 spring       S 25.19484 -80.34590
## 2221                 72 spring       S 25.19484 -80.34590
## 2222                 72 spring       S 25.18229 -80.36370
## 2223                 72 spring       L 25.18229 -80.36370
## 2224                 72 spring       L 25.18229 -80.36370
## 2225                 72 spring       S 25.18229 -80.36370
## 2226                 72 spring       L 25.18229 -80.36370
## 2227                 72 spring       S 25.18229 -80.36370
## 2228                 72 spring       S 25.18229 -80.36370
## 2229                 72 spring       S 25.18229 -80.36370
## 2230                 72 spring       S 25.18229 -80.36370
## 2231                 72 spring       S 25.17550 -80.36782
## 2232                 72 spring       S 25.17550 -80.36782
## 2233                 72 spring       L 25.17550 -80.36782
## 2234                 72 spring       S 25.17550 -80.36782
## 2235                 72 spring       S 25.17550 -80.36782
## 2236                 72 spring       L 25.17550 -80.36782
## 2237                 72 spring       L 25.17550 -80.36782
## 2238                 72 spring       S 25.17550 -80.36782
## 2239                 72 spring       L 25.17550 -80.36782
## 2240                 72 spring       L 25.17550 -80.36782
## 2241                 72 spring       S 25.17550 -80.36782
## 2242                 72 spring       S 25.17550 -80.36782
## 2243                 72 spring       L 25.17550 -80.36782
## 2244                 72 spring       L 25.17550 -80.36782
## 2245                 72 spring       L 25.17550 -80.36782
## 2246                 72 spring       L 25.17550 -80.36782
## 2247                 72 spring       L 25.17550 -80.36782
## 2248                 72 spring       S 25.17550 -80.36782
## 2249                 72 spring       L 25.17550 -80.36782
## 2250                 72 spring       S 25.17550 -80.36782
## 2251                 72 spring       L 25.17550 -80.36782
## 2252                 72 spring       S 25.17550 -80.36782
## 2253                 72 spring       S 25.17550 -80.36782
## 2254                 72 spring       L 25.17550 -80.36782
## 2255                 72 spring       S 25.17550 -80.36782
## 2256                 72 spring       S 25.17550 -80.36782
## 2257                 72 spring       S 25.17550 -80.36782
## 2258                 72 spring       S 25.17550 -80.36782
## 2259                 72 spring       S 25.17550 -80.36782
## 2260                 72 spring       S 25.17550 -80.36782
## 2261                 72 spring       S 25.17550 -80.36782
## 2262                 72 spring       S 25.17550 -80.36782
## 2263                 72 spring       L 25.17550 -80.36782
## 2264                 72 spring       L 25.17550 -80.36782
## 2265                 72 spring       L 25.17550 -80.36782
## 2266                 72 spring       L 25.17550 -80.36782
## 2267                 72 spring       S 25.17550 -80.36782
## 2268                 72 spring       L 25.17550 -80.36782
## 2269                 72 spring       L 25.17550 -80.36782
## 2270                 72 spring       L 25.17550 -80.36782
## 2271                 72 spring       L 25.17550 -80.36782
## 2272                 72 spring       L 25.17550 -80.36782
## 2273                 72 spring       S 25.17550 -80.36782
## 2274                 72 spring       L 25.17550 -80.36782
## 2275                 72 spring       S 25.17550 -80.36782
## 2276                 72 spring       S 25.17550 -80.36782
## 2277                 72 spring       L 25.17550 -80.36782
## 2278                 72 spring       S 25.17550 -80.36782
## 2279                 72 spring       L 25.17550 -80.36782
## 2280                 72 spring       S 25.17550 -80.36782
## 2281                 72 spring       L 25.17550 -80.36782
## 2282                 72 spring       S 25.17550 -80.36782
## 2283                 72 spring       S 25.17550 -80.36782
## 2284                 72 spring       S 25.17550 -80.36782
## 2285                 72 spring       L 25.17550 -80.36782
## 2286                 72 spring       L 25.17550 -80.36782
## 2287                 72 spring       S 25.17550 -80.36782
## 2288                 72 spring       L 25.17550 -80.36782
## 2289                 72 spring       S 25.17550 -80.36782
## 2290                 72 spring       L 25.17550 -80.36782
## 2291                 72 spring       L 25.17550 -80.36782
## 2292                 72 spring       L 25.17550 -80.36782
## 2293                 72 spring       L 25.17550 -80.36782
## 2294                 72 spring       L 25.17550 -80.36782
## 2295                 72 spring       S 25.17550 -80.36782
## 2296                 72 spring       S 25.17550 -80.36782
## 2297                 72 spring       L 25.17550 -80.36782
## 2298                 72 spring       S 25.17550 -80.36782
## 2299                 72 spring       S 25.17550 -80.36782
## 2300                 72 spring       S 25.17550 -80.36782
## 2301                 72 spring       S 25.17550 -80.36782
## 2302                 72 spring       L 25.17550 -80.36782
## 2303                 72 spring       S 25.17550 -80.36782
## 2304                 72 spring       L 25.17550 -80.36782
## 2305                 72 spring       S 25.17550 -80.36782
## 2306                 72 spring       S 25.17550 -80.36782
## 2307                 72 spring       S 25.17550 -80.36782
## 2308                 72 spring       L 25.17550 -80.36782
## 2309                 72 spring       S 25.17550 -80.36782
## 2310                 72 spring       L 25.17550 -80.36782
## 2311                 72 spring       L 25.17550 -80.36782
## 2312                 72 spring       L 25.17550 -80.36782
## 2313                 72 spring       L 25.17550 -80.36782
## 2314                 72 spring       S 25.17550 -80.36782
## 2315                 72 spring       S 25.17550 -80.36782
## 2316                 72 spring       L 25.17550 -80.36782
## 2317                 72 spring       S 25.17550 -80.36782
## 2318                 72 spring       S 25.17550 -80.36782
## 2319                 72 spring       S 25.17550 -80.36782
## 2320                 72 spring       S 25.17550 -80.36782
## 2321                 72 spring       L 25.17550 -80.36782
## 2322                 72 spring       S 25.17550 -80.36782
## 2323                 72 spring       S 25.17550 -80.36782
## 2324                 72 spring       S 25.17550 -80.36782
## 2325                 72 spring       S 25.17550 -80.36782
## 2326                 72 spring       S 25.17550 -80.36782
## 2327                 72 spring       S 25.17550 -80.36782
## 2328                 72 spring       L 25.17550 -80.36782
## 2329                 72 spring       S 25.17550 -80.36782
## 2330                 72 spring       S 25.17550 -80.36782
## 2331                 72 spring       S 25.17550 -80.36782
## 2332                 72 spring       S 25.17550 -80.36782
## 2333                 72 spring       L 25.27352 -80.30428
## 2334                 72 spring       L 25.27352 -80.30428
## 2335                 72 spring       L 25.27352 -80.30428
## 2336                 72 spring       L 25.27352 -80.30428
## 2337                 72 spring       L 25.27352 -80.30428
## 2338                 72 spring       S 25.27352 -80.30428
## 2339                 72 spring       L 25.27352 -80.30428
## 2340                 72 spring       L 25.27352 -80.30428
## 2341                 72 spring       L 25.27352 -80.30428
## 2342                 72 spring       L 25.27352 -80.30428
## 2343                 72 spring       L 25.27352 -80.30428
## 2344                 72 spring       L 25.27352 -80.30428
## 2345                 72 spring       L 25.27352 -80.30428
## 2346                 72 spring       L 25.27352 -80.30428
## 2347                 72 spring       L 25.27352 -80.30428
## 2348                 72 spring       L 25.27352 -80.30428
## 2349                 72 spring       L 25.27352 -80.30428
## 2350                 72 spring       L 25.27352 -80.30428
## 2351                 72 spring       L 25.27352 -80.30428
## 2352                 72 spring       L 25.27352 -80.30428
## 2353                 72 spring       L 25.27352 -80.30428
## 2354                 72 spring       L 25.27352 -80.30428
## 2355                 72 spring       S 25.27352 -80.30428
## 2356                 72 spring       L 25.27352 -80.30428
## 2357                 72 spring       L 25.27352 -80.30428
## 2358                 72 spring       L 25.27352 -80.30428
## 2359                 72 spring       L 25.27352 -80.30428
## 2360                 72 spring       S 25.27352 -80.30428
## 2361                 72 spring       L 25.27352 -80.30428
## 2362                 72 spring       L 25.28637 -80.29077
## 2363                 72 spring       L 25.28637 -80.29077
## 2364                 72 spring       L 25.28637 -80.29077
## 2365                 72 spring       S 25.28637 -80.29077
## 2366                 72 spring       L 25.28637 -80.29077
## 2367                 72 spring       S 25.28637 -80.29077
## 2368                 72 spring       S 25.28637 -80.29077
## 2369                 72 spring       S 24.96448 -80.56739
## 2370                 72 spring       L 24.96448 -80.56739
## 2371                 72 spring       S 24.96448 -80.56739
## 2372                 72 spring       L 24.96448 -80.56739
## 2373                 72 spring       L 24.96448 -80.56739
## 2374                 72 spring       L 24.96448 -80.56739
## 2375                 72 spring       S 24.96448 -80.56739
## 2376                 72 spring       S 24.96448 -80.56739
## 2377                 72 spring       S 24.96448 -80.56739
## 2378                 72 spring       S 24.96448 -80.56739
## 2379                 72 spring       S 24.96448 -80.56739
## 2380                 72 spring       L 24.96448 -80.56739
## 2381                 72 spring       S 24.96448 -80.56739
## 2382                 72 spring       S 24.96448 -80.56739
## 2383                 72 spring       S 24.96448 -80.56739
## 2384                 72 spring       S 24.96448 -80.56739
## 2385                 72 spring       S 24.96448 -80.56739
## 2386                 72 spring       S 24.96448 -80.56739
## 2387                 72 spring       S 24.96448 -80.56739
## 2388                 72 spring       L 24.96448 -80.56739
## 2389                 72 spring       S 24.96448 -80.56739
## 2390                 72 spring       L 24.96448 -80.56739
## 2391                 72 spring       L 24.96448 -80.56739
## 2392                 72 spring       S 24.96448 -80.56739
## 2393                 72 spring       S 24.96448 -80.56739
## 2394                 72 spring       L 24.96448 -80.56739
## 2395                 72 spring       L 24.96448 -80.56739
## 2396                 72 spring       S 24.96448 -80.56739
## 2397                 72 spring       S 24.96448 -80.56739
## 2398                 72 spring       S 24.96448 -80.56739
## 2399                 72 spring       S 24.96448 -80.56739
## 2400                 72 spring       L 24.96448 -80.56739
## 2401                 72 spring       S 24.96448 -80.56739
## 2402                 72 spring       S 24.96448 -80.56739
## 2403                 77   fall       L 29.66182 -82.34721
## 2404                 77   fall       L 29.66182 -82.34721
## 2405                 77   fall       L 29.66182 -82.34721
## 2406                 77   fall       L 29.66182 -82.34721
## 2407                 77   fall       L 29.66182 -82.34721
## 2408                 77   fall       L 29.66182 -82.34721
## 2409                 77   fall       L 29.66182 -82.34721
## 2410                 77   fall       L 29.66182 -82.34721
## 2411                 77   fall       L 29.66182 -82.34721
## 2412                 77   fall       L 29.66182 -82.34721
## 2413                 77   fall       L 29.66182 -82.34721
## 2414                 77   fall       L 29.66182 -82.34721
## 2415                 77   fall       S 29.66182 -82.34721
## 2416                 77   fall       S 29.66182 -82.34721
## 2417                 77   fall       L 29.66182 -82.34721
## 2418                 77   fall       L 29.66182 -82.34721
## 2419                 77   fall       L 25.49197 -80.48562
## 2420                 77   fall       L 25.49197 -80.48562
## 2421                 77   fall       L 25.49197 -80.48562
## 2422                 77   fall       L 25.49197 -80.48562
## 2423                 77   fall       L 25.49197 -80.48562
## 2424                 77   fall       L 25.49197 -80.48562
## 2425                 77   fall       L 25.49197 -80.48562
## 2426                 77   fall       L 25.49197 -80.48562
## 2427                 77   fall       L 25.49197 -80.48562
## 2428                 77   fall       L 25.49197 -80.48562
## 2429                 77   fall       L 25.49197 -80.48562
## 2430                 77   fall       L 25.49197 -80.48562
## 2431                 77   fall       L 25.49197 -80.48562
## 2432                 77   fall       L 25.49197 -80.48562
## 2433                 77   fall       L 25.49197 -80.48562
## 2434                 77   fall       S 25.49197 -80.48562
## 2435                 77   fall       L 25.49197 -80.48562
## 2436                 77   fall       L 25.49197 -80.48562
## 2437                 77   fall       L 25.49197 -80.48562
## 2438                 77   fall       L 25.49197 -80.48562
## 2439                 77   fall       L 25.49197 -80.48562
## 2440                 77   fall       L 25.49197 -80.48562
## 2441                 77   fall       L 25.49197 -80.48562
## 2442                 77   fall       L 25.49197 -80.48562
## 2443                 77   fall       L 25.49197 -80.48562
## 2444                 77   fall       L 25.49197 -80.48562
## 2445                 77   fall       L 25.49197 -80.48562
## 2446                 77   fall       L 25.49197 -80.48562
## 2447                 77   fall       L 25.49197 -80.48562
## 2448                 77   fall       L 25.49197 -80.48562
## 2449                 77   fall       L 25.49197 -80.48562
## 2450                 77   fall       L 25.49197 -80.48562
## 2451                 77   fall       L 25.49197 -80.48562
## 2452                 77   fall       L 25.49197 -80.48562
## 2453                 77   fall       L 25.49197 -80.48562
## 2454                 77   fall       L 25.12858 -80.40809
## 2455                 77   fall       L 25.12858 -80.40809
## 2456                 77   fall       S 25.12858 -80.40809
## 2457                 77   fall       L 25.12858 -80.40809
## 2458                 77   fall       L 25.12858 -80.40809
## 2459                 77   fall       L 25.12858 -80.40809
## 2460                 77   fall       S 25.12858 -80.40809
## 2461                 77   fall       L 25.12858 -80.40809
## 2462                 77   fall       L 25.12858 -80.40809
## 2463                 77   fall       L 25.12858 -80.40809
## 2464                 77   fall       L 25.12858 -80.40809
## 2465                 77   fall       L 25.12858 -80.40809
## 2466                 77   fall       L 25.12858 -80.40809
## 2467                 77   fall       L 25.12858 -80.40809
## 2468                 77   fall       L 25.12858 -80.40809
## 2469                 77   fall       L 25.12858 -80.40809
## 2470                 77   fall       L 27.29866 -81.36612
## 2471                 77   fall       L 27.29866 -81.36612
## 2472                 77   fall       L 27.29866 -81.36612
## 2473                 77   fall       L 27.29866 -81.36612
## 2474                 77   fall       L 27.29866 -81.36612
## 2475                 77   fall       L 27.29866 -81.36612
## 2476                 77   fall       L 27.29866 -81.36612
## 2477                 77   fall       L 27.29866 -81.36612
## 2478                 77   fall       L 27.29866 -81.36612
## 2479                 77   fall       L 27.29866 -81.36612
## 2480                 77   fall       L 27.29866 -81.36612
## 2481                 77   fall       L 27.29866 -81.36612
## 2482                 77   fall       L 27.29866 -81.36612
## 2483                 77   fall       L 27.29866 -81.36612
## 2484                 77   fall       L 27.29866 -81.36612
## 2485                 77   fall       L 27.29866 -81.36612
## 2486                 77   fall       L 27.29866 -81.36612
## 2487                 77   fall       L 27.29866 -81.36612
## 2488                 77   fall       L 27.29866 -81.36612
## 2489                 77   fall       L 27.29866 -81.36612
## 2490                 77   fall       L 27.29866 -81.36612
## 2491                 77   fall       L 27.29866 -81.36612
## 2492                 77   fall       L 27.29866 -81.36612
## 2493                 77   fall       L 27.29866 -81.36612
## 2494                 77   fall       L 27.29866 -81.36612
## 2495                 77   fall       L 27.29866 -81.36612
## 2496                 77   fall       L 27.29866 -81.36612
## 2497                 77   fall       L 27.29866 -81.36612
## 2498                 77   fall       L 27.29866 -81.36612
## 2499                 77   fall       L 27.29866 -81.36612
## 2500                 77   fall       L 27.29866 -81.36612
## 2501                 77   fall       L 27.29866 -81.36612
## 2502                 77   fall       L 27.29866 -81.36612
## 2503                 77   fall       L 27.29866 -81.36612
## 2504                 77   fall       L 27.29866 -81.36612
## 2505                 77   fall       L 27.29866 -81.36612
## 2506                 77   fall       L 27.29866 -81.36612
## 2507                 77   fall       L 27.29866 -81.36612
## 2508                 77   fall       L 27.29866 -81.36612
## 2509                 77   fall       L 27.29866 -81.36612
## 2510                 77   fall       L 27.29866 -81.36612
## 2511                 77   fall       L 27.29866 -81.36612
## 2512                 77   fall       L 27.29866 -81.36612
## 2513                 77   fall       L 27.90335 -81.58946
## 2514                 77   fall       L 27.90335 -81.58946
## 2515                 77   fall       L 27.90335 -81.58946
## 2516                 77   fall       L 27.90335 -81.58946
## 2517                 77   fall       L 27.90335 -81.58946
## 2518                 77   fall       L 27.90335 -81.58946
## 2519                 77   fall       L 27.90335 -81.58946
## 2520                 77   fall       L 27.90335 -81.58946
## 2521                 77   fall       L 27.90335 -81.58946
## 2522                 77   fall       L 27.90335 -81.58946
## 2523                 77   fall       L 27.90335 -81.58946
## 2524                 77   fall       L 27.90335 -81.58946
## 2525                 77   fall       L 27.90335 -81.58946
## 2526                 77   fall       L 27.90335 -81.58946
## 2527                 77   fall       L 27.90335 -81.58946
## 2528                 77   fall       L 27.90335 -81.58946
## 2529                 77   fall       L 27.90335 -81.58946
## 2530                 77   fall       L 27.90335 -81.58946
## 2531                 77   fall       L 27.90335 -81.58946
## 2532                 77   fall       S 27.90335 -81.58946
## 2533                 77   fall       L 27.90335 -81.58946
## 2534                 77   fall       L 27.90335 -81.58946
## 2535                 77   fall       L 27.90335 -81.58946
## 2536                 77   fall       L 28.81298 -81.87789
## 2537                 77   fall       L 28.81298 -81.87789
## 2538                 77   fall       L 28.81298 -81.87789
## 2539                 77   fall       L 28.81298 -81.87789
## 2540                 77   fall       L 28.81298 -81.87789
## 2541                 77   fall       S 28.81298 -81.87789
## 2542                 77   fall       L 28.81298 -81.87789
## 2543                 77   fall       L 28.81298 -81.87789
## 2544                 77   fall       L 28.81298 -81.87789
## 2545                 77   fall       L 28.81298 -81.87789
## 2546                 77   fall       L 28.81298 -81.87789
## 2547                 77   fall       L 28.81298 -81.87789
## 2548                 77   fall       L 28.81527 -81.88217
## 2549                 77   fall       L 28.81527 -81.88217
## 2550                 77   fall       L 28.81527 -81.88217
## 2551                 77   fall       L 28.81527 -81.88217
## 2552                 77   fall       L 28.81527 -81.88217
## 2553                 77   fall       L 28.81527 -81.88217
## 2554                 77   fall       L 28.81527 -81.88217
## 2555                 77   fall       L 28.81527 -81.88217
## 2556                 77   fall       L 28.81527 -81.88217
## 2557                 77   fall       L 28.81527 -81.88217
## 2558                 77   fall       L 28.81527 -81.88217
## 2559                 77   fall       L 28.81527 -81.88217
## 2560                 77   fall       L 28.81527 -81.88217
## 2561                 77   fall       L 28.81527 -81.88217
## 2562                 77   fall       L 25.17550 -80.36782
## 2563                 77   fall       L 25.17550 -80.36782
## 2564                 77   fall       L 25.17550 -80.36782
## 2565                 77   fall       L 25.17550 -80.36782
## 2566                 77   fall       L 25.17550 -80.36782
## 2567                 77   fall       L 25.17550 -80.36782
## 2568                 77   fall       S 25.17550 -80.36782
## 2569                 77   fall       L 25.17550 -80.36782
## 2570                 77   fall       L 25.17369 -80.37153
## 2571                 77   fall       L 25.17369 -80.37153
## 2572                 77   fall       L 25.17369 -80.37153
## 2573                 77   fall       L 25.17369 -80.37153
## 2574                 77   fall       L 25.17369 -80.37153
## 2575                 77   fall       S 25.18229 -80.36370
## 2576                 77   fall       L 25.18229 -80.36370
## 2577                 77   fall       L 25.18229 -80.36370
## 2578                 77   fall       S 25.18229 -80.36370
## 2579                 77   fall       S 25.18229 -80.36370
## 2580                 77   fall       L 25.18229 -80.36370
## 2581                 77   fall       L 25.18229 -80.36370
## 2582                 77   fall       S 25.18229 -80.36370
## 2583                 77   fall       L 25.18229 -80.36370
## 2584                 77   fall       L 25.18229 -80.36370
## 2585                 77   fall       S 25.18229 -80.36370
## 2586                 77   fall       L 25.18229 -80.36370
## 2587                 77   fall       L 25.18229 -80.36370
## 2588                 77   fall       L 25.18229 -80.36370
## 2589                 77   fall       L 25.18229 -80.36370
## 2590                 77   fall       L 25.18229 -80.36370
## 2591                 77   fall       S 25.18229 -80.36370
## 2592                 77   fall       L 25.18229 -80.36370
## 2593                 77   fall       L 25.25648 -80.31069
## 2594                 77   fall       L 25.25648 -80.31069
## 2595                 77   fall       L 25.25648 -80.31069
## 2596                 77   fall       L 25.25648 -80.31069
## 2597                 77   fall       L 25.25648 -80.31069
## 2598                 77   fall       L 25.25648 -80.31069
## 2599                 77   fall       L 25.25648 -80.31069
## 2600                 77   fall       L 25.25648 -80.31069
## 2601                 77   fall       L 25.27352 -80.30428
## 2602                 77   fall       S 25.27352 -80.30428
## 2603                 77   fall       L 25.27352 -80.30428
## 2604                 77   fall       L 25.25284 -80.31183
## 2605                 77   fall       S 25.25284 -80.31183
## 2606                 77   fall       L 25.25284 -80.31183
## 2607                 77   fall       L 25.28637 -80.29077
## 2608                 77   fall       L 25.28637 -80.29077
## 2609                 77   fall       L 25.28637 -80.29077
## 2610                 77   fall       L 25.28637 -80.29077
## 2611                 77   fall       L 25.28637 -80.29077
## 2612                 77   fall       L 25.28637 -80.29077
## 2613                 77   fall       L 25.28637 -80.29077
## 2614                 77   fall       L 25.28637 -80.29077
## 2615                 77   fall       L 25.28637 -80.29077
## 2616                 77   fall       L 25.28637 -80.29077
## 2617                 77   fall       L 25.28637 -80.29077
## 2618                 77   fall       L 25.28637 -80.29077
## 2619                 77   fall       L 25.28637 -80.29077
## 2620                 77   fall       L 25.28637 -80.29077
## 2621                 77   fall       L 25.28637 -80.29077
## 2622                 77   fall       L 25.28637 -80.29077
## 2623                 77   fall       L 25.28637 -80.29077
## 2624                 77   fall       L 25.28637 -80.29077
## 2625                 77   fall       L 25.28637 -80.29077
## 2626                 77   fall       L 25.28637 -80.29077
## 2627                 77   fall       L 25.28637 -80.29077
## 2628                 77   fall       L 25.28637 -80.29077
## 2629                 77   fall       L 25.28637 -80.29077
## 2630                 77   fall       L 25.28637 -80.29077
## 2631                 77   fall       L 25.28637 -80.29077
## 2632                 77   fall       L 25.28637 -80.29077
## 2633                 77   fall       L 27.29866 -81.36612
## 2634                 77   fall       S 25.19515 -80.34592
## 2635                 77   fall       S 25.19515 -80.34592
## 2636                 77   fall       L 25.19515 -80.34592
## 2637                 77   fall       S 25.19515 -80.34592
## 2638                 77   fall       L 25.19515 -80.34592
## 2639                 77   fall       L 25.19515 -80.34592
## 2640                 77   fall       S 25.19515 -80.34592
## 2641                 77   fall       S 25.19515 -80.34592
## 2642                 77   fall       S 25.19515 -80.34592
## 2643                 77   fall       S 24.98519 -80.54710
## 2644                 77   fall       S 24.98519 -80.54710
## 2645                 77   fall       L 24.98519 -80.54710
## 2646                 77   fall       L 24.98519 -80.54710
## 2647                 77   fall       L 24.98519 -80.54710
## 2648                 77   fall       L 24.98519 -80.54710
## 2649                 77   fall       S 24.98519 -80.54710
## 2650                 77   fall       S 24.98519 -80.54710
## 2651                 77   fall       S 24.98519 -80.54710
## 2652                 77   fall       L 24.98519 -80.54710
## 2653                 77   fall       L 24.98519 -80.54710
## 2654                 77   fall       L 24.98519 -80.54710
## 2655                 77   fall       S 24.98519 -80.54710
## 2656                 77   fall       L 24.98519 -80.54710
## 2657                 77   fall       L 24.98519 -80.54710
## 2658                 81 winter       L 29.66200 -82.34731
## 2659                 81 winter       L 29.66200 -82.34731
## 2660                 81 winter       L 29.66200 -82.34731
## 2661                 81 winter       L 29.66200 -82.34731
## 2662                 81 winter       L 29.66200 -82.34731
## 2663                 81 winter       L 29.66200 -82.34731
## 2664                 81 winter       L 29.66200 -82.34731
## 2665                 81 winter       L 29.66200 -82.34731
## 2666                 81 winter       L 29.66200 -82.34731
## 2667                 81 winter       L 29.66200 -82.34731
## 2668                 81 winter       L 29.66200 -82.34731
## 2669                 81 winter       L 29.66200 -82.34731
## 2670                 81 winter       L 29.66200 -82.34731
## 2671                 81 winter       L 29.66200 -82.34731
## 2672                 81 winter       L 29.66200 -82.34731
## 2673                 81 winter       L 29.66200 -82.34731
## 2674                 81 winter       L 29.66200 -82.34731
## 2675                 81 winter       L 29.66202 -82.34731
## 2676                 81 winter       L 29.66202 -82.34731
## 2677                 81 winter       L 29.66202 -82.34731
## 2678                 81 winter       L 29.66202 -82.34731
## 2679                 81 winter       L 29.66202 -82.34731
## 2680                 81 winter       L 29.66202 -82.34731
## 2681                 81 winter       L 29.66202 -82.34731
## 2682                 81 winter       L 29.66202 -82.34731
## 2683                 81 winter       L 29.66202 -82.34731
## 2684                 81 winter       L 29.66202 -82.34731
## 2685                 81 winter       L 29.66202 -82.34731
## 2686                 81 winter       L 29.66202 -82.34731
## 2687                 81 winter       L 29.66202 -82.34731
## 2688                 81 winter       L 29.66202 -82.34731
## 2689                 81 winter       L 29.66202 -82.34731
## 2690                 81 winter       L 29.66202 -82.34731
## 2691                 81 winter       L 29.66202 -82.34731
## 2692                 81 winter       L 29.66202 -82.34731
## 2693                 81 winter       L 29.66202 -82.34731
## 2694                 81 winter       L 25.49136 -80.48582
## 2695                 81 winter       L 25.49136 -80.48582
## 2696                 81 winter       L 25.49136 -80.48582
## 2697                 81 winter       L 25.49136 -80.48582
## 2698                 81 winter       L 25.49136 -80.48582
## 2699                 81 winter       L 25.49136 -80.48582
## 2700                 81 winter       L 25.49136 -80.48582
## 2701                 81 winter       L 25.49136 -80.48582
## 2702                 81 winter       L 25.49136 -80.48582
## 2703                 81 winter       L 25.49136 -80.48582
## 2704                 81 winter       L 25.49136 -80.48582
## 2705                 81 winter       L 25.49136 -80.48582
## 2706                 81 winter       L 25.49136 -80.48582
## 2707                 81 winter       L 25.49136 -80.48582
## 2708                 81 winter       L 25.49136 -80.48582
## 2709                 81 winter       L 25.49136 -80.48582
## 2710                 81 winter       L 25.49136 -80.48582
## 2711                 81 winter       L 25.49136 -80.48582
## 2712                 81 winter       L 25.49136 -80.48582
## 2713                 81 winter       L 25.49136 -80.48582
## 2714                 81 winter       L 25.49136 -80.48582
## 2715                 81 winter       L 25.49136 -80.48582
## 2716                 81 winter       L 25.49136 -80.48582
## 2717                 81 winter       L 25.49136 -80.48582
## 2718                 81 winter       L 25.49136 -80.48582
## 2719                 81 winter       L 25.49136 -80.48582
## 2720                 81 winter       L 25.49136 -80.48582
## 2721                 81 winter       L 25.49136 -80.48582
## 2722                 81 winter       S 25.49136 -80.48582
## 2723                 81 winter       S 25.49136 -80.48582
## 2724                 81 winter       S 25.49136 -80.48582
## 2725                 81 winter       L 25.49136 -80.48582
## 2726                 81 winter       L 25.49136 -80.48582
## 2727                 81 winter       S 25.49136 -80.48582
## 2728                 81 winter       S 25.49136 -80.48582
## 2729                 81 winter       S 25.49136 -80.48582
## 2730                 81 winter       S 25.49136 -80.48582
## 2731                 81 winter       L 25.49136 -80.48582
## 2732                 81 winter       L 25.49136 -80.48582
## 2733                 81 winter       L 25.49136 -80.48582
## 2734                 81 winter       L 25.49136 -80.48582
## 2735                 81 winter       L 25.49136 -80.48582
## 2736                 81 winter       L 25.10002 -80.43752
## 2737                 81 winter       L 25.10002 -80.43752
## 2738                 81 winter       L 25.10002 -80.43752
## 2739                 81 winter       L 25.10002 -80.43752
## 2740                 81 winter       L 25.12846 -80.40809
## 2741                 81 winter       L 25.12846 -80.40809
## 2742                 81 winter       L 25.12846 -80.40809
## 2743                 81 winter       L 25.12846 -80.40809
## 2744                 81 winter       L 25.12846 -80.40809
## 2745                 81 winter       L 25.12846 -80.40809
## 2746                 81 winter       L 25.10002 -80.43752
## 2747                 81 winter       L 25.10002 -80.43752
## 2748                 81 winter       L 25.10002 -80.43752
## 2749                 81 winter       L 25.10002 -80.43752
## 2750                 81 winter       L 25.12846 -80.40809
## 2751                 81 winter       L 25.12846 -80.40809
## 2752                 81 winter       L 25.12846 -80.40809
## 2753                 81 winter       L 25.12846 -80.40809
## 2754                 81 winter       L 25.10002 -80.43752
## 2755                 81 winter       L 25.10002 -80.43752
## 2756                 81 winter       L 25.10002 -80.43752
## 2757                 81 winter       L 25.10002 -80.43752
## 2758                 81 winter       L 25.10002 -80.43752
## 2759                 81 winter       L 25.12846 -80.40809
## 2760                 81 winter       L 25.12846 -80.40809
## 2761                 81 winter       L 25.12846 -80.40809
## 2762                 81 winter       L 25.12846 -80.40809
## 2763                 81 winter       L 25.10002 -80.43752
## 2764                 81 winter       L 25.10002 -80.43752
## 2765                 81 winter       L 25.10002 -80.43752
## 2766                 81 winter       L 25.10002 -80.43752
## 2767                 81 winter       L 25.10002 -80.43752
## 2768                 81 winter       L 25.12846 -80.40809
## 2769                 81 winter       L 25.12846 -80.40809
## 2770                 81 winter       L 25.12846 -80.40809
## 2771                 81 winter       L 25.12846 -80.40809
## 2772                 81 winter       L 25.10002 -80.43752
## 2773                 81 winter       L 25.10002 -80.43752
## 2774                 81 winter       L 25.10002 -80.43752
## 2775                 81 winter       L 25.10002 -80.43752
## 2776                 81 winter       L 25.10002 -80.43752
## 2777                 81 winter       L 25.12846 -80.40809
## 2778                 81 winter       L 25.12846 -80.40809
## 2779                 81 winter       L 25.12846 -80.40809
## 2780                 81 winter       S 25.12858 -80.40809
## 2781                 81 winter       S 25.12858 -80.40809
## 2782                 81 winter       S 25.12858 -80.40809
## 2783                 81 winter       S 25.12858 -80.40809
## 2784                 81 winter       S 25.12858 -80.40809
## 2785                 81 winter       S 25.12858 -80.40809
## 2786                 81 winter       S 25.12858 -80.40809
## 2787                 81 winter       S 25.12858 -80.40809
## 2788                 81 winter       S 25.12858 -80.40809
## 2789                 81 winter       S 25.12858 -80.40809
## 2790                 81 winter       S 25.12858 -80.40809
## 2791                 81 winter       S 25.12858 -80.40809
## 2792                 81 winter       S 25.12858 -80.40809
## 2793                 81 winter       S 25.12858 -80.40809
## 2794                 81 winter       S 25.12858 -80.40809
## 2795                 81 winter       S 25.12858 -80.40809
## 2796                 81 winter       S 25.12858 -80.40809
## 2797                 81 winter       S 25.12858 -80.40809
## 2798                 81 winter       S 25.12858 -80.40809
## 2799                 81 winter       S 25.12858 -80.40809
## 2800                 81 winter       S 25.12858 -80.40809
## 2801                 81 winter       S 25.12858 -80.40809
## 2802                 81 winter       S 25.12858 -80.40809
## 2803                 81 winter       L 25.12858 -80.40809
## 2804                 81 winter       S 25.12858 -80.40809
## 2805                 81 winter       S 25.12858 -80.40809
## 2806                 81 winter       S 25.12858 -80.40809
## 2807                 81 winter       S 25.12858 -80.40809
## 2808                 81 winter       L 25.12858 -80.40809
## 2809                 81 winter       S 25.12858 -80.40809
## 2810                 81 winter       L 25.12858 -80.40809
## 2811                 81 winter       L 25.12858 -80.40809
## 2812                 81 winter       L 27.29866 -81.36612
## 2813                 81 winter       L 27.29866 -81.36612
## 2814                 81 winter       L 27.29866 -81.36612
## 2815                 81 winter       L 27.29866 -81.36612
## 2816                 81 winter       L 27.29866 -81.36612
## 2817                 81 winter       L 27.29866 -81.36612
## 2818                 81 winter       L 27.29866 -81.36612
## 2819                 81 winter       L 27.29866 -81.36612
## 2820                 81 winter       L 27.29866 -81.36612
## 2821                 81 winter       L 27.29866 -81.36612
## 2822                 81 winter       L 27.29866 -81.36612
## 2823                 81 winter       L 27.29866 -81.36612
## 2824                 81 winter       L 27.29866 -81.36612
## 2825                 81 winter       L 27.29866 -81.36612
## 2826                 81 winter       L 27.29866 -81.36612
## 2827                 81 winter       L 27.29866 -81.36612
## 2828                 81 winter       L 27.29866 -81.36612
## 2829                 81 winter       L 27.29866 -81.36612
## 2830                 81 winter       L 27.29866 -81.36612
## 2831                 81 winter       L 27.29866 -81.36612
## 2832                 81 winter       L 27.29866 -81.36612
## 2833                 81 winter       L 27.29866 -81.36612
## 2834                 81 winter       L 27.29866 -81.36612
## 2835                 81 winter       L 27.29866 -81.36612
## 2836                 81 winter       L 27.29866 -81.36612
## 2837                 81 winter       L 27.29866 -81.36612
## 2838                 81 winter       L 27.29866 -81.36612
## 2839                 81 winter       L 27.29866 -81.36612
## 2840                 81 winter       L 27.29866 -81.36612
## 2841                 81 winter       L 27.29866 -81.36612
## 2842                 81 winter       L 27.29866 -81.36612
## 2843                 81 winter       L 27.29866 -81.36612
## 2844                 81 winter       L 27.29866 -81.36612
## 2845                 81 winter       L 27.29866 -81.36612
## 2846                 81 winter       L 27.29866 -81.36612
## 2847                 81 winter       L 27.29866 -81.36612
## 2848                 81 winter       L 27.29866 -81.36612
## 2849                 81 winter       L 27.29866 -81.36612
## 2850                 81 winter       L 27.29866 -81.36612
## 2851                 81 winter       L 27.29866 -81.36612
## 2852                 81 winter       L 27.29866 -81.36612
## 2853                 81 winter       L 27.29866 -81.36612
## 2854                 81 winter       L 27.29866 -81.36612
## 2855                 81 winter       L 27.89674 -81.58047
## 2856                 81 winter       L 27.89674 -81.58047
## 2857                 81 winter       L 27.89674 -81.58047
## 2858                 81 winter       L 27.89674 -81.58047
## 2859                 81 winter       L 27.89674 -81.58047
## 2860                 81 winter       L 27.89674 -81.58047
## 2861                 81 winter       L 27.89674 -81.58047
## 2862                 81 winter       L 27.89674 -81.58047
## 2863                 81 winter       L 27.89674 -81.58047
## 2864                 81 winter       L 27.89674 -81.58047
## 2865                 81 winter       L 27.89674 -81.58047
## 2866                 81 winter       L 27.89674 -81.58047
## 2867                 81 winter       L 27.89674 -81.58047
## 2868                 81 winter       L 27.89674 -81.58047
## 2869                 81 winter       L 27.89674 -81.58047
## 2870                 81 winter       L 27.89674 -81.58047
## 2871                 81 winter       L 27.89674 -81.58047
## 2872                 81 winter       L 27.89674 -81.58047
## 2873                 81 winter       L 27.89674 -81.58047
## 2874                 81 winter       L 27.89674 -81.58047
## 2875                 81 winter       L 27.89674 -81.58047
## 2876                 81 winter       L 27.89674 -81.58047
## 2877                 81 winter       L 27.89674 -81.58047
## 2878                 81 winter       L 27.89674 -81.58047
## 2879                 81 winter       L 27.89674 -81.58047
## 2880                 81 winter       L 27.89674 -81.58047
## 2881                 81 winter       L 27.89674 -81.58047
## 2882                 81 winter       L 27.89674 -81.58047
## 2883                 81 winter       L 27.89674 -81.58047
## 2884                 81 winter       L 27.89674 -81.58047
## 2885                 81 winter       L 27.89674 -81.58047
## 2886                 81 winter       L 27.89674 -81.58047
## 2887                 81 winter       L 27.89674 -81.58047
## 2888                 81 winter       S 27.89674 -81.58047
## 2889                 81 winter       L 27.89674 -81.58047
## 2890                 81 winter       L 27.89674 -81.58047
## 2891                 81 winter       L 27.89674 -81.58047
## 2892                 81 winter       L 27.89674 -81.58047
## 2893                 81 winter       L 27.89674 -81.58047
## 2894                 81 winter       L 27.89674 -81.58047
## 2895                 81 winter       L 27.89674 -81.58047
## 2896                 81 winter       L 27.89674 -81.58047
## 2897                 81 winter       L 27.89674 -81.58047
## 2898                 81 winter       L 27.89674 -81.58047
## 2899                 81 winter       L 27.89674 -81.58047
## 2900                 81 winter       L 27.89674 -81.58047
## 2901                 81 winter       L 27.89674 -81.58047
## 2902                 81 winter       L 27.89674 -81.58047
## 2903                 81 winter       L 27.89674 -81.58047
## 2904                 81 winter       L 27.89674 -81.58047
## 2905                 81 winter       L 28.79634 -81.87788
## 2906                 81 winter       L 28.79634 -81.87788
## 2907                 81 winter       L 28.79634 -81.87788
## 2908                 81 winter       L 28.79634 -81.87788
## 2909                 81 winter       L 28.79634 -81.87788
## 2910                 81 winter       L 28.79634 -81.87788
## 2911                 81 winter       L 28.79634 -81.87788
## 2912                 81 winter       L 28.79634 -81.87788
## 2913                 81 winter       L 28.79634 -81.87788
## 2914                 81 winter       L 28.79634 -81.87788
## 2915                 81 winter       L 28.79634 -81.87788
## 2916                 81 winter       L 28.79634 -81.87788
## 2917                 81 winter       L 28.79634 -81.87788
## 2918                 81 winter       L 28.79634 -81.87788
## 2919                 81 winter       S 28.79634 -81.87788
## 2920                 81 winter       L 28.79634 -81.87788
## 2921                 81 winter       L 28.79634 -81.87788
## 2922                 81 winter       L 28.79634 -81.87788
## 2923                 81 winter       L 28.79634 -81.87788
## 2924                 81 winter       L 28.79634 -81.87788
## 2925                 81 winter       L 28.79634 -81.87788
## 2926                 81 winter       L 28.79634 -81.87788
## 2927                 81 winter       L 28.79634 -81.87788
## 2928                 81 winter       L 28.79634 -81.87788
## 2929                 81 winter       L 28.79634 -81.87788
## 2930                 81 winter       L 28.79634 -81.87788
## 2931                 81 winter       S 28.79634 -81.87788
## 2932                 81 winter       L 28.79634 -81.87788
## 2933                 81 winter       L 28.79634 -81.87788
## 2934                 81 winter       L 25.27349 -80.30410
## 2935                 81 winter       L 25.27349 -80.30410
## 2936                 81 winter       L 25.27349 -80.30410
## 2937                 81 winter       L 25.27349 -80.30410
## 2938                 81 winter       L 25.27349 -80.30410
## 2939                 81 winter       L 25.19515 -80.34592
## 2940                 81 winter       L 25.19515 -80.34592
## 2941                 81 winter       L 25.19515 -80.34592
## 2942                 81 winter       L 25.19515 -80.34592
## 2943                 81 winter       L 25.19515 -80.34592
## 2944                 81 winter       L 25.25656 -80.31080
## 2945                 81 winter       L 25.25656 -80.31080
## 2946                 81 winter       L 25.25656 -80.31080
## 2947                 81 winter       L 25.25656 -80.31080
## 2948                 81 winter       L 25.25656 -80.31080
## 2949                 81 winter       L 25.17557 -80.36780
## 2950                 81 winter       L 25.17557 -80.36780
## 2951                 81 winter       L 25.17557 -80.36780
## 2952                 81 winter       L 25.28661 -80.29081
## 2953                 81 winter       L 25.28661 -80.29081
## 2954                 81 winter       L 25.28661 -80.29081
## 2955                 81 winter       L 25.22752 -80.32838
## 2956                 81 winter       L 25.22752 -80.32838
## 2957                 81 winter       L 25.22752 -80.32838
## 2958                 81 winter       L 25.22752 -80.32838
## 2959                 81 winter       L 25.22752 -80.32838
## 2960                 81 winter       L 25.18209 -80.36319
## 2961                 81 winter       L 25.18209 -80.36319
## 2962                 81 winter       L 25.18209 -80.36319
## 2963                 81 winter       L 25.18209 -80.36319
## 2964                 81 winter       L 25.25656 -80.31080
## 2965                 81 winter       L 25.25656 -80.31080
## 2966                 81 winter       L 25.25656 -80.31080
## 2967                 81 winter       L 25.27349 -80.30410
## 2968                 81 winter       L 25.27349 -80.30410
## 2969                 81 winter       L 25.27349 -80.30410
## 2970                 81 winter       L 25.27349 -80.30410
## 2971                 81 winter       L 25.17557 -80.36780
## 2972                 81 winter       L 25.17557 -80.36780
## 2973                 81 winter       L 25.17557 -80.36780
## 2974                 81 winter       L 25.17557 -80.36780
## 2975                 81 winter       L 25.17557 -80.36780
## 2976                 81 winter       L 25.22752 -80.32838
## 2977                 81 winter       L 25.22752 -80.32838
## 2978                 81 winter       L 25.22752 -80.32838
## 2979                 81 winter       L 25.22752 -80.32838
## 2980                 81 winter       L 25.22752 -80.32838
## 2981                 81 winter       L 25.28661 -80.29081
## 2982                 81 winter       L 25.28661 -80.29081
## 2983                 81 winter       L 25.28661 -80.29081
## 2984                 81 winter       L 25.27349 -80.30410
## 2985                 81 winter       L 25.27349 -80.30410
## 2986                 81 winter       L 25.27349 -80.30410
## 2987                 81 winter       L 25.27349 -80.30410
## 2988                 81 winter       L 25.19515 -80.34592
## 2989                 81 winter       L 25.19515 -80.34592
## 2990                 81 winter       L 25.19515 -80.34592
## 2991                 81 winter       L 25.19515 -80.34592
## 2992                 81 winter       L 25.25656 -80.31080
## 2993                 81 winter       L 25.25656 -80.31080
## 2994                 81 winter       L 25.25656 -80.31080
## 2995                 81 winter       L 25.25656 -80.31080
## 2996                 81 winter       L 25.25656 -80.31080
## 2997                 81 winter       L 25.17557 -80.36780
## 2998                 81 winter       L 25.17557 -80.36780
## 2999                 81 winter       L 25.17557 -80.36780
## 3000                 81 winter       L 25.17557 -80.36780
## 3001                 81 winter       L 25.17557 -80.36780
## 3002                 81 winter       L 25.22752 -80.32838
## 3003                 81 winter       L 25.22752 -80.32838
## 3004                 81 winter       L 25.22752 -80.32838
## 3005                 81 winter       L 25.18209 -80.36319
## 3006                 81 winter       L 25.18209 -80.36319
## 3007                 81 winter       L 25.18209 -80.36319
## 3008                 81 winter       L 25.18209 -80.36319
## 3009                 81 winter       L 25.18209 -80.36319
## 3010                 81 winter       L 25.27349 -80.30410
## 3011                 81 winter       L 25.27349 -80.30410
## 3012                 81 winter       L 25.27349 -80.30410
## 3013                 81 winter       L 25.27349 -80.30410
## 3014                 81 winter       L 25.27349 -80.30410
## 3015                 81 winter       L 25.27349 -80.30410
## 3016                 81 winter       L 25.27349 -80.30410
## 3017                 81 winter       L 25.27349 -80.30410
## 3018                 81 winter       L 25.27349 -80.30410
## 3019                 81 winter       L 25.27349 -80.30410
## 3020                 81 winter       L 25.19515 -80.34592
## 3021                 81 winter       L 25.19515 -80.34592
## 3022                 81 winter       L 25.19515 -80.34592
## 3023                 81 winter       L 25.19515 -80.34592
## 3024                 81 winter       L 25.19515 -80.34592
## 3025                 81 winter       L 25.25656 -80.31080
## 3026                 81 winter       L 25.25656 -80.31080
## 3027                 81 winter       L 25.17557 -80.36780
## 3028                 81 winter       L 25.17557 -80.36780
## 3029                 81 winter       S 25.17557 -80.36780
## 3030                 81 winter       L 25.22752 -80.32838
## 3031                 81 winter       L 25.22752 -80.32838
## 3032                 81 winter       L 25.22752 -80.32838
## 3033                 81 winter       L 25.18209 -80.36319
## 3034                 81 winter       L 25.18209 -80.36319
## 3035                 81 winter       L 25.18209 -80.36319
## 3036                 81 winter       L 25.18209 -80.36319
## 3037                 81 winter       L 25.18209 -80.36319
## 3038                 81 winter       L 25.18209 -80.36319
## 3039                 81 winter       L 25.18209 -80.36319
## 3040                 81 winter       L 25.18209 -80.36319
## 3041                 81 winter       L 25.18209 -80.36319
## 3042                 81 winter       L 25.18209 -80.36319
## 3043                 81 winter       L 25.18209 -80.36319
## 3044                 81 winter       L 25.18209 -80.36319
## 3045                 81 winter       L 25.18209 -80.36319
## 3046                 81 winter       L 25.18209 -80.36319
## 3047                 81 winter       L 25.18209 -80.36319
## 3048                 81 winter       L 25.18209 -80.36319
## 3049                 81 winter       L 25.18209 -80.36319
## 3050                 81 winter       L 25.18209 -80.36319
## 3051                 81 winter       L 25.18209 -80.36319
## 3052                 81 winter       L 25.18209 -80.36319
## 3053                 81 winter       L 25.18209 -80.36319
## 3054                 81 winter       L 25.19515 -80.34592
## 3055                 81 winter       L 25.19515 -80.34592
## 3056                 81 winter       L 25.19515 -80.34592
## 3057                 81 winter       L 25.19515 -80.34592
## 3058                 81 winter       L 25.19515 -80.34592
## 3059                 81 winter       L 25.19515 -80.34592
## 3060                 81 winter       L 25.27349 -80.30410
## 3061                 81 winter       L 25.27349 -80.30410
## 3062                 81 winter       L 25.27349 -80.30410
## 3063                 81 winter       L 25.27349 -80.30410
## 3064                 81 winter       L 25.27349 -80.30410
## 3065                 81 winter       L 25.27349 -80.30410
## 3066                 81 winter       L 25.27349 -80.30410
## 3067                 81 winter       L 25.27349 -80.30410
## 3068                 81 winter       L 25.25656 -80.31080
## 3069                 81 winter       L 25.25656 -80.31080
## 3070                 81 winter       L 25.25656 -80.31080
## 3071                 81 winter       L 25.25656 -80.31080
## 3072                 81 winter       L 25.27349 -80.30410
## 3073                 81 winter       L 25.27349 -80.30410
## 3074                 81 winter       L 25.27349 -80.30410
## 3075                 81 winter       L 25.27349 -80.30410
## 3076                 81 winter       S 25.27349 -80.30410
## 3077                 81 winter       L 25.27349 -80.30410
## 3078                 81 winter       S 25.18209 -80.36319
## 3079                 81 winter       L 25.18209 -80.36319
## 3080                 81 winter       S 25.18209 -80.36319
## 3081                 81 winter       S 25.18209 -80.36319
## 3082                 81 winter       S 25.18209 -80.36319
## 3083                 81 winter       S 25.18209 -80.36319
## 3084                 81 winter       L 25.18209 -80.36319
## 3085                 81 winter       S 25.18209 -80.36319
## 3086                 81 winter       S 25.18209 -80.36319
## 3087                 81 winter       S 25.18209 -80.36319
## 3088                 81 winter       S 25.18209 -80.36319
## 3089                 81 winter       S 25.18209 -80.36319
## 3090                 81 winter       S 25.18209 -80.36319
## 3091                 81 winter       L 25.18209 -80.36319
## 3092                 81 winter       L 25.22752 -80.32838
## 3093                 81 winter       L 25.22752 -80.32838
## 3094                 81 winter       L 25.22752 -80.32838
## 3095                 81 winter       L 25.22752 -80.32838
## 3096                 81 winter       S 25.28661 -80.29081
## 3097                 81 winter       S 25.28661 -80.29081
## 3098                 81 winter       S 25.28661 -80.29081
## 3099                 81 winter       S 25.28661 -80.29081
## 3100                 81 winter       L 25.28661 -80.29081
## 3101                 81 winter       L 25.28661 -80.29081
## 3102                 81 winter       L 25.28661 -80.29081
## 3103                 81 winter       L 25.28661 -80.29081
## 3104                 81 winter       S 25.19515 -80.34592
## 3105                 81 winter       S 25.19515 -80.34592
## 3106                 81 winter       S 25.19515 -80.34592
## 3107                 81 winter       S 25.19515 -80.34592
## 3108                 81 winter       S 25.19515 -80.34592
## 3109                 81 winter       S 25.19515 -80.34592
## 3110                 81 winter       S 25.19515 -80.34592
## 3111                 81 winter       S 25.19515 -80.34592
## 3112                 81 winter       S 25.19515 -80.34592
## 3113                 81 winter       S 25.19515 -80.34592
## 3114                 81 winter       S 25.19515 -80.34592
## 3115                 81 winter       S 25.19515 -80.34592
## 3116                 81 winter       S 25.19515 -80.34592
## 3117                 81 winter       S 25.19515 -80.34592
## 3118                 81 winter       S 25.17557 -80.36781
## 3119                 81 winter       S 25.17557 -80.36781
## 3120                 81 winter       S 25.17557 -80.36781
## 3121                 81 winter       S 25.17557 -80.36781
## 3122                 81 winter       S 25.17557 -80.36781
## 3123                 81 winter       S 25.17557 -80.36781
## 3124                 81 winter       S 25.17557 -80.36781
## 3125                 81 winter       S 25.17557 -80.36781
## 3126                 81 winter       S 25.17557 -80.36781
## 3127                 81 winter       S 25.17557 -80.36781
## 3128                 81 winter       S 25.17557 -80.36781
## 3129                 81 winter       S 25.17557 -80.36781
## 3130                 81 winter       S 25.17557 -80.36781
## 3131                 81 winter       L 25.17557 -80.36781
## 3132                 81 winter       S 25.17557 -80.36781
## 3133                 81 winter       S 25.17557 -80.36781
## 3134                 81 winter       S 25.17557 -80.36781
## 3135                 81 winter       S 25.17557 -80.36781
## 3136                 81 winter       L 25.17557 -80.36781
## 3137                 81 winter       S 25.25656 -80.31080
## 3138                 81 winter       S 25.25656 -80.31080
## 3139                 81 winter       S 25.25656 -80.31080
## 3140                 81 winter       S 25.25656 -80.31080
## 3141                 81 winter       S 25.25656 -80.31080
## 3142                 81 winter       S 25.25656 -80.31080
## 3143                 81 winter       L 25.25656 -80.31080
## 3144                 81 winter       S 25.25656 -80.31080
## 3145                 81 winter       S 25.25656 -80.31080
## 3146                 81 winter       L 25.25656 -80.31080
## 3147                 81 winter       S 25.25656 -80.31080
## 3148                 81 winter       L 25.25656 -80.31080
## 3149                 81 winter       S 25.25656 -80.31080
## 3150                 81 winter       L 25.25656 -80.31080
## 3151                 81 winter       L 25.25656 -80.31080
## 3152                 81 winter       L 25.25656 -80.31080
## 3153                 81 winter       L 25.25656 -80.31080
## 3154                 81 winter       L 25.25656 -80.31080
## 3155                 81 winter       L 24.97357 -80.55392
## 3156                 81 winter       L 24.97357 -80.55392
## 3157                 81 winter       L 24.97357 -80.55392
## 3158                 81 winter       L 24.97357 -80.55392
## 3159                 81 winter       L 24.97357 -80.55392
## 3160                 81 winter       L 24.96424 -80.56733
## 3161                 81 winter       L 24.96424 -80.56733
## 3162                 81 winter       L 24.96424 -80.56733
## 3163                 81 winter       L 24.96424 -80.56733
## 3164                 81 winter       L 24.96424 -80.56733
## 3165                 81 winter       L 24.97357 -80.55392
## 3166                 81 winter       L 24.97357 -80.55392
## 3167                 81 winter       L 24.97357 -80.55392
## 3168                 81 winter       L 24.97357 -80.55392
## 3169                 81 winter       L 24.97357 -80.55392
## 3170                 81 winter       L 24.96424 -80.56733
## 3171                 81 winter       L 24.96424 -80.56733
## 3172                 81 winter       L 24.96424 -80.56733
## 3173                 81 winter       L 24.96424 -80.56733
## 3174                 81 winter       L 24.96424 -80.56733
## 3175                 81 winter       L 24.97357 -80.55392
## 3176                 81 winter       L 24.97357 -80.55392
## 3177                 81 winter       L 24.97357 -80.55392
## 3178                 81 winter       L 24.97357 -80.55392
## 3179                 81 winter       L 24.97357 -80.55392
## 3180                 81 winter       L 24.96424 -80.56733
## 3181                 81 winter       L 24.96424 -80.56733
## 3182                 81 winter       L 24.96424 -80.56733
## 3183                 81 winter       L 24.96424 -80.56733
## 3184                 81 winter       L 24.97357 -80.55392
## 3185                 81 winter       L 24.97357 -80.55392
## 3186                 81 winter       L 24.97357 -80.55392
## 3187                 81 winter       L 24.96424 -80.56733
## 3188                 81 winter       L 24.96424 -80.56733
## 3189                 81 winter       L 24.96424 -80.56733
## 3190                 81 winter       L 24.96424 -80.56733
## 3191                 81 winter       L 24.96424 -80.56733
## 3192                 81 winter       L 24.96424 -80.56733
## 3193                 81 winter       L 24.96424 -80.56733
## 3194                 81 winter       L 24.96424 -80.56733
## 3195                 81 winter       L 24.96424 -80.56733
## 3196                 81 winter       L 24.96424 -80.56733
## 3197                 81 winter       L 24.96424 -80.56733
## 3198                 81 winter       L 24.96424 -80.56733
## 3199                 81 winter       L 24.96424 -80.56733
## 3200                 81 winter       L 24.96424 -80.56733
## 3201                 81 winter       L 24.96424 -80.56733
## 3202                 81 winter       L 24.96424 -80.56733
## 3203                 81 winter       L 24.96424 -80.56733
## 3204                 81 winter       L 24.96424 -80.56733
## 3205                 81 winter       L 24.96424 -80.56733
## 3206                 81 winter       S 24.96424 -80.56733
## 3207                 81 winter       S 24.96424 -80.56733
## 3208                 81 winter       S 24.96424 -80.56733
## 3209                 81 winter       S 24.96424 -80.56733
## 3210                 81 winter       S 24.96424 -80.56733
## 3211                 81 winter       L 24.96424 -80.56733
## 3212                 81 winter       L 24.96424 -80.56733
## 3213                 81 winter       S 24.96424 -80.56733
## 3214                 81 winter       S 24.96424 -80.56733
## 3215                 81 winter       S 24.96424 -80.56733
## 3216                 81 winter       L 24.96424 -80.56733
## 3217                 81 winter       S 24.96424 -80.56733
## 3218                 81 winter       S 24.96424 -80.56733
## 3219                 81 winter       S 24.96424 -80.56733
## 3220                 81 winter       S 24.96424 -80.56733
## 3221                 81 winter       S 24.96424 -80.56733
## 3222                 81 winter       S 24.96424 -80.56733
## 3223                 81 winter       L 24.96424 -80.56733
## 3224                 81 winter       L 24.97357 -80.55392
## 3225                 81 winter       L 24.97357 -80.55392
## 3226                 77   fall       L 24.96424 -80.56733
## 3227                 77   fall       L 24.96424 -80.56733
## 3228                 77   fall       L 24.96424 -80.56733
## 3229                 77   fall       L 24.96424 -80.56733
## 3230                 77   fall       L 24.96424 -80.56733
## 3231                 77   fall       L 24.96424 -80.56733
## 3232                 77   fall       L 24.96424 -80.56733
## 3233                 77   fall       L 24.96424 -80.56733
## 3234                 77   fall       S 24.96424 -80.56733
## 3235                 77   fall       L 24.96424 -80.56733
## 3236                 77   fall       L 24.96424 -80.56733
## 3237                 77   fall       L 24.96424 -80.56733
## 3238                 77   fall       L 24.96424 -80.56733
## 3239                 77   fall       L 24.96424 -80.56733
## 3240                 77   fall       S 24.96424 -80.56733
## 3241                 77   fall       S 24.96424 -80.56733
## 3242                 77   fall       L 24.96424 -80.56733
## 3243                 77   fall       L 24.96424 -80.56733
## 3244                 77   fall       S 24.96424 -80.56733
## 3245                 77   fall       L 24.96424 -80.56733
## 3246                 77   fall       L 24.96424 -80.56733
## 3247                 77   fall       L 24.96424 -80.56733
## 3248                 77   fall       L 24.96424 -80.56733
## 3249                 77   fall       L 24.96424 -80.56733
## 3250                 77   fall       L 24.96424 -80.56733
## 3251                 77   fall       L 25.49136 -80.48582
## 3252                 77   fall       L 25.49136 -80.48582
## 3253                 77   fall       L 25.49136 -80.48582
## 3254                 77   fall       L 25.49136 -80.48582
## 3255                 77   fall       L 25.49136 -80.48582
## 3256                 77   fall       L 25.49136 -80.48582
## 3257                 77   fall       L 25.49136 -80.48582
## 3258                 77   fall       L 25.49136 -80.48582
## 3259                 77   fall       L 25.49136 -80.48582
## 3260                 77   fall       S 25.49136 -80.48582
## 3261                 77   fall       L 25.49136 -80.48582
## 3262                 77   fall       L 25.49136 -80.48582
## 3263                 77   fall       L 25.25648 -80.31069
## 3264                 77   fall       L 25.25648 -80.31069
## 3265                 77   fall       L 25.25648 -80.31069
## 3266                 77   fall       L 25.25648 -80.31069
## 3267                 77   fall       L 25.25648 -80.31069
## 3268                 77   fall       L 25.25648 -80.31069
## 3269                 77   fall       L 25.25648 -80.31069
## 3270                 77   fall       L 25.25648 -80.31069
## 3271                 77   fall       L 25.25648 -80.31069
## 3272                 77   fall       L 25.25648 -80.31069
## 3273                 77   fall       L 25.25648 -80.31069
## 3274                 77   fall       L 25.25648 -80.31069
## 3275                 77   fall       S 25.25648 -80.31069
## 3276                 77   fall       L 25.25648 -80.31069
## 3277                 77   fall       L 25.28675 -80.29059
## 3278                 77   fall       L 25.28675 -80.29059
## 3279                 77   fall       L 25.28675 -80.29059
## 3280                 77   fall       L 25.28675 -80.29059
## 3281                 77   fall       L 25.28675 -80.29059
## 3282                 77   fall       L 25.28675 -80.29059
## 3283                 77   fall       L 25.28675 -80.29059
## 3284                 77   fall       L 25.28675 -80.29059
## 3285                 77   fall       L 25.28675 -80.29059
## 3286                 77   fall       L 25.28675 -80.29059
## 3287                 77   fall       L 25.28675 -80.29059
## 3288                 77   fall       L 25.28675 -80.29059
## 3289                 77   fall       L 27.29863 -81.36615
## 3290                 77   fall       L 27.29863 -81.36615
## 3291                 77   fall       L 27.29863 -81.36615
## 3292                 77   fall       L 27.29863 -81.36615
## 3293                 77   fall       L 27.29863 -81.36615
## 3294                 77   fall       L 27.29863 -81.36615
## 3295                 77   fall       L 27.29863 -81.36615
## 3296                 77   fall       S 27.29863 -81.36615
## 3297                 77   fall       L 27.29863 -81.36615
## 3298                 77   fall       L 27.29863 -81.36615
## 3299                 77   fall       L 27.29863 -81.36615
## 3300                 77   fall       L 27.29863 -81.36615
## 3301                 77   fall       L 27.29863 -81.36615
## 3302                 77   fall       L 27.29863 -81.36615
## 3303                 77   fall       L 27.29863 -81.36615
## 3304                 77   fall       L 27.29863 -81.36615
## 3305                 77   fall       L 27.29863 -81.36615
## 3306                 77   fall       L 27.29863 -81.36615
## 3307                 77   fall       L 27.29863 -81.36615
## 3308                 77   fall       L 27.29863 -81.36615
## 3309                 77   fall       L 27.29863 -81.36615
## 3310                 77   fall       L 25.22752 -80.32838
## 3311                 77   fall       L 25.22752 -80.32838
## 3312                 77   fall       L 25.22752 -80.32838
## 3313                 77   fall       L 25.22752 -80.32838
## 3314                 43   fall       L 25.55090 -80.42110
## 3315                 43   fall       S 25.55090 -80.42110
## 3316                 43   fall       S 25.55090 -80.42110
## 3317                 43   fall       S 25.55090 -80.42110
## 3318                 77   fall       L 25.12846 -80.40809
## 3319                 77   fall       L 25.12846 -80.40809
## 3320                 77   fall       L 25.12846 -80.40809
## 3321                 77   fall       L 25.12846 -80.40809
## 3322                 77   fall       L 25.12846 -80.40809
## 3323                 77   fall       L 25.12846 -80.40809
## 3324                 77   fall       L 25.12846 -80.40809
## 3325                 77   fall       L 25.27349 -80.30410
## 3326                 77   fall       L 25.27349 -80.30410
## 3327                 77   fall       L 25.27349 -80.30410
## 3328                 77   fall       S 25.27349 -80.30410
## 3329                 77   fall       L 25.27349 -80.30410
## 3330                 77   fall       S 25.27349 -80.30410
## 3331                 77   fall       L 25.12848 -80.40754
## 3332                 77   fall       L 25.12848 -80.40754
## 3333                 77   fall       L 25.12848 -80.40754
## 3334                 77   fall       L 25.18088 -80.36466
## 3335                 77   fall       L 25.18088 -80.36466
## 3336                 77   fall       L 25.18088 -80.36466
## 3337                 77   fall       L 25.18088 -80.36466
## 3338                 77   fall       L 25.18088 -80.36466
## 3339                 77   fall       L 25.18088 -80.36466
## 3340                 72 spring       L 27.89664 -81.58064
## 3341                 72 spring       S 27.89664 -81.58064
## 3342                 72 spring       L 27.89664 -81.58064
## 3343                 72 spring       L 27.89664 -81.58064
## 3344                 72 spring       L 27.89664 -81.58064
## 3345                 72 spring       L 27.89664 -81.58064
## 3346                 72 spring       L 27.89664 -81.58064
## 3347                 72 spring       L 27.89664 -81.58064
## 3348                 72 spring       L 27.89664 -81.58064
## 3349                 72 spring       L 27.89664 -81.58064
## 3350                 72 spring       L 27.89664 -81.58064
## 3351                 72 spring       L 27.89664 -81.58064
## 3352                 72 spring       L 27.89664 -81.58064
## 3353                 72 spring       L 27.89664 -81.58064
## 3354                 72 spring       L 27.89664 -81.58064
## 3355                 72 spring       L 27.89664 -81.58064
## 3356                 72 spring       L 27.89664 -81.58064
## 3357                 72 spring       L 27.89664 -81.58064
## 3358                 72 spring       L 27.89664 -81.58064
## 3359                 72 spring       L 27.89664 -81.58064
## 3360                 72 spring       L 27.89664 -81.58064
## 3361                 72 spring       L 27.89664 -81.58064
## 3362                 72 spring       L 27.89664 -81.58064
## 3363                 72 spring       L 27.89664 -81.58064
## 3364                 72 spring       L 27.89664 -81.58064
## 3365                 72 spring       L 27.89664 -81.58064
## 3366                 72 spring       L 27.89664 -81.58064
## 3367                 72 spring       L 27.89664 -81.58064
## 3368                 72 spring       L 27.89664 -81.58064
## 3369                 72 spring       L 27.89664 -81.58064
## 3370                 72 spring       L 27.89664 -81.58064
## 3371                 72 spring       L 27.89664 -81.58064
## 3372                 72 spring       L 27.89664 -81.58064
## 3373                 72 spring       L 27.89664 -81.58064
## 3374                 72 spring       L 27.89664 -81.58064
## 3375                 72 spring       L 27.89664 -81.58064
## 3376                 72 spring       L 27.89664 -81.58064
## 3377                 72 spring       L 27.89664 -81.58064
## 3378                 72 spring       L 27.89664 -81.58064
## 3379                 72 spring       L 27.89664 -81.58064
## 3380                 72 spring       L 27.89664 -81.58064
## 3381                 72 spring       L 27.89664 -81.58064
## 3382                 72 spring       L 27.89664 -81.58064
## 3383                 72 spring       L 27.89664 -81.58064
## 3384                 72 spring       L 27.89664 -81.58064
## 3385                 72 spring       L 27.89664 -81.58064
## 3386                 72 spring       L 27.89664 -81.58064
## 3387                 72 spring       L 27.89664 -81.58064
## 3388                 72 spring       L 27.89664 -81.58064
## 3389                 72 spring       L 27.89664 -81.58064
## 3390                 72 spring       L 27.89664 -81.58064
## 3391                 72 spring       L 27.89664 -81.58064
## 3392                 72 spring       L 27.89664 -81.58064
## 3393                 72 spring       L 27.89664 -81.58064
## 3394                 72 spring       L 28.79642 -81.87792
## 3395                 72 spring       L 28.79642 -81.87792
## 3396                 72 spring       L 28.79642 -81.87792
## 3397                 72 spring       L 28.79642 -81.87792
## 3398                 72 spring       L 28.79642 -81.87792
## 3399                 72 spring       L 28.79642 -81.87792
## 3400                 72 spring       L 28.79642 -81.87792
## 3401                 72 spring       L 28.79642 -81.87792
## 3402                 72 spring       L 28.79642 -81.87792
## 3403                 72 spring       L 28.79642 -81.87792
## 3404                 72 spring       L 28.79642 -81.87792
## 3405                 72 spring       L 28.79642 -81.87792
## 3406                 72 spring       L 28.79642 -81.87792
## 3407                 72 spring       L 28.79642 -81.87792
## 3408                 72 spring       L 28.79642 -81.87792
## 3409                 72 spring       L 28.79642 -81.87792
## 3410                 72 spring       L 28.79642 -81.87792
## 3411                 72 spring       L 28.79642 -81.87792
## 3412                 72 spring       L 28.79642 -81.87792
## 3413                 72 spring       L 28.79642 -81.87792
## 3414                 72 spring       L 28.79642 -81.87792
## 3415                 72 spring       L 28.79642 -81.87792
## 3416                 72 spring       L 28.79642 -81.87792
## 3417                 72 spring       L 28.79642 -81.87792
## 3418                 72 spring       L 28.79642 -81.87792
## 3419                 72 spring       L 28.79642 -81.87792
## 3420                 72 spring       L 28.79642 -81.87792
## 3421                 72 spring       L 28.79642 -81.87792
## 3422                 72 spring       L 28.79642 -81.87792
## 3423                 72 spring       L 28.79642 -81.87792
## 3424                 72 spring       L 28.79642 -81.87792
## 3425                 72 spring       L 28.79642 -81.87792
## 3426                 72 spring       L 28.79642 -81.87792
## 3427                 72 spring       L 28.79642 -81.87792
## 3428                 72 spring       L 28.79642 -81.87792
## 3429                 72 spring       L 28.79642 -81.87792
## 3430                 72 spring       L 28.79642 -81.87792
## 3431                 72 spring       L 28.79642 -81.87792
## 3432                 72 spring       L 28.79642 -81.87792
## 3433                 72 spring       L 28.79642 -81.87792
## 3434                 72 spring       L 28.79642 -81.87792
## 3435                 72 spring       L 28.79642 -81.87792
## 3436                 72 spring       L 28.79642 -81.87792
## 3437                 72 spring       L 28.79642 -81.87792
## 3438                 72 spring       L 28.79642 -81.87792
## 3439                 72 spring       L 28.79642 -81.87792
## 3440                 72 spring       L 28.79642 -81.87792
## 3441                 72 spring       L 28.79642 -81.87792
## 3442                 72 spring       L 28.79642 -81.87792
## 3443                 72 spring       L 28.79642 -81.87792
## 3444                 72 spring       L 28.79642 -81.87792
## 3445                 72 spring       S 28.79642 -81.87792
## 3446                 72 spring       L 28.79642 -81.87792
## 3447                 72 spring       L 28.79642 -81.87792
##                             diapause field_date_collected
## 1                                                        
## 2                                                        
## 3                                                        
## 4                                                        
## 5                                                        
## 6                                                        
## 7                                                        
## 8                                                        
## 9                                                        
## 10                                                       
## 11                                                       
## 12                                                       
## 13                                                       
## 14                                                       
## 15                                                       
## 16                                                       
## 17                                                       
## 18                                                       
## 19                                                       
## 20                                                       
## 21                                                       
## 22                                                       
## 23                                                       
## 24                                                       
## 25                                                       
## 26                                                       
## 27                                                       
## 28                                                       
## 29                                                       
## 30                                                       
## 31                                                       
## 32                                                       
## 33                                                       
## 34                                                       
## 35                                                       
## 36                                                       
## 37                                                       
## 38                                                       
## 39                                                       
## 40                                                       
## 41                                                       
## 42                                                       
## 43                                                       
## 44                                                       
## 45                                                       
## 46                                                       
## 47                                                       
## 48                                                       
## 49                                                       
## 50                                                       
## 51                                                       
## 52                                                       
## 53                                                       
## 54                                                       
## 55                                                       
## 56                                                       
## 57                                                       
## 58                                                       
## 59                                                       
## 60                                                       
## 61                                                       
## 62                                                       
## 63                                                       
## 64                                                       
## 65                                                       
## 66                                                       
## 67                                                       
## 68                                                       
## 69                                                       
## 70                                                       
## 71                                                       
## 72                                                       
## 73                                                       
## 74                                                       
## 75                                                       
## 76                                                       
## 77                                                       
## 78                                                       
## 79                                                       
## 80                                                       
## 81                                                       
## 82                                                       
## 83                                                       
## 84                                                       
## 85                                                       
## 86                                                       
## 87                                                       
## 88                                                       
## 89                                                       
## 90                                                       
## 91                                                       
## 92                                                       
## 93                                                       
## 94                                                       
## 95                                                       
## 96                                                       
## 97                                                       
## 98                                                       
## 99                                                       
## 100                                                      
## 101                                                      
## 102                                                      
## 103                                                      
## 104                                                      
## 105                                                      
## 106                                                      
## 107                                                      
## 108                                                      
## 109                                                      
## 110                                                      
## 111                                                      
## 112                                                      
## 113                                                      
## 114                                                      
## 115                                                      
## 116                                                      
## 117                                                      
## 118                                                      
## 119                                                      
## 120                                                      
## 121                                                      
## 122                                                      
## 123                                                      
## 124                                                      
## 125                                                      
## 126                                                      
## 127                                                      
## 128                                                      
## 129                                                      
## 130                                                      
## 131                                                      
## 132                                                      
## 133                                                      
## 134                                                      
## 135                                                      
## 136                                                      
## 137                                                      
## 138                                                      
## 139                                                      
## 140                                                      
## 141                                                      
## 142                                                      
## 143                                                      
## 144                                                      
## 145                                                      
## 146                                                      
## 147                                                      
## 148                                                      
## 149                                                      
## 150                                                      
## 151                                                      
## 152                                                      
## 153                                                      
## 154                                                      
## 155                                                      
## 156                                                      
## 157                                                      
## 158                                                      
## 159                                                      
## 160                                                      
## 161                                                      
## 162                                                      
## 163                                                      
## 164                                                      
## 165                                                      
## 166                                                      
## 167                                                      
## 168                                                      
## 169                                                      
## 170                                                      
## 171                                                      
## 172                                                      
## 173                                                      
## 174                                                      
## 175                                                      
## 176                                                      
## 177                                                      
## 178                                                      
## 179                                                      
## 180                                                      
## 181                                                      
## 182                                                      
## 183                                                      
## 184                                                      
## 185                                                      
## 186                                                      
## 187                                                      
## 188                                                      
## 189                                                      
## 190                                                      
## 191                                                      
## 192                                                      
## 193                                                      
## 194                                                      
## 195                                                      
## 196                                                      
## 197                                                      
## 198                                                      
## 199                                                      
## 200                                                      
## 201                                                      
## 202                                                      
## 203                                                      
## 204                                                      
## 205                                                      
## 206                                                      
## 207                                                      
## 208                                                      
## 209                                                      
## 210                                                      
## 211                                                      
## 212                                                      
## 213                                                      
## 214                                                      
## 215                                                      
## 216                                                      
## 217                                                      
## 218                                                      
## 219                                                      
## 220                                                      
## 221                                                      
## 222                                                      
## 223                                                      
## 224                                                      
## 225                                                      
## 226                                                      
## 227                                                      
## 228                                                      
## 229                                                      
## 230                                                      
## 231                                                      
## 232                                                      
## 233                                                      
## 234                                                      
## 235                                                      
## 236                                                      
## 237                                                      
## 238                                                      
## 239                                                      
## 240                                                      
## 241                                                      
## 242                                                      
## 243                                                      
## 244                                                      
## 245                                                      
## 246                                                      
## 247                                                      
## 248                                                      
## 249                                                      
## 250                                                      
## 251                                                      
## 252                                                      
## 253                                                      
## 254                                                      
## 255                                                      
## 256                                                      
## 257                                                      
## 258                                                      
## 259                                                      
## 260                                                      
## 261                                                      
## 262                                                      
## 263                                                      
## 264                                                      
## 265                                                      
## 266                                                      
## 267                                                      
## 268                                                      
## 269                                                      
## 270                                                      
## 271                                                      
## 272                                                      
## 273                                                      
## 274                                                      
## 275                                                      
## 276                                                      
## 277                                                      
## 278                                                      
## 279                                                      
## 280                                                      
## 281                                                      
## 282                                                      
## 283                                                      
## 284                                                      
## 285                                                      
## 286                                                      
## 287                                                      
## 288                                                      
## 289                                                      
## 290                                                      
## 291                                                      
## 292                                                      
## 293                                                      
## 294                                                      
## 295                                                      
## 296                                                      
## 297                                                      
## 298                                                      
## 299                                                      
## 300                                                      
## 301                                                      
## 302                                                      
## 303                                                      
## 304                                                      
## 305                                                      
## 306                                                      
## 307                                                      
## 308                                                      
## 309                                                      
## 310                                                      
## 311                                                      
## 312                                                      
## 313                                                      
## 314                                                      
## 315                                                      
## 316                                                      
## 317                                                      
## 318                                                      
## 319                                                      
## 320                                                      
## 321                                                      
## 322                                                      
## 323                                                      
## 324                                                      
## 325                                                      
## 326                                                      
## 327                                                      
## 328                                                      
## 329                                                      
## 330                                                      
## 331                                                      
## 332                                                      
## 333                                                      
## 334                                                      
## 335                                                      
## 336                                                      
## 337                                                      
## 338                                                      
## 339                                                      
## 340                                                      
## 341                                                      
## 342                                                      
## 343                                                      
## 344                                                      
## 345                                                      
## 346                                                      
## 347                                                      
## 348                                                      
## 349                                                      
## 350                                                      
## 351                                                      
## 352                                                      
## 353                                                      
## 354                                                      
## 355                                                      
## 356                                                      
## 357                                                      
## 358                                                      
## 359                                                      
## 360                                                      
## 361                                                      
## 362                                                      
## 363                                                      
## 364                                                      
## 365                                                      
## 366                                                      
## 367                                                      
## 368                                                      
## 369                                                      
## 370                                                      
## 371                                                      
## 372                                                      
## 373                                                      
## 374                                                      
## 375                                                      
## 376                                                      
## 377                                                      
## 378                                                      
## 379                                                      
## 380                                                      
## 381                                                      
## 382                                                      
## 383                                                      
## 384                                                      
## 385                                                      
## 386                                                      
## 387                                                      
## 388                                                      
## 389                                                      
## 390                                                      
## 391                                                      
## 392                                                      
## 393                                                      
## 394                                                      
## 395                                                      
## 396                                                      
## 397                                                      
## 398                                                      
## 399                                                      
## 400                                                      
## 401                                                      
## 402                                                      
## 403                                                      
## 404                                                      
## 405                                                      
## 406                                                      
## 407                                                      
## 408                                                      
## 409                                                      
## 410                                                      
## 411                                                      
## 412                                                      
## 413                                                      
## 414                                                      
## 415                                                      
## 416                                                      
## 417                                                      
## 418                                                      
## 419                                                      
## 420                                                      
## 421                                                      
## 422                                                      
## 423                                                      
## 424                                                      
## 425                                                      
## 426                                                      
## 427                                                      
## 428                                                      
## 429                                                      
## 430                                                      
## 431                                                      
## 432                                                      
## 433                                                      
## 434                                                      
## 435                                                      
## 436                                                      
## 437                                                      
## 438                                                      
## 439                                                      
## 440                                                      
## 441                                                      
## 442                                                      
## 443                                                      
## 444                                                      
## 445                                                      
## 446                                                      
## 447                                                      
## 448                                                      
## 449                                                      
## 450                                                      
## 451                                                      
## 452                                                      
## 453                                                      
## 454                                                      
## 455                                                      
## 456                                                      
## 457                                                      
## 458                                                      
## 459                                                      
## 460                                                      
## 461                                                      
## 462                                                      
## 463                                                      
## 464                                                      
## 465                                                      
## 466                                                      
## 467                                                      
## 468                                                      
## 469                                                      
## 470                                                      
## 471                                                      
## 472                                                      
## 473                                                      
## 474                                                      
## 475                                                      
## 476                                                      
## 477                                                      
## 478                                                      
## 479                                                      
## 480                                                      
## 481                                                      
## 482                                                      
## 483                                                      
## 484                                                      
## 485                                                      
## 486                                                      
## 487                                                      
## 488                                                      
## 489                                                      
## 490                                                      
## 491                                                      
## 492                                                      
## 493                                                      
## 494                                                      
## 495                                                      
## 496                                                      
## 497                                                      
## 498                                                      
## 499                                                      
## 500                                                      
## 501                                                      
## 502                                                      
## 503                                                      
## 504                                                      
## 505                                                      
## 506                                                      
## 507                                                      
## 508                                                      
## 509                                                      
## 510                                                      
## 511                                                      
## 512                                                      
## 513                                                      
## 514                                                      
## 515                                                      
## 516                                                      
## 517                                                      
## 518                                                      
## 519                                                      
## 520                                                      
## 521                                                      
## 522                                                      
## 523                                                      
## 524                                                      
## 525                                                      
## 526                                                      
## 527                                                      
## 528                                                      
## 529                                                      
## 530                                                      
## 531                                                      
## 532                                                      
## 533                                                      
## 534                                                      
## 535                                                      
## 536                                                      
## 537                                                      
## 538                                                      
## 539                                                      
## 540                                                      
## 541                                                      
## 542                                                      
## 543                                                      
## 544                                                      
## 545                                                      
## 546                                                      
## 547                                                      
## 548                                                      
## 549                                                      
## 550                                                      
## 551                                                      
## 552                                                      
## 553                                                      
## 554                                                      
## 555                                                      
## 556                                                      
## 557                                                      
## 558                                                      
## 559                                                      
## 560                                                      
## 561                                                      
## 562                                                      
## 563                                                      
## 564                                                      
## 565                                                      
## 566                                                      
## 567                                                      
## 568                                                      
## 569                                                      
## 570                                                      
## 571                                                      
## 572                                                      
## 573                                                      
## 574                                                      
## 575                                                      
## 576                                                      
## 577                                                      
## 578                                                      
## 579                                                      
## 580                                                      
## 581                                                      
## 582                                                      
## 583                                                      
## 584                                                      
## 585                                                      
## 586                                                      
## 587                                                      
## 588                                                      
## 589                                                      
## 590                                                      
## 591                                                      
## 592                                                      
## 593                                                      
## 594                                                      
## 595                                                      
## 596                                                      
## 597                                                      
## 598                                                      
## 599                                                      
## 600                                                      
## 601                                                      
## 602                                                      
## 603                                                      
## 604                                                      
## 605                                                      
## 606                                                      
## 607                                                      
## 608                                                      
## 609                                                      
## 610                                                      
## 611                                                      
## 612                                                      
## 613                                                      
## 614                                                      
## 615                                                      
## 616                                                      
## 617                                                      
## 618                                                      
## 619                                                      
## 620                                                      
## 621                                                      
## 622                                                      
## 623                                                      
## 624                                                      
## 625                                                      
## 626                                                      
## 627                                                      
## 628                                                      
## 629                                                      
## 630                                                      
## 631                                                      
## 632                                                      
## 633                                                      
## 634                                                      
## 635                                                      
## 636                                                      
## 637                                                      
## 638                                                      
## 639                                                      
## 640                                                      
## 641                                                      
## 642                                                      
## 643                                                      
## 644                                                      
## 645                                                      
## 646                                                      
## 647                                                      
## 648                                                      
## 649                                                      
## 650                                                      
## 651                                                      
## 652                                                      
## 653                                                      
## 654                                                      
## 655                                                      
## 656                                                      
## 657                                                      
## 658                                                      
## 659                                                      
## 660                                                      
## 661                                                      
## 662                                                      
## 663                                                      
## 664                                                      
## 665                                                      
## 666                                                      
## 667                                                      
## 668                                                      
## 669                                                      
## 670                                                      
## 671                                                      
## 672                                                      
## 673                                                      
## 674                                                      
## 675                                                      
## 676                                                      
## 677                                                      
## 678                                                      
## 679                                                      
## 680                                                      
## 681                                                      
## 682                                                      
## 683                                                      
## 684                                                      
## 685                                                      
## 686                                                      
## 687                                                      
## 688                                                      
## 689                                                      
## 690                                                      
## 691                                                      
## 692                                                      
## 693                                                      
## 694                                                      
## 695                                                      
## 696                                                      
## 697                                                      
## 698                                                      
## 699                                                      
## 700                                                      
## 701                                                      
## 702                                                      
## 703                                                      
## 704                                                      
## 705                                                      
## 706                                                      
## 707                                                      
## 708                                                      
## 709                                                      
## 710                                                      
## 711                                                      
## 712                                                      
## 713                                                      
## 714                                                      
## 715                                                      
## 716                                                      
## 717                                                      
## 718                                                      
## 719                                                      
## 720                                                      
## 721                                                      
## 722                                                      
## 723                                                      
## 724                                                      
## 725                                                      
## 726                                                      
## 727                                                      
## 728                                                      
## 729                                                      
## 730                                                      
## 731                                                      
## 732                                                      
## 733                                                      
## 734                                                      
## 735                                                      
## 736                                                      
## 737                                                      
## 738                                                      
## 739                                                      
## 740                                                      
## 741                                                      
## 742                                                      
## 743                                                      
## 744                                                      
## 745                                                      
## 746                                                      
## 747                                                      
## 748                                                      
## 749                                                      
## 750                                                      
## 751                                                      
## 752                                                      
## 753                                                      
## 754                                                      
## 755                                                      
## 756                                                      
## 757                                                      
## 758                                                      
## 759                                                      
## 760                                                      
## 761                                                      
## 762                                                      
## 763                                                      
## 764                                                      
## 765                                                      
## 766                                                      
## 767                                                      
## 768                                                      
## 769                                                      
## 770                                                      
## 771                                                      
## 772                                                      
## 773                                                      
## 774                                                      
## 775                                                      
## 776                                                      
## 777                                                      
## 778                                                      
## 779                                                      
## 780                                                      
## 781                                                      
## 782                                                      
## 783                                                      
## 784                                                      
## 785                                                      
## 786                                                      
## 787                                                      
## 788                                                      
## 789                                                      
## 790                                                      
## 791                                                      
## 792                                                      
## 793                                                      
## 794                                                      
## 795                                                      
## 796                                                      
## 797                                                      
## 798                                                      
## 799                                                      
## 800                                                      
## 801                                                      
## 802                                                      
## 803                                                      
## 804                                                      
## 805                                                      
## 806                                                      
## 807                                                      
## 808                                                      
## 809                                                      
## 810                                                      
## 811                                                      
## 812                                                      
## 813                                                      
## 814                                                      
## 815                                                      
## 816                                                      
## 817                                                      
## 818                                                      
## 819                                                      
## 820                                                      
## 821                                                      
## 822                                                      
## 823                                                      
## 824                                                      
## 825                                                      
## 826                                                      
## 827                                                      
## 828                                                      
## 829                                                      
## 830                                                      
## 831                                                      
## 832                                                      
## 833                                                      
## 834                                                      
## 835                                                      
## 836                                                      
## 837                                                      
## 838                                                      
## 839                                                      
## 840                                                      
## 841                                                      
## 842                                                      
## 843                                                      
## 844                                                      
## 845                                                      
## 846                                                      
## 847                                                      
## 848                                                      
## 849                                                      
## 850                                                      
## 851                                                      
## 852                                                      
## 853                                                      
## 854                                                      
## 855                                                      
## 856                                                      
## 857                                                      
## 858                                                      
## 859                                                      
## 860                                                      
## 861                                                      
## 862                                                      
## 863                                                      
## 864                                                      
## 865                                                      
## 866                                                      
## 867                                                      
## 868                                                      
## 869                                                      
## 870                                                      
## 871                                                      
## 872                                                      
## 873                                                      
## 874                                                      
## 875                                                      
## 876                                                      
## 877                                                      
## 878                                                      
## 879                                                      
## 880                                                      
## 881                                                      
## 882                                                      
## 883                                                      
## 884                                                      
## 885                                                      
## 886                                                      
## 887                                                      
## 888                                                      
## 889                                                      
## 890                                                      
## 891                                                      
## 892                                                      
## 893                                                      
## 894                                                      
## 895                                                      
## 896                                                      
## 897                                                      
## 898                                                      
## 899                                                      
## 900                                                      
## 901                                                      
## 902                                                      
## 903                                                      
## 904                                                      
## 905                                                      
## 906                                                      
## 907                                                      
## 908                                                      
## 909                                                      
## 910                                                      
## 911                                                      
## 912                                                      
## 913                                                      
## 914                                                      
## 915                                                      
## 916                                                      
## 917                                                      
## 918                                                      
## 919                                                      
## 920                                                      
## 921                                                      
## 922                                                      
## 923                                                      
## 924                                                      
## 925                                                      
## 926                                                      
## 927                                                      
## 928                                                      
## 929                                                      
## 930                                                      
## 931                                                      
## 932                                                      
## 933                                                      
## 934                                                      
## 935                                                      
## 936                                                      
## 937                                                      
## 938                                                      
## 939                                                      
## 940                                                      
## 941                                                      
## 942                                                      
## 943                                                      
## 944                                                      
## 945                                                      
## 946                                                      
## 947                                                      
## 948                                                      
## 949                                                      
## 950                                                      
## 951                                                      
## 952                                                      
## 953                                                      
## 954                                                      
## 955                                                      
## 956                                                      
## 957                                                      
## 958                                                      
## 959                                                      
## 960                                                      
## 961                                                      
## 962                                                      
## 963                                                      
## 964                                                      
## 965                                                      
## 966                                                      
## 967                                                      
## 968                                                      
## 969                                                      
## 970                                                      
## 971                                                      
## 972                                                      
## 973                                                      
## 974                                                      
## 975                                                      
## 976                                                      
## 977                                                      
## 978                                                      
## 979                                                      
## 980                                                      
## 981                                                      
## 982                                                      
## 983                                                      
## 984                                                      
## 985                                                      
## 986                                                      
## 987                                                      
## 988                                                      
## 989                                                      
## 990                                                      
## 991                                                      
## 992                                                      
## 993                                                      
## 994                                                      
## 995                                                      
## 996                                                      
## 997                                                      
## 998                                                      
## 999                                                      
## 1000                                                     
## 1001                                                     
## 1002                                                     
## 1003                                                     
## 1004                                                     
## 1005                                                     
## 1006                                                     
## 1007                                                     
## 1008                                                     
## 1009                                                     
## 1010                                                     
## 1011                                                     
## 1012                                                     
## 1013                                                     
## 1014                                                     
## 1015                                                     
## 1016                                                     
## 1017                                                     
## 1018                                                     
## 1019                                                     
## 1020                                                     
## 1021                                                     
## 1022                                                     
## 1023                                                     
## 1024                                                     
## 1025                                                     
## 1026                                                     
## 1027                                                     
## 1028                                                     
## 1029                                                     
## 1030                                                     
## 1031                                                     
## 1032                                                     
## 1033                                                     
## 1034                                                     
## 1035                                                     
## 1036                                                     
## 1037                                                     
## 1038                                                     
## 1039                                                     
## 1040                                                     
## 1041                                                     
## 1042                                                     
## 1043                                                     
## 1044                                                     
## 1045                                                     
## 1046                                                     
## 1047                                                     
## 1048                                                     
## 1049                                                     
## 1050                                                     
## 1051                                                     
## 1052                                                     
## 1053                                                     
## 1054                                                     
## 1055                                                     
## 1056                                                     
## 1057                                                     
## 1058                                                     
## 1059                                                     
## 1060                                                     
## 1061                                                     
## 1062                                                     
## 1063                                                     
## 1064                  non-diapausing           12.18.2016
## 1065                  non-diapausing           12.18.2016
## 1066                  non-diapausing           12.18.2016
## 1067                  non-diapausing           12.18.2016
## 1068                  non-diapausing           12.18.2016
## 1069                  non-diapausing           12.18.2016
## 1070                  non-diapausing           12.18.2016
## 1071                  non-diapausing           12.18.2016
## 1072                  non-diapausing           12.18.2016
## 1073                  non-diapausing           12.18.2016
## 1074                  non-diapausing           12.18.2016
## 1075                  non-diapausing           12.18.2016
## 1076                  non-diapausing           12.18.2016
## 1077                  non-diapausing           12.18.2016
## 1078                  non-diapausing           12.18.2016
## 1079                  non-diapausing           12.18.2016
## 1080                  non-diapausing           12.18.2016
## 1081                  non-diapausing           12.18.2016
## 1082                  non-diapausing           12.18.2016
## 1083                  non-diapausing           12.18.2016
## 1084                  non-diapausing           12.18.2016
## 1085                  non-diapausing           12.18.2016
## 1086                  non-diapausing           12.18.2016
## 1087                  non-diapausing           12.18.2016
## 1088                  non-diapausing           12.18.2016
## 1089                  non-diapausing           12.18.2016
## 1090                  non-diapausing           12.18.2016
## 1091                  non-diapausing           12.18.2016
## 1092                  non-diapausing           12.18.2016
## 1093                  non-diapausing           12.18.2016
## 1094                  non-diapausing           12.18.2016
## 1095                  non-diapausing           12.18.2016
## 1096                  non-diapausing           12.18.2016
## 1097                  non-diapausing           12.18.2016
## 1098                  non-diapausing           12.18.2016
## 1099                  non-diapausing           12.18.2016
## 1100                  non-diapausing           12.18.2016
## 1101                  non-diapausing           12.18.2016
## 1102                  non-diapausing           12.18.2016
## 1103                  non-diapausing           12.18.2016
## 1104                  non-diapausing           12.18.2016
## 1105                  non-diapausing           12.18.2016
## 1106                  non-diapausing           12.18.2016
## 1107                  non-diapausing           12.18.2016
## 1108                  non-diapausing           12.18.2016
## 1109                  non-diapausing           12.18.2016
## 1110                  non-diapausing           12.18.2016
## 1111                  non-diapausing           12.18.2016
## 1112                  non-diapausing           12.18.2016
## 1113                  non-diapausing           12.18.2016
## 1114                  non-diapausing           12.18.2016
## 1115                  non-diapausing           12.18.2016
## 1116                  non-diapausing           12.18.2016
## 1117                  non-diapausing           12.18.2016
## 1118                  non-diapausing           12.18.2016
## 1119                  non-diapausing           12.18.2016
## 1120                  non-diapausing           12.18.2016
## 1121                                           12.15.2016
## 1122                                           12.15.2016
## 1123                                           12.15.2016
## 1124                                           12.15.2016
## 1125                                           12.15.2016
## 1126                                           12.15.2016
## 1127                                           12.15.2016
## 1128                                           12.15.2016
## 1129                                           12.15.2016
## 1130                                           12.15.2016
## 1131                                           12.15.2016
## 1132                                           12.15.2016
## 1133                                           12.15.2016
## 1134                                           12.14.2016
## 1135                                           12.14.2016
## 1136                                           12.14.2016
## 1137                                           12.14.2016
## 1138                                           12.14.2016
## 1139                                           12.14.2016
## 1140                                           12.14.2016
## 1141                                           12.14.2016
## 1142                                           12.14.2016
## 1143                                           12.14.2016
## 1144                                           12.14.2016
## 1145                                           12.14.2016
## 1146                                           12.14.2016
## 1147                                           12.14.2016
## 1148                                           12.14.2016
## 1149                                           12.14.2016
## 1150                                           12.14.2016
## 1151                                           12.14.2016
## 1152                                           12.14.2016
## 1153                                           12.14.2016
## 1154                                           12.14.2016
## 1155                                           12.14.2016
## 1156                                           12.14.2016
## 1157                                           12.14.2016
## 1158                                           12.14.2016
## 1159                                           12.14.2016
## 1160                                           12.14.2016
## 1161                                           12.14.2016
## 1162                                           12.14.2016
## 1163                                           12.14.2016
## 1164                                           12.14.2016
## 1165                                           12.14.2016
## 1166                                           12.14.2016
## 1167                                           12.14.2016
## 1168                                           12.14.2016
## 1169                                           12.14.2016
## 1170                                           12.14.2016
## 1171                                           12.14.2016
## 1172                                           12.14.2016
## 1173                                           12.14.2016
## 1174                                           12.14.2016
## 1175                                           12.14.2016
## 1176                                           12.14.2016
## 1177                                           12.14.2016
## 1178                                           12.14.2016
## 1179                                           12.14.2016
## 1180                                           12.14.2016
## 1181                                           12.14.2016
## 1182                                           12.14.2016
## 1183                                           12.14.2016
## 1184                                           12.14.2016
## 1185                                           12.14.2016
## 1186                                           12.14.2016
## 1187                  non-diapausing           12.14.2016
## 1188                  non-diapausing           12.14.2016
## 1189                  non-diapausing           12.14.2016
## 1190                  non-diapausing           12.14.2016
## 1191                  non-diapausing           12.14.2016
## 1192                  non-diapausing           12.14.2016
## 1193                  non-diapausing           12.14.2016
## 1194                  non-diapausing           12.14.2016
## 1195                  non-diapausing           12.14.2016
## 1196                  non-diapausing           12.14.2016
## 1197                  non-diapausing           12.14.2016
## 1198                                           12.16.2016
## 1199                                           12.16.2016
## 1200                                           12.16.2016
## 1201                                           12.16.2016
## 1202                                           12.16.2016
## 1203                                           12.16.2016
## 1204                                           12.16.2016
## 1205                                           12.16.2016
## 1206                                           12.16.2016
## 1207                                           12.16.2016
## 1208                                           12.16.2016
## 1209                                           12.16.2016
## 1210                                           12.16.2016
## 1211                                           12.16.2016
## 1212                                           12.16.2016
## 1213                                           12.13.2016
## 1214                                           12.13.2016
## 1215                                           12.13.2016
## 1216                                           12.13.2016
## 1217                                           12.13.2016
## 1218                                           12.13.2016
## 1219                                           12.13.2016
## 1220                                           12.13.2016
## 1221                                           12.13.2016
## 1222                                           12.13.2016
## 1223                                           12.13.2016
## 1224                                           12.13.2016
## 1225                                           12.13.2016
## 1226                                           12.13.2016
## 1227                                           12.13.2016
## 1228                                           12.13.2016
## 1229                                           12.13.2016
## 1230                                           12.13.2016
## 1231                                           12.13.2016
## 1232                                           12.13.2016
## 1233                  non-diapausing           12.13.2016
## 1234                  non-diapausing           12.13.2016
## 1235                  non-diapausing           12.13.2016
## 1236                  non-diapausing           12.13.2016
## 1237                  non-diapausing           12.13.2016
## 1238                  non-diapausing           12.13.2016
## 1239                  non-diapausing           12.13.2016
## 1240                  non-diapausing           12.13.2016
## 1241                  non-diapausing           12.13.2016
## 1242                  non-diapausing           12.13.2016
## 1243                  non-diapausing           12.13.2016
## 1244                  non-diapausing           12.13.2016
## 1245                  non-diapausing           12.13.2016
## 1246                  non-diapausing           12.13.2016
## 1247                  non-diapausing           12.13.2016
## 1248                  non-diapausing           12.13.2016
## 1249                  non-diapausing           12.13.2016
## 1250                  non-diapausing           12.13.2016
## 1251                  non-diapausing           12.13.2016
## 1252                  non-diapausing           12.13.2016
## 1253                  non-diapausing           12.13.2016
## 1254                  non-diapausing           12.13.2016
## 1255                  non-diapausing           12.13.2016
## 1256                  non-diapausing           12.13.2016
## 1257                  non-diapausing           12.13.2016
## 1258                  non-diapausing           12.13.2016
## 1259                  non-diapausing           12.13.2016
## 1260                  non-diapausing           12.13.2016
## 1261                  non-diapausing           12.13.2016
## 1262                  non-diapausing           12.13.2016
## 1263                  non-diapausing           12.13.2016
## 1264                  non-diapausing           12.13.2016
## 1265                  non-diapausing           12.13.2016
## 1266                  non-diapausing           12.13.2016
## 1267                  non-diapausing           12.13.2016
## 1268                  non-diapausing           12.13.2016
## 1269                  non-diapausing           12.13.2016
## 1270                  non-diapausing           12.13.2016
## 1271                  non-diapausing           12.13.2016
## 1272                  non-diapausing           12.13.2016
## 1273                  non-diapausing           12.13.2016
## 1274                  non-diapausing           12.13.2016
## 1275                  non-diapausing           12.13.2016
## 1276                  non-diapausing           12.13.2016
## 1277                  non-diapausing           12.13.2016
## 1278                  non-diapausing           12.14.2016
## 1279                  non-diapausing           12.14.2016
## 1280                  non-diapausing           12.14.2016
## 1281                  non-diapausing           12.14.2016
## 1282                  non-diapausing           12.14.2016
## 1283                  non-diapausing           12.14.2016
## 1284                  non-diapausing           12.14.2016
## 1285                  non-diapausing           12.14.2016
## 1286                  non-diapausing           12.14.2016
## 1287                  non-diapausing           12.14.2016
## 1288                  non-diapausing           12.14.2016
## 1289                  non-diapausing           12.14.2016
## 1290                  non-diapausing           12.14.2016
## 1291                  non-diapausing           12.14.2016
## 1292                  non-diapausing           12.14.2016
## 1293                  non-diapausing           12.14.2016
## 1294                  non-diapausing           12.14.2016
## 1295                  non-diapausing           12.14.2016
## 1296                  non-diapausing           12.14.2016
## 1297                  non-diapausing           12.14.2016
## 1298                  non-diapausing           12.14.2016
## 1299                  non-diapausing           12.14.2016
## 1300                  non-diapausing           12.14.2016
## 1301                  non-diapausing           12.14.2016
## 1302                  non-diapausing           12.14.2016
## 1303                  non-diapausing           12.14.2016
## 1304                  non-diapausing           12.14.2016
## 1305                  non-diapausing           12.14.2016
## 1306                  non-diapausing           12.14.2016
## 1307                  non-diapausing           12.14.2016
## 1308                  non-diapausing           12.14.2016
## 1309                  non-diapausing           12.14.2016
## 1310                  non-diapausing           12.14.2016
## 1311                  non-diapausing           12.14.2016
## 1312                  non-diapausing           12.14.2016
## 1313                  non-diapausing           12.14.2016
## 1314                  non-diapausing           12.14.2016
## 1315                  non-diapausing            8.25.2017
## 1316                  non-diapausing            8.25.2017
## 1317                  non-diapausing            8.25.2017
## 1318                  non-diapausing            8.25.2017
## 1319                  non-diapausing            8.25.2017
## 1320                  non-diapausing            8.25.2017
## 1321                  non-diapausing            8.25.2017
## 1322                  non-diapausing            8.25.2017
## 1323                  non-diapausing            8.25.2017
## 1324                  non-diapausing            8.25.2017
## 1325                  non-diapausing            8.25.2017
## 1326                  non-diapausing            8.25.2017
## 1327                  non-diapausing            8.25.2017
## 1328                  non-diapausing            8.25.2017
## 1329                  non-diapausing            8.25.2017
## 1330                  non-diapausing            8.25.2017
## 1331                  non-diapausing            8.25.2017
## 1332                  non-diapausing            8.25.2017
## 1333                  non-diapausing            8.25.2017
## 1334                  non-diapausing            8.25.2017
## 1335                  non-diapausing            8.25.2017
## 1336                  non-diapausing            8.25.2017
## 1337                  non-diapausing            8.25.2017
## 1338                  non-diapausing            8.25.2017
## 1339                  non-diapausing            8.25.2017
## 1340                  non-diapausing            8.25.2017
## 1341                  non-diapausing            8.25.2017
## 1342                  non-diapausing            8.25.2017
## 1343                  non-diapausing            8.25.2017
## 1344                  non-diapausing            8.25.2017
## 1345                  non-diapausing            8.25.2017
## 1346                  non-diapausing            8.25.2017
## 1347                  non-diapausing            8.25.2017
## 1348                  non-diapausing            8.25.2017
## 1349                  non-diapausing            8.25.2017
## 1350                  non-diapausing            8.25.2017
## 1351                  non-diapausing            8.25.2017
## 1352                  non-diapausing            8.25.2017
## 1353                  non-diapausing            8.25.2017
## 1354                  non-diapausing            8.25.2017
## 1355                  non-diapausing            8.25.2017
## 1356                  non-diapausing            8.25.2017
## 1357                  non-diapausing            8.25.2017
## 1358                  non-diapausing            8.25.2017
## 1359                  non-diapausing            8.25.2017
## 1360                  non-diapausing            8.25.2017
## 1361                  non-diapausing            8.25.2017
## 1362                  non-diapausing            8.25.2017
## 1363                  non-diapausing            8.25.2017
## 1364                  non-diapausing            8.25.2017
## 1365                  non-diapausing            8.25.2017
## 1366                  non-diapausing            8.25.2017
## 1367                  non-diapausing            8.25.2017
## 1368                  non-diapausing            8.25.2017
## 1369                  non-diapausing            8.25.2017
## 1370                  non-diapausing            8.25.2017
## 1371                  non-diapausing            8.25.2017
## 1372                  non-diapausing            8.25.2017
## 1373                  non-diapausing            8.25.2017
## 1374                  non-diapausing            8.25.2017
## 1375         diapausing aggregration           08.15.2017
## 1376         diapausing aggregration           08.15.2017
## 1377         diapausing aggregration           08.15.2017
## 1378         diapausing aggregration           08.15.2017
## 1379         diapausing aggregration           08.15.2017
## 1380         diapausing aggregration           08.15.2017
## 1381         diapausing aggregration           08.15.2017
## 1382         diapausing aggregration           08.15.2017
## 1383         diapausing aggregration           08.15.2017
## 1384         diapausing aggregration           08.15.2017
## 1385         diapausing aggregration           08.15.2017
## 1386         diapausing aggregration           08.15.2017
## 1387         diapausing aggregration           08.15.2017
## 1388         diapausing aggregration           08.15.2017
## 1389         diapausing aggregration           08.15.2017
## 1390         diapausing aggregration           08.15.2017
## 1391         diapausing aggregration           08.15.2017
## 1392         diapausing aggregration           08.15.2017
## 1393         diapausing aggregration           08.15.2017
## 1394         diapausing aggregration           08.15.2017
## 1395         diapausing aggregration           08.15.2017
## 1396         diapausing aggregration           08.15.2017
## 1397         diapausing aggregration           08.15.2017
## 1398         diapausing aggregration           08.15.2017
## 1399         diapausing aggregration           08.15.2017
## 1400         diapausing aggregration           08.15.2017
## 1401         diapausing aggregration           08.15.2017
## 1402         diapausing aggregration           08.15.2017
## 1403         diapausing aggregration           08.15.2017
## 1404         diapausing aggregration           08.15.2017
## 1405         diapausing aggregration           08.15.2017
## 1406         diapausing aggregration           08.15.2017
## 1407         diapausing aggregration           08.15.2017
## 1408         diapausing aggregration           08.15.2017
## 1409         diapausing aggregration           08.15.2017
## 1410         diapausing aggregration           08.15.2017
## 1411         diapausing aggregration           08.15.2017
## 1412         diapausing aggregration           08.15.2017
## 1413         diapausing aggregration           08.15.2017
## 1414         diapausing aggregration           08.15.2017
## 1415         diapausing aggregration           08.15.2017
## 1416         diapausing aggregration           08.15.2017
## 1417         diapausing aggregration           08.15.2017
## 1418         diapausing aggregration           08.15.2017
## 1419         diapausing aggregration           08.15.2017
## 1420         diapausing aggregration           08.15.2017
## 1421         diapausing aggregration           08.15.2017
## 1422         diapausing aggregration           08.15.2017
## 1423         diapausing aggregration           08.15.2017
## 1424         diapausing aggregration           08.15.2017
## 1425         diapausing aggregration           08.15.2017
## 1426         diapausing aggregration           08.15.2017
## 1427         diapausing aggregration           08.15.2017
## 1428         diapausing aggregration           08.15.2017
## 1429         diapausing aggregration           08.15.2017
## 1430         diapausing aggregration           08.15.2017
## 1431         diapausing aggregration           08.15.2017
## 1432         diapausing aggregration           08.15.2017
## 1433         diapausing aggregration           08.15.2017
## 1434         diapausing aggregration           08.15.2017
## 1435         diapausing aggregration           08.15.2017
## 1436         diapausing aggregration           08.15.2017
## 1437         diapausing aggregration           08.15.2017
## 1438         diapausing aggregration           08.15.2017
## 1439         diapausing aggregration           08.15.2017
## 1440         diapausing aggregration           08.15.2017
## 1441         diapausing aggregration           08.15.2017
## 1442         diapausing aggregration           08.15.2017
## 1443         diapausing aggregration           08.15.2017
## 1444         diapausing aggregration           08.15.2017
## 1445         diapausing aggregration           08.15.2017
## 1446         diapausing aggregration           08.15.2017
## 1447         diapausing aggregration           08.15.2017
## 1448         diapausing aggregration           08.15.2017
## 1449         diapausing aggregration           08.15.2017
## 1450         diapausing aggregration           08.15.2017
## 1451         diapausing aggregration           08.15.2017
## 1452         diapausing aggregration           08.15.2017
## 1453         diapausing aggregration           08.15.2017
## 1454         diapausing aggregration           08.15.2017
## 1455         diapausing aggregration           08.15.2017
## 1456         diapausing aggregration           08.15.2017
## 1457         diapausing aggregration           08.15.2017
## 1458         diapausing aggregration           08.15.2017
## 1459         diapausing aggregration           08.15.2017
## 1460         diapausing aggregration           08.15.2017
## 1461         diapausing aggregration           08.15.2017
## 1462         diapausing aggregration           08.15.2017
## 1463         diapausing aggregration           08.15.2017
## 1464         diapausing aggregration           08.15.2017
## 1465         diapausing aggregration           08.15.2017
## 1466         diapausing aggregration           08.15.2017
## 1467         diapausing aggregration           08.15.2017
## 1468         diapausing aggregration           08.15.2017
## 1469         diapausing aggregration           08.15.2017
## 1470         diapausing aggregration           08.15.2017
## 1471         diapausing aggregration           08.15.2017
## 1472         diapausing aggregration           08.15.2017
## 1473         diapausing aggregration           08.15.2017
## 1474         diapausing aggregration           08.15.2017
## 1475         diapausing aggregration           08.15.2017
## 1476         diapausing aggregration           08.15.2017
## 1477         diapausing aggregration           08.15.2017
## 1478         diapausing aggregration           08.15.2017
## 1479         diapausing aggregration           08.15.2017
## 1480         diapausing aggregration           08.15.2017
## 1481         diapausing aggregration           08.15.2017
## 1482         diapausing aggregration           08.15.2017
## 1483         diapausing aggregration           08.15.2017
## 1484         diapausing aggregration           08.15.2017
## 1485         diapausing aggregration           08.15.2017
## 1486         diapausing aggregration           08.15.2017
## 1487         diapausing aggregration           08.15.2017
## 1488         diapausing aggregration           08.15.2017
## 1489         diapausing aggregration           08.15.2017
## 1490         diapausing aggregration           08.15.2017
## 1491         diapausing aggregration           08.15.2017
## 1492         diapausing aggregration           08.15.2017
## 1493         diapausing aggregration           08.15.2017
## 1494         diapausing aggregration           08.15.2017
## 1495         diapausing aggregration           08.15.2017
## 1496         diapausing aggregration           08.15.2017
## 1497         diapausing aggregration           08.15.2017
## 1498         diapausing aggregration           08.15.2017
## 1499         diapausing aggregration           08.15.2017
## 1500         diapausing aggregration           08.15.2017
## 1501         diapausing aggregration           08.15.2017
## 1502                                           08.17.2017
## 1503                                           08.17.2017
## 1504                                           08.17.2017
## 1505                                           08.17.2017
## 1506                                           08.17.2017
## 1507                                           08.17.2017
## 1508                                           08.17.2017
## 1509                                           08.17.2017
## 1510                                           08.17.2017
## 1511                                           08.17.2017
## 1512                                           08.17.2017
## 1513                                           08.17.2017
## 1514                                           08.17.2017
## 1515                                           08.17.2017
## 1516                                           08.17.2017
## 1517                                           08.17.2017
## 1518                                           08.17.2017
## 1519                                           08.16.2017
## 1520                                           08.16.2017
## 1521                                           08.16.2017
## 1522                                           08.16.2017
## 1523                      wings torn           08.16.2017
## 1524                                           08.16.2017
## 1525                                           08.16.2017
## 1526                                           08.16.2017
## 1527                                           08.16.2017
## 1528                                           08.16.2017
## 1529                                           08.16.2017
## 1530                                           08.16.2017
## 1531                                           08.16.2017
## 1532                                           08.16.2017
## 1533                      wings torn           08.16.2017
## 1534                      wings torn           08.16.2017
## 1535                                           08.16.2017
## 1536                                           08.16.2017
## 1537                                           08.17.2017
## 1538                          marked           08.17.2017
## 1539                                           08.17.2017
## 1540                          marked           08.17.2017
## 1541                                           08.17.2017
## 1542                                           08.17.2017
## 1543                                           08.17.2017
## 1544                                           08.17.2017
## 1545                                           08.17.2017
## 1546                                           08.17.2017
## 1547                          marked           08.17.2017
## 1548                                           08.17.2017
## 1549                                           08.17.2017
## 1550                                           08.17.2017
## 1551                                           08.17.2017
## 1552                                           08.17.2017
## 1553                                           08.17.2017
## 1554                                           08.17.2017
## 1555                                           08.17.2017
## 1556                                           08.17.2017
## 1557                          marked           08.17.2017
## 1558                          marked           08.17.2017
## 1559                          marked           08.17.2017
## 1560                                           08.17.2017
## 1561                                           08.17.2017
## 1562                          marked           08.17.2017
## 1563                                           08.17.2017
## 1564                                           08.17.2017
## 1565                                           08.17.2017
## 1566                                           08.17.2017
## 1567                          marked           08.17.2017
## 1568                       tips torn           08.17.2017
## 1569                          marked           08.17.2017
## 1570                       tips torn           08.17.2017
## 1571                          marked           08.17.2017
## 1572                          marked           08.17.2017
## 1573                          marked           08.17.2017
## 1574                          marked           08.16.2017
## 1575                                           08.16.2017
## 1576                                           08.16.2017
## 1577                       tips torn           08.16.2017
## 1578                       tips torn           08.16.2017
## 1579                       tips torn           08.16.2017
## 1580                                           08.16.2017
## 1581                          marked           08.16.2017
## 1582                          marked           08.16.2017
## 1583                       tips torn           08.16.2017
## 1584                       tips torn           08.16.2017
## 1585                                           08.16.2017
## 1586                                           08.16.2017
## 1587                                           08.16.2017
## 1588                                           08.16.2017
## 1589                                           08.16.2017
## 1590                                           08.16.2017
## 1591               tips torn; marked           08.16.2017
## 1592                       tips torn           08.16.2017
## 1593                          marked           08.16.2017
## 1594         diapausing aggregration           08.23.2017
## 1595         diapausing aggregration           08.23.2017
## 1596         diapausing aggregration           08.23.2017
## 1597         diapausing aggregration           08.23.2017
## 1598         diapausing aggregration           08.23.2017
## 1599         diapausing aggregration           08.23.2017
## 1600         diapausing aggregration           08.23.2017
## 1601         diapausing aggregration           08.23.2017
## 1602         diapausing aggregration           08.23.2017
## 1603         diapausing aggregration           08.23.2017
## 1604         diapausing aggregration           08.23.2017
## 1605         diapausing aggregration           08.23.2017
## 1606         diapausing aggregration           08.23.2017
## 1607         diapausing aggregration           08.23.2017
## 1608         diapausing aggregration           08.23.2017
## 1609         diapausing aggregration           08.23.2017
## 1610         diapausing aggregration           08.23.2017
## 1611         diapausing aggregration           08.23.2017
## 1612         diapausing aggregration           08.23.2017
## 1613         diapausing aggregration           08.23.2017
## 1614         diapausing aggregration           08.23.2017
## 1615         diapausing aggregration           08.23.2017
## 1616         diapausing aggregration           08.23.2017
## 1617         diapausing aggregration           08.23.2017
## 1618         diapausing aggregration           08.23.2017
## 1619         diapausing aggregration           08.23.2017
## 1620         diapausing aggregration           08.23.2017
## 1621         diapausing aggregration           08.23.2017
## 1622         diapausing aggregration           08.23.2017
## 1623         diapausing aggregration           08.23.2017
## 1624         diapausing aggregration           08.23.2017
## 1625         diapausing aggregration           08.23.2017
## 1626                  non-diapausing            8.23.2017
## 1627                  non-diapausing            8.23.2017
## 1628                  non-diapausing            8.23.2017
## 1629                  non-diapausing            8.23.2017
## 1630                  non-diapausing            8.23.2017
## 1631                  non-diapausing            8.23.2017
## 1632                  non-diapausing            8.23.2017
## 1633                  non-diapausing            8.23.2017
## 1634                  non-diapausing            8.23.2017
## 1635                  non-diapausing            8.23.2017
## 1636                  non-diapausing            8.23.2017
## 1637                  non-diapausing            8.23.2017
## 1638                  non-diapausing            8.23.2017
## 1639                  non-diapausing            8.23.2017
## 1640                  non-diapausing            8.23.2017
## 1641                  non-diapausing            8.23.2017
## 1642                  non-diapausing            8.23.2017
## 1643                  non-diapausing            8.23.2017
## 1644                  non-diapausing            8.23.2017
## 1645                  non-diapausing            8.23.2017
## 1646                  non-diapausing            8.23.2017
## 1647                  non-diapausing            8.23.2017
## 1648                  non-diapausing            8.23.2017
## 1649                  non-diapausing            8.23.2017
## 1650                  non-diapausing            8.23.2017
## 1651                  non-diapausing            8.23.2017
## 1652                  non-diapausing            8.23.2017
## 1653                  non-diapausing            8.23.2017
## 1654                  non-diapausing            8.23.2017
## 1655                  non-diapausing            8.23.2017
## 1656                  non-diapausing            8.23.2017
## 1657                  non-diapausing            8.23.2017
## 1658                  non-diapausing            8.23.2017
## 1659                  non-diapausing            8.23.2017
## 1660                  non-diapausing            8.23.2017
## 1661                  non-diapausing            8.23.2017
## 1662                  non-diapausing            8.23.2017
## 1663                  non-diapausing            8.23.2017
## 1664                  non-diapausing            8.23.2017
## 1665                  non-diapausing            8.23.2017
## 1666                  non-diapausing            8.23.2017
## 1667                  non-diapausing            8.23.2017
## 1668                  non-diapausing            8.23.2017
## 1669                  non-diapausing            8.23.2017
## 1670                  non-diapausing            8.23.2017
## 1671                  non-diapausing            8.23.2017
## 1672                  non-diapausing            8.23.2017
## 1673                  non-diapausing            8.23.2017
## 1674                  non-diapausing            8.23.2017
## 1675                  non-diapausing            8.23.2017
## 1676                  non-diapausing            8.23.2017
## 1677                  non-diapausing            8.23.2017
## 1678                  non-diapausing            8.23.2017
## 1679                  non-diapausing            8.23.2017
## 1680                  non-diapausing            8.23.2017
## 1681                  non-diapausing            8.23.2017
## 1682                  non-diapausing            8.23.2017
## 1683                  non-diapausing            8.23.2017
## 1684                  non-diapausing            8.23.2017
## 1685                  non-diapausing           08.24.2017
## 1686                  non-diapausing           08.24.2017
## 1687                  non-diapausing           08.24.2017
## 1688                  non-diapausing           08.24.2017
## 1689                  non-diapausing           08.24.2017
## 1690                  non-diapausing           08.24.2017
## 1691                  non-diapausing           08.24.2017
## 1692                  non-diapausing           08.24.2017
## 1693                  non-diapausing           08.24.2017
## 1694                  non-diapausing           08.24.2017
## 1695                  non-diapausing           08.24.2017
## 1696                  non-diapausing           08.24.2017
## 1697                  non-diapausing           08.24.2017
## 1698                  non-diapausing           08.24.2017
## 1699                  non-diapausing           08.24.2017
## 1700                  non-diapausing           08.24.2017
## 1701                  non-diapausing           08.24.2017
## 1702                  non-diapausing           08.24.2017
## 1703                  non-diapausing           08.24.2017
## 1704                  non-diapausing           08.24.2017
## 1705                  non-diapausing           08.24.2017
## 1706                  non-diapausing           08.24.2017
## 1707                  non-diapausing           08.24.2017
## 1708                  non-diapausing           08.24.2017
## 1709                  non-diapausing           08.24.2017
## 1710                  non-diapausing           08.24.2017
## 1711                  non-diapausing           08.24.2017
## 1712                  non-diapausing           08.24.2017
## 1713                  non-diapausing           08.24.2017
## 1714                  non-diapausing           08.24.2017
## 1715                  non-diapausing           08.24.2017
## 1716                  non-diapausing           08.24.2017
## 1717                  non-diapausing           08.24.2017
## 1718                  non-diapausing           08.24.2017
## 1719                  non-diapausing           08.24.2017
## 1720                  non-diapausing           08.24.2017
## 1721                  non-diapausing           08.24.2017
## 1722                  non-diapausing           08.24.2017
## 1723                  non-diapausing           08.24.2017
## 1724                  non-diapausing           08.24.2017
## 1725                  non-diapausing           08.24.2017
## 1726                  non-diapausing           08.24.2017
## 1727                  non-diapausing           08.24.2017
## 1728                  non-diapausing           08.24.2017
## 1729                  non-diapausing           08.24.2017
## 1730                  non-diapausing           08.24.2017
## 1731                  non-diapausing           08.24.2017
## 1732                  non-diapausing           08.24.2017
## 1733                  non-diapausing           08.24.2017
## 1734                  non-diapausing           08.24.2017
## 1735                  non-diapausing           08.24.2017
## 1736                  non-diapausing           08.24.2017
## 1737                  non-diapausing           08.24.2017
## 1738                  non-diapausing           08.24.2017
## 1739                  non-diapausing           08.24.2017
## 1740                  non-diapausing           08.24.2017
## 1741                  non-diapausing           08.24.2017
## 1742                  non-diapausing           08.24.2017
## 1743                  non-diapausing           09.23.2018
## 1744                  non-diapausing           09.23.2018
## 1745                  non-diapausing           09.23.2018
## 1746                  non-diapausing           09.23.2018
## 1747                  non-diapausing           09.23.2018
## 1748                  non-diapausing           09.23.2018
## 1749                  non-diapausing           09.23.2018
## 1750                  non-diapausing           09.23.2018
## 1751                  non-diapausing           09.23.2018
## 1752                  non-diapausing           09.23.2018
## 1753                  non-diapausing           09.23.2018
## 1754                  non-diapausing           09.23.2018
## 1755                  non-diapausing           09.23.2018
## 1756                  non-diapausing           09.23.2018
## 1757                  non-diapausing           09.23.2018
## 1758                  non-diapausing           09.23.2018
## 1759                  non-diapausing           09.23.2018
## 1760                  non-diapausing           09.23.2018
## 1761                  non-diapausing           09.23.2018
## 1762                  non-diapausing           09.23.2018
## 1763                  non-diapausing           09.23.2018
## 1764                  non-diapausing           09.23.2018
## 1765                  non-diapausing           09.23.2018
## 1766                  non-diapausing           09.23.2018
## 1767                  non-diapausing           09.23.2018
## 1768                  non-diapausing           09.23.2018
## 1769                  non-diapausing           09.23.2018
## 1770                  non-diapausing           09.23.2018
## 1771                  non-diapausing           09.23.2018
## 1772                  non-diapausing           09.23.2018
## 1773                  non-diapausing           09.23.2018
## 1774                  non-diapausing           09.23.2018
## 1775                  non-diapausing           09.23.2018
## 1776                  non-diapausing           09.23.2018
## 1777                  non-diapausing           09.23.2018
## 1778                  non-diapausing           09.23.2018
## 1779                  non-diapausing           09.23.2018
## 1780                  non-diapausing           09.23.2018
## 1781                  non-diapausing           09.23.2018
## 1782                  non-diapausing           09.23.2018
## 1783                  non-diapausing           09.23.2018
## 1784                  non-diapausing           09.23.2018
## 1785                  non-diapausing           09.23.2018
## 1786                  non-diapausing           09.23.2018
## 1787                  non-diapausing           09.23.2018
## 1788                  non-diapausing           09.23.2018
## 1789                  non-diapausing           09.23.2018
## 1790                  non-diapausing           09.23.2018
## 1791                  non-diapausing           09.23.2018
## 1792                  non-diapausing           09.23.2018
## 1793                  non-diapausing           09.23.2018
## 1794                  non-diapausing           09.23.2018
## 1795                  non-diapausing           09.23.2018
## 1796                  non-diapausing           09.23.2018
## 1797                  non-diapausing           09.23.2018
## 1798                  non-diapausing           09.23.2018
## 1799                  non-diapausing           09.23.2018
## 1800                  non-diapausing           09.23.2018
## 1801                  non-diapausing           09.23.2018
## 1802                  non-diapausing           09.23.2018
## 1803                  non-diapausing           09.23.2018
## 1804                  non-diapausing           09.23.2018
## 1805                  non-diapausing           09.23.2018
## 1806                  non-diapausing           09.23.2018
## 1807                  non-diapausing           09.26.2018
## 1808                  non-diapausing           09.26.2018
## 1809                  non-diapausing           09.26.2018
## 1810                  non-diapausing           09.26.2018
## 1811                  non-diapausing           09.26.2018
## 1812                  non-diapausing           09.26.2018
## 1813                  non-diapausing           09.26.2018
## 1814                  non-diapausing           09.26.2018
## 1815                  non-diapausing           09.26.2018
## 1816                  non-diapausing           09.26.2018
## 1817                  non-diapausing           09.26.2018
## 1818                  non-diapausing           09.26.2018
## 1819                  non-diapausing           09.26.2018
## 1820                  non-diapausing           09.26.2018
## 1821                  non-diapausing           09.26.2018
## 1822                  non-diapausing           09.26.2018
## 1823                  non-diapausing           09.26.2018
## 1824                  non-diapausing           09.26.2018
## 1825                  non-diapausing           09.26.2018
## 1826                  non-diapausing           09.26.2018
## 1827                  non-diapausing           09.26.2018
## 1828                  non-diapausing           09.26.2018
## 1829                  non-diapausing           09.26.2018
## 1830                  non-diapausing           09.26.2018
## 1831                  non-diapausing           09.26.2018
## 1832                  non-diapausing           09.26.2018
## 1833                  non-diapausing           09.26.2018
## 1834                  non-diapausing           09.26.2018
## 1835                  non-diapausing           09.26.2018
## 1836                  non-diapausing           09.26.2018
## 1837                  non-diapausing           09.26.2018
## 1838                  non-diapausing           09.26.2018
## 1839                  non-diapausing           09.26.2018
## 1840                  non-diapausing           09.26.2018
## 1841                  non-diapausing           09.26.2018
## 1842                  non-diapausing           09.26.2018
## 1843                  non-diapausing           09.26.2018
## 1844                  non-diapausing           09.26.2018
## 1845                  non-diapausing           09.26.2018
## 1846                  non-diapausing           09.26.2018
## 1847                  non-diapausing           09.26.2018
## 1848                  non-diapausing           09.26.2018
## 1849                  non-diapausing           09.26.2018
## 1850                  non-diapausing           09.26.2018
## 1851                  non-diapausing           09.26.2018
## 1852                  non-diapausing           09.26.2018
## 1853                  non-diapausing           09.26.2018
## 1854                  non-diapausing           09.26.2018
## 1855                  non-diapausing           09.26.2018
## 1856                  non-diapausing           09.26.2018
## 1857                  non-diapausing           09.26.2018
## 1858                  non-diapausing           09.26.2018
## 1859                  non-diapausing           09.26.2018
## 1860                  non-diapausing           09.26.2018
## 1861                  non-diapausing           09.26.2018
## 1862                  non-diapausing           09.26.2018
## 1863                  non-diapausing           09.26.2018
## 1864                  non-diapausing           09.26.2018
## 1865                  non-diapausing           09.26.2018
## 1866                  non-diapausing           09.26.2018
## 1867                  non-diapausing           09.26.2018
## 1868                  non-diapausing           09.26.2018
## 1869                  non-diapausing           09.26.2018
## 1870                  non-diapausing           09.26.2018
## 1871                  non-diapausing           09.26.2018
## 1872                  non-diapausing           09.26.2018
## 1873                  non-diapausing           09.26.2018
## 1874                  non-diapausing           09.26.2018
## 1875                  non-diapausing           09.28.2018
## 1876                  non-diapausing           09.28.2018
## 1877                  non-diapausing           09.28.2018
## 1878                  non-diapausing           09.28.2018
## 1879                  non-diapausing           09.28.2018
## 1880                  non-diapausing           09.28.2018
## 1881                  non-diapausing           09.28.2018
## 1882                  non-diapausing           09.28.2018
## 1883                  non-diapausing           09.28.2018
## 1884                  non-diapausing           09.28.2018
## 1885                  non-diapausing           09.28.2018
## 1886                  non-diapausing           09.28.2018
## 1887                  non-diapausing           09.28.2018
## 1888                  non-diapausing           09.28.2018
## 1889                  non-diapausing           09.28.2018
## 1890                  non-diapausing           09.28.2018
## 1891                  non-diapausing           09.28.2018
## 1892                  non-diapausing           09.28.2018
## 1893                  non-diapausing           09.28.2018
## 1894                  non-diapausing           09.28.2018
## 1895                  non-diapausing           09.28.2018
## 1896                  non-diapausing           09.28.2018
## 1897                  non-diapausing           09.28.2018
## 1898                  non-diapausing           09.28.2018
## 1899                  non-diapausing           09.28.2018
## 1900                  non-diapausing           09.28.2018
## 1901                  non-diapausing           09.28.2018
## 1902                  non-diapausing           09.28.2018
## 1903                  non-diapausing           09.28.2018
## 1904                  non-diapausing           09.28.2018
## 1905                  non-diapausing           09.28.2018
## 1906                  non-diapausing           09.28.2018
## 1907                  non-diapausing           09.28.2018
## 1908                  non-diapausing           09.28.2018
## 1909                  non-diapausing           09.28.2018
## 1910                  non-diapausing           09.28.2018
## 1911                  non-diapausing           09.28.2018
## 1912                  non-diapausing           09.28.2018
## 1913                  non-diapausing           09.28.2018
## 1914                  non-diapausing           09.28.2018
## 1915                  non-diapausing           09.28.2018
## 1916                  non-diapausing            5.22.2019
## 1917                  non-diapausing            5.22.2019
## 1918                  non-diapausing            5.22.2019
## 1919                  non-diapausing            5.22.2019
## 1920                  non-diapausing            5.22.2019
## 1921                  non-diapausing            5.22.2019
## 1922                  non-diapausing            5.22.2019
## 1923                  non-diapausing            5.22.2019
## 1924                  non-diapausing            5.22.2019
## 1925                                           05.22.2019
## 1926                                           05.22.2019
## 1927                                           05.22.2019
## 1928                                           05.22.2019
## 1929                                           05.22.2019
## 1930                                           05.22.2019
## 1931                                           05.22.2019
## 1932                                           05.22.2019
## 1933                                           05.22.2019
## 1934                                           05.22.2019
## 1935                                           05.22.2019
## 1936                                           05.22.2019
## 1937                                           05.22.2019
## 1938                                           05.22.2019
## 1939                                           05.22.2019
## 1940                                           05.22.2019
## 1941                                           05.22.2019
## 1942                                           05.22.2019
## 1943                                           05.22.2019
## 1944                                           05.22.2019
## 1945                                           05.22.2019
## 1946                                           05.22.2019
## 1947                                           05.22.2019
## 1948                                           05.22.2019
## 1949                                           05.22.2019
## 1950                                           05.22.2019
## 1951                                           05.22.2019
## 1952                                           05.22.2019
## 1953                                           05.22.2019
## 1954                                           05.22.2019
## 1955                                           05.22.2019
## 1956                                           05.22.2019
## 1957                                           05.22.2019
## 1958                                           05.22.2019
## 1959                                           05.22.2019
## 1960                                           05.22.2019
## 1961                                           05.22.2019
## 1962                                           05.22.2019
## 1963                                           05.22.2019
## 1964                                           05.22.2019
## 1965                  non-diapausing           05.17.2019
## 1966                  non-diapausing           05.17.2019
## 1967                  non-diapausing           05.17.2019
## 1968                  non-diapausing           05.17.2019
## 1969                  non-diapausing           05.17.2019
## 1970                  non-diapausing           05.17.2019
## 1971                  non-diapausing           05.17.2019
## 1972                  non-diapausing           05.17.2019
## 1973                  non-diapausing           05.17.2019
## 1974                  non-diapausing           05.17.2019
## 1975                  non-diapausing           05.17.2019
## 1976                  non-diapausing           05.17.2019
## 1977                  non-diapausing           05.17.2019
## 1978                  non-diapausing           05.17.2019
## 1979                  non-diapausing           05.17.2019
## 1980                  non-diapausing           05.17.2019
## 1981                  non-diapausing           05.17.2019
## 1982                  non-diapausing           05.17.2019
## 1983                  non-diapausing             5.6.2019
## 1984                  non-diapausing             5.6.2019
## 1985                  non-diapausing             5.6.2019
## 1986                  non-diapausing             5.6.2019
## 1987                  non-diapausing             5.6.2019
## 1988                  non-diapausing             5.6.2019
## 1989                  non-diapausing             5.6.2019
## 1990                  non-diapausing             5.6.2019
## 1991                  non-diapausing             5.6.2019
## 1992                  non-diapausing             5.6.2019
## 1993                  non-diapausing             5.6.2019
## 1994                  non-diapausing             5.6.2019
## 1995                  non-diapausing             5.6.2019
## 1996                  non-diapausing             5.6.2019
## 1997                  non-diapausing             5.6.2019
## 1998                  non-diapausing             5.6.2019
## 1999                  non-diapausing             5.6.2019
## 2000                  non-diapausing             5.6.2019
## 2001                  non-diapausing             5.6.2019
## 2002                  non-diapausing             5.6.2019
## 2003                  non-diapausing             5.6.2019
## 2004                  non-diapausing             5.6.2019
## 2005                  non-diapausing             5.6.2019
## 2006                  non-diapausing             5.6.2019
## 2007                  non-diapausing             5.6.2019
## 2008                  non-diapausing             5.6.2019
## 2009                  non-diapausing             5.6.2019
## 2010                  non-diapausing             5.6.2019
## 2011                  non-diapausing             5.6.2019
## 2012                  non-diapausing             5.6.2019
## 2013                  non-diapausing             5.6.2019
## 2014                  non-diapausing             5.6.2019
## 2015                  non-diapausing             5.6.2019
## 2016                  non-diapausing             5.6.2019
## 2017                  non-diapausing             5.6.2019
## 2018                  non-diapausing             5.6.2019
## 2019                  non-diapausing             5.6.2019
## 2020                  non-diapausing             5.6.2019
## 2021                  non-diapausing             5.6.2019
## 2022                  non-diapausing             5.6.2019
## 2023                  non-diapausing             5.6.2019
## 2024                  non-diapausing             5.6.2019
## 2025                  non-diapausing             5.6.2019
## 2026                  non-diapausing             5.6.2019
## 2027                  non-diapausing             5.6.2019
## 2028                  non-diapausing             5.6.2019
## 2029                  non-diapausing             5.6.2019
## 2030                  non-diapausing             5.6.2019
## 2031                  non-diapausing             5.6.2019
## 2032                  non-diapausing             5.6.2019
## 2033                  non-diapausing             5.6.2019
## 2034                  non-diapausing             5.6.2019
## 2035                  non-diapausing             5.6.2019
## 2036                  non-diapausing             5.6.2019
## 2037                  non-diapausing             5.6.2019
## 2038                  non-diapausing             5.6.2019
## 2039                  non-diapausing             5.6.2019
## 2040                  non-diapausing             5.6.2019
## 2041                  non-diapausing             5.6.2019
## 2042                  non-diapausing             5.6.2019
## 2043                  non-diapausing             5.6.2019
## 2044                  non-diapausing             5.6.2019
## 2045                  non-diapausing             5.6.2019
## 2046                  non-diapausing             5.6.2019
## 2047                  non-diapausing             5.6.2019
## 2048                  non-diapausing             5.6.2019
## 2049                  non-diapausing             5.6.2019
## 2050                  non-diapausing             5.6.2019
## 2051                  non-diapausing             5.6.2019
## 2052                  non-diapausing             5.6.2019
## 2053                  non-diapausing             5.6.2019
## 2054                  non-diapausing             5.6.2019
## 2055                  non-diapausing             5.6.2019
## 2056                  non-diapausing             5.6.2019
## 2057                  non-diapausing             5.6.2019
## 2058                  non-diapausing             5.6.2019
## 2059                      diapausing           05.19.2019
## 2060                      diapausing           05.19.2019
## 2061                      diapausing           05.19.2019
## 2062                      diapausing           05.19.2019
## 2063                      diapausing           05.19.2019
## 2064                      diapausing           05.19.2019
## 2065                      diapausing           05.19.2019
## 2066                      diapausing           05.19.2019
## 2067                      diapausing           05.19.2019
## 2068                      diapausing           05.19.2019
## 2069                      diapausing           05.19.2019
## 2070                      diapausing           05.19.2019
## 2071                      diapausing           05.19.2019
## 2072                      diapausing           05.19.2019
## 2073                      diapausing           05.19.2019
## 2074                      diapausing           05.19.2019
## 2075                      diapausing           05.19.2019
## 2076                      diapausing           05.19.2019
## 2077                      diapausing           05.19.2019
## 2078                      diapausing           05.19.2019
## 2079                      diapausing           05.19.2019
## 2080                      diapausing           05.19.2019
## 2081                      diapausing           05.19.2019
## 2082                      diapausing           05.19.2019
## 2083                      diapausing           05.19.2019
## 2084                      diapausing           05.19.2019
## 2085                      diapausing           05.19.2019
## 2086                      diapausing           05.19.2019
## 2087                      diapausing           05.19.2019
## 2088                      diapausing           05.19.2019
## 2089                      diapausing           05.19.2019
## 2090                      diapausing           05.19.2019
## 2091                      diapausing           05.19.2019
## 2092                      diapausing           05.19.2019
## 2093                      diapausing           05.19.2019
## 2094                      diapausing           05.19.2019
## 2095                      diapausing           05.19.2019
## 2096                      diapausing           05.19.2019
## 2097                      diapausing           05.19.2019
## 2098                      diapausing           05.19.2019
## 2099                      diapausing           05.19.2019
## 2100                      diapausing           05.19.2019
## 2101                      diapausing           05.19.2019
## 2102                      diapausing           05.19.2019
## 2103                      diapausing           05.19.2019
## 2104                      diapausing           05.19.2019
## 2105                      diapausing           05.19.2019
## 2106                      diapausing           05.19.2019
## 2107                      diapausing           05.19.2019
## 2108                      diapausing           05.19.2019
## 2109                      diapausing           05.19.2019
## 2110                      diapausing           05.19.2019
## 2111                      diapausing           05.19.2019
## 2112                      diapausing           05.19.2019
## 2113                      diapausing           05.19.2019
## 2114                      diapausing           05.19.2019
## 2115                      diapausing           05.19.2019
## 2116                      diapausing           05.19.2019
## 2117                      diapausing           05.19.2019
## 2118                      diapausing           05.19.2019
## 2119                      diapausing           05.19.2019
## 2120                      diapausing           05.19.2019
## 2121                                           05.13.2019
## 2122                                           05.13.2019
## 2123                                           05.13.2019
## 2124                                           05.13.2019
## 2125                                           05.13.2019
## 2126                                           05.13.2019
## 2127                                           05.13.2019
## 2128                                           05.13.2019
## 2129                                           05.13.2019
## 2130                                           05.13.2019
## 2131                                           05.13.2019
## 2132                                           05.13.2019
## 2133                                           05.13.2019
## 2134                                           05.13.2019
## 2135                                           05.13.2019
## 2136                                           05.13.2019
## 2137                                           05.13.2019
## 2138                                           05.13.2019
## 2139                                           05.13.2019
## 2140                                           05.13.2019
## 2141                                           05.13.2019
## 2142                                           05.13.2019
## 2143                                           05.13.2019
## 2144                                           05.13.2019
## 2145                                           05.13.2019
## 2146                                           05.13.2019
## 2147                                           05.13.2019
## 2148                                           05.13.2019
## 2149                                           05.13.2019
## 2150                                           05.13.2019
## 2151                                           05.13.2019
## 2152                                           05.13.2019
## 2153                                           05.13.2019
## 2154                                           05.13.2019
## 2155                                           05.13.2019
## 2156                                           05.13.2019
## 2157                                           05.13.2019
## 2158                                           05.13.2019
## 2159                                           05.13.2019
## 2160                                           05.13.2019
## 2161                                           05.13.2019
## 2162                                           05.13.2019
## 2163                                           05.13.2019
## 2164                                           05.13.2019
## 2165                                           05.13.2019
## 2166                                           05.13.2019
## 2167                                           05.13.2019
## 2168                                           05.13.2019
## 2169                                           05.13.2019
## 2170                                           05.13.2019
## 2171                                           05.13.2019
## 2172                                           05.13.2019
## 2173                                           05.13.2019
## 2174                                           05.13.2019
## 2175                                           05.13.2019
## 2176                                           05.13.2019
## 2177                                           05.13.2019
## 2178                                           05.13.2019
## 2179                                           05.13.2019
## 2180                                           05.13.2019
## 2181                                           05.13.2019
## 2182                                           05.13.2019
## 2183                                           05.13.2019
## 2184                                           05.13.2019
## 2185                                           05.13.2019
## 2186                                           05.13.2019
## 2187                                           05.13.2019
## 2188                                           05.13.2019
## 2189                                           05.13.2019
## 2190                                           05.13.2019
## 2191                                           05.13.2019
## 2192                                           05.13.2019
## 2193                                           05.13.2019
## 2194                                           05.13.2019
## 2195                                           05.13.2019
## 2196                                           05.13.2019
## 2197                                           05.13.2019
## 2198                                           05.13.2019
## 2199                                           05.13.2019
## 2200                                           05.13.2019
## 2201                                           05.13.2019
## 2202                                           05.13.2019
## 2203                                           05.13.2019
## 2204                                           05.13.2019
## 2205                                           05.13.2019
## 2206                                           05.13.2019
## 2207                                           05.13.2019
## 2208                                           05.13.2019
## 2209                                           05.13.2019
## 2210                                           05.13.2019
## 2211                                           05.13.2019
## 2212                                           05.13.2019
## 2213                                           05.13.2019
## 2214                                           05.13.2019
## 2215                                           05.13.2019
## 2216                                           05.13.2019
## 2217                                           05.13.2019
## 2218                                           05.13.2019
## 2219                                           05.13.2019
## 2220                                           05.13.2019
## 2221                                           05.13.2019
## 2222                                           05.14.2019
## 2223                                           05.14.2019
## 2224                                           05.14.2019
## 2225                                           05.14.2019
## 2226                                           05.14.2019
## 2227                                           05.14.2019
## 2228                                           05.14.2019
## 2229                                           05.14.2019
## 2230                                           05.14.2019
## 2231                                           05.06.2019
## 2232                                           05.06.2019
## 2233                                           05.06.2019
## 2234                                           05.06.2019
## 2235                                           05.06.2019
## 2236                                           05.06.2019
## 2237                                           05.06.2019
## 2238                                           05.06.2019
## 2239                                           05.06.2019
## 2240                                           05.06.2019
## 2241                                           05.06.2019
## 2242                                           05.06.2019
## 2243                                           05.06.2019
## 2244                                           05.06.2019
## 2245                                           05.06.2019
## 2246                                           05.06.2019
## 2247                                           05.06.2019
## 2248                                           05.06.2019
## 2249                                           05.06.2019
## 2250                                           05.06.2019
## 2251                                           05.06.2019
## 2252                                           05.06.2019
## 2253                                           05.06.2019
## 2254                                           05.06.2019
## 2255                                           05.06.2019
## 2256                                           05.06.2019
## 2257                                           05.06.2019
## 2258                                           05.06.2019
## 2259                                           05.06.2019
## 2260                                           05.06.2019
## 2261                                           05.06.2019
## 2262                                           05.06.2019
## 2263                                           05.06.2019
## 2264                                           05.06.2019
## 2265                                           05.06.2019
## 2266                                           05.06.2019
## 2267                                           05.06.2019
## 2268                                           05.06.2019
## 2269                                           05.06.2019
## 2270                                           05.06.2019
## 2271                                           05.06.2019
## 2272                                           05.06.2019
## 2273                                           05.06.2019
## 2274                                           05.06.2019
## 2275                                           05.06.2019
## 2276                                           05.06.2019
## 2277                                           05.06.2019
## 2278                                           05.06.2019
## 2279                                           05.06.2019
## 2280                                           05.06.2019
## 2281                                           05.06.2019
## 2282                                           05.06.2019
## 2283                                           05.06.2019
## 2284                                           05.06.2019
## 2285                                           05.06.2019
## 2286                                           05.06.2019
## 2287                                           05.06.2019
## 2288                                           05.06.2019
## 2289                                           05.06.2019
## 2290                                           05.06.2019
## 2291                                           05.06.2019
## 2292                                           05.06.2019
## 2293                                           05.06.2019
## 2294                                           05.06.2019
## 2295                                           05.06.2019
## 2296                                           05.06.2019
## 2297                                           05.06.2019
## 2298                                           05.06.2019
## 2299                                           05.06.2019
## 2300                                           05.06.2019
## 2301                                           05.06.2019
## 2302                                           05.06.2019
## 2303                                           05.06.2019
## 2304                                           05.06.2019
## 2305                                           05.06.2019
## 2306                                           05.06.2019
## 2307                                           05.06.2019
## 2308                                           05.06.2019
## 2309                                           05.06.2019
## 2310                                           05.06.2019
## 2311                                           05.06.2019
## 2312                                           05.06.2019
## 2313                                           05.06.2019
## 2314                                           05.06.2019
## 2315                                           05.06.2019
## 2316                                           05.06.2019
## 2317                                           05.06.2019
## 2318                                           05.06.2019
## 2319                                           05.06.2019
## 2320                                           05.06.2019
## 2321                                           05.06.2019
## 2322                                           05.06.2019
## 2323                                           05.06.2019
## 2324                                           05.06.2019
## 2325                                           05.06.2019
## 2326                                           05.06.2019
## 2327                                           05.06.2019
## 2328                                           05.06.2019
## 2329                                           05.06.2019
## 2330                                           05.06.2019
## 2331                                           05.06.2019
## 2332                                           05.06.2019
## 2333                                                     
## 2334                                                     
## 2335                                                     
## 2336                                                     
## 2337                                                     
## 2338                                                     
## 2339                                                     
## 2340                                                     
## 2341                                                     
## 2342                                                     
## 2343                                                     
## 2344                                                     
## 2345                                                     
## 2346                                                     
## 2347                                                     
## 2348                                                     
## 2349                                                     
## 2350                                                     
## 2351                                                     
## 2352                                                     
## 2353                                                     
## 2354                                                     
## 2355                                                     
## 2356                                                     
## 2357                                                     
## 2358                                                     
## 2359                                                     
## 2360                                                     
## 2361                                                     
## 2362                  non-diapausing            5.13.2019
## 2363                  non-diapausing            5.13.2019
## 2364                  non-diapausing            5.13.2019
## 2365                  non-diapausing            5.13.2019
## 2366                  non-diapausing            5.13.2019
## 2367                  non-diapausing            5.13.2019
## 2368                  non-diapausing            5.13.2019
## 2369                                                     
## 2370                                                     
## 2371                                                     
## 2372                                                     
## 2373                                                     
## 2374                                                     
## 2375                                                     
## 2376                                                     
## 2377                                                     
## 2378                                                     
## 2379                                                     
## 2380                                                     
## 2381                                                     
## 2382                                                     
## 2383                                                     
## 2384                                                     
## 2385                                                     
## 2386                                                     
## 2387                                                     
## 2388                                                     
## 2389                                                     
## 2390                                                     
## 2391                                                     
## 2392                                                     
## 2393                                                     
## 2394                                                     
## 2395                                                     
## 2396                                                     
## 2397                                                     
## 2398                                                     
## 2399                                                     
## 2400                                                     
## 2401                                                     
## 2402                                                     
## 2403                  non-diapausing           10.06.2019
## 2404                  non-diapausing           10.06.2019
## 2405                  non-diapausing           10.06.2019
## 2406                  non-diapausing           10.06.2019
## 2407                  non-diapausing           10.06.2019
## 2408                  non-diapausing           10.06.2019
## 2409                  non-diapausing           10.06.2019
## 2410                  non-diapausing           10.06.2019
## 2411                  non-diapausing           10.06.2019
## 2412                  non-diapausing           10.06.2019
## 2413                  non-diapausing           10.06.2019
## 2414                  non-diapausing           10.06.2019
## 2415                  non-diapausing           10.06.2019
## 2416                  non-diapausing           10.06.2019
## 2417                  non-diapausing           10.06.2019
## 2418                  non-diapausing           10.06.2019
## 2419                     diapausing?           10.04.2019
## 2420                     diapausing?           10.04.2019
## 2421                     diapausing?           10.04.2019
## 2422                     diapausing?           10.04.2019
## 2423                     diapausing?           10.04.2019
## 2424                     diapausing?           10.04.2019
## 2425                     diapausing?           10.04.2019
## 2426                     diapausing?           10.04.2019
## 2427                     diapausing?           10.04.2019
## 2428                     diapausing?           10.04.2019
## 2429                     diapausing?           10.04.2019
## 2430                     diapausing?           10.04.2019
## 2431                     diapausing?           10.04.2019
## 2432                     diapausing?           10.04.2019
## 2433                     diapausing?           10.04.2019
## 2434                     diapausing?           10.04.2019
## 2435                     diapausing?           10.04.2019
## 2436                     diapausing?           10.04.2019
## 2437                     diapausing?           10.04.2019
## 2438                     diapausing?           10.04.2019
## 2439                     diapausing?           10.04.2019
## 2440                     diapausing?           10.04.2019
## 2441                     diapausing?           10.04.2019
## 2442                     diapausing?           10.04.2019
## 2443                     diapausing?           10.04.2019
## 2444                     diapausing?           10.04.2019
## 2445                     diapausing?           10.04.2019
## 2446                     diapausing?           10.04.2019
## 2447                     diapausing?           10.04.2019
## 2448                     diapausing?           10.04.2019
## 2449                     diapausing?           10.04.2019
## 2450                     diapausing?           10.04.2019
## 2451                     diapausing?           10.04.2019
## 2452                     diapausing?           10.04.2019
## 2453                     diapausing?           10.04.2019
## 2454                  non-diapausing           10.04.2019
## 2455                  non-diapausing           10.04.2019
## 2456                  non-diapausing           10.04.2019
## 2457                  non-diapausing           10.04.2019
## 2458                  non-diapausing           10.04.2019
## 2459                  non-diapausing           10.04.2019
## 2460                  non-diapausing           10.04.2019
## 2461                  non-diapausing           10.04.2019
## 2462                  non-diapausing           10.04.2019
## 2463                  non-diapausing           10.04.2019
## 2464                  non-diapausing           10.04.2019
## 2465                  non-diapausing           10.04.2019
## 2466                  non-diapausing           10.04.2019
## 2467                  non-diapausing           10.04.2019
## 2468                  non-diapausing           10.04.2019
## 2469                  non-diapausing           10.04.2019
## 2470                      diapausing           10.05.2019
## 2471                      diapausing           10.05.2019
## 2472                      diapausing           10.05.2019
## 2473                      diapausing           10.05.2019
## 2474                      diapausing           10.05.2019
## 2475                      diapausing           10.05.2019
## 2476                      diapausing           10.05.2019
## 2477                      diapausing           10.05.2019
## 2478                      diapausing           10.05.2019
## 2479                      diapausing           10.05.2019
## 2480                      diapausing           10.05.2019
## 2481                      diapausing           10.05.2019
## 2482                      diapausing           10.05.2019
## 2483                      diapausing           10.05.2019
## 2484                      diapausing           10.05.2019
## 2485                      diapausing           10.05.2019
## 2486                      diapausing           10.05.2019
## 2487                      diapausing           10.05.2019
## 2488                      diapausing           10.05.2019
## 2489                      diapausing           10.05.2019
## 2490                      diapausing           10.05.2019
## 2491                      diapausing           10.05.2019
## 2492                      diapausing           10.05.2019
## 2493                      diapausing           10.05.2019
## 2494                      diapausing           10.05.2019
## 2495                      diapausing           10.05.2019
## 2496                      diapausing           10.05.2019
## 2497                      diapausing           10.05.2019
## 2498                      diapausing           10.05.2019
## 2499                      diapausing           10.05.2019
## 2500                      diapausing           10.05.2019
## 2501                      diapausing           10.05.2019
## 2502                      diapausing           10.05.2019
## 2503                      diapausing           10.05.2019
## 2504                      diapausing           10.05.2019
## 2505                      diapausing           10.05.2019
## 2506                      diapausing           10.05.2019
## 2507                      diapausing           10.05.2019
## 2508                      diapausing           10.05.2019
## 2509                      diapausing           10.05.2019
## 2510                      diapausing           10.05.2019
## 2511                      diapausing           10.05.2019
## 2512                      diapausing           10.05.2019
## 2513                      diapausing           10.05.2019
## 2514                      diapausing           10.05.2019
## 2515                      diapausing           10.05.2019
## 2516                      diapausing           10.05.2019
## 2517                      diapausing           10.05.2019
## 2518                      diapausing           10.05.2019
## 2519                      diapausing           10.05.2019
## 2520                      diapausing           10.05.2019
## 2521                      diapausing           10.05.2019
## 2522                      diapausing           10.05.2019
## 2523                      diapausing           10.05.2019
## 2524                      diapausing            10.5.2019
## 2525                      diapausing            10.5.2019
## 2526                      diapausing            10.5.2019
## 2527                      diapausing            10.5.2019
## 2528                      diapausing            10.5.2019
## 2529                      diapausing            10.5.2019
## 2530                      diapausing            10.5.2019
## 2531                      diapausing            10.5.2019
## 2532                      diapausing            10.5.2019
## 2533                      diapausing            10.5.2019
## 2534                      diapausing            10.5.2019
## 2535                      diapausing            10.5.2019
## 2536                  non-diapausing           10.05.2019
## 2537                  non-diapausing           10.05.2019
## 2538                  non-diapausing           10.05.2019
## 2539                  non-diapausing           10.05.2019
## 2540                  non-diapausing           10.05.2019
## 2541                  non-diapausing           10.05.2019
## 2542                  non-diapausing           10.05.2019
## 2543                  non-diapausing           10.05.2019
## 2544                  non-diapausing           10.05.2019
## 2545                  non-diapausing           10.05.2019
## 2546                  non-diapausing           10.05.2019
## 2547                  non-diapausing           10.05.2019
## 2548                         unknown           10.05.2019
## 2549                         unknown           10.05.2019
## 2550                         unknown           10.05.2019
## 2551                         unknown           10.05.2019
## 2552                         unknown           10.05.2019
## 2553                         unknown           10.05.2019
## 2554                         unknown           10.05.2019
## 2555                         unknown           10.05.2019
## 2556                         unknown           10.05.2019
## 2557                         unknown           10.05.2019
## 2558                         unknown           10.05.2019
## 2559                         unknown           10.05.2019
## 2560                         unknown           10.05.2019
## 2561                         unknown           10.05.2019
## 2562                  non-diapausing           10.03.2019
## 2563                  non-diapausing           10.03.2019
## 2564                  non-diapausing           10.03.2019
## 2565                  non-diapausing           10.03.2019
## 2566                  non-diapausing           10.03.2019
## 2567                  non-diapausing           10.03.2019
## 2568                  non-diapausing           10.03.2019
## 2569                  non-diapausing           10.03.2019
## 2570                  non-diapausing           10.03.2019
## 2571                  non-diapausing           10.03.2019
## 2572                  non-diapausing           10.03.2019
## 2573                  non-diapausing           10.03.2019
## 2574                  non-diapausing           10.03.2019
## 2575                  non-diapausing           10.03.2019
## 2576                  non-diapausing           10.03.2019
## 2577                  non-diapausing           10.03.2019
## 2578                  non-diapausing           10.03.2019
## 2579                  non-diapausing           10.03.2019
## 2580                  non-diapausing           10.03.2019
## 2581                  non-diapausing           10.02.2019
## 2582                  non-diapausing           10.02.2019
## 2583                  non-diapausing           10.02.2019
## 2584                  non-diapausing           10.02.2019
## 2585                  non-diapausing           10.02.2019
## 2586                  non-diapausing           10.02.2019
## 2587                  non-diapausing           10.02.2019
## 2588                  non-diapausing           10.02.2019
## 2589                  non-diapausing           10.02.2019
## 2590                  non-diapausing           10.02.2019
## 2591                  non-diapausing           10.02.2019
## 2592                  non-diapausing           10.02.2019
## 2593                  non-diapausing           10.03.2019
## 2594                  non-diapausing           10.03.2019
## 2595                  non-diapausing           10.03.2019
## 2596                  non-diapausing           10.03.2019
## 2597                  non-diapausing           10.03.2019
## 2598                  non-diapausing           10.03.2019
## 2599                  non-diapausing           10.03.2019
## 2600                  non-diapausing           10.03.2019
## 2601                  non-diapausing           10.02.2019
## 2602                  non-diapausing           10.02.2019
## 2603                  non-diapausing           10.02.2019
## 2604                  non-diapausing           10.02.2019
## 2605                  non-diapausing           10.02.2019
## 2606                  non-diapausing           10.02.2019
## 2607                  non-diapausing           10.02.2019
## 2608                  non-diapausing           10.02.2019
## 2609                  non-diapausing           10.02.2019
## 2610                  non-diapausing           10.02.2019
## 2611                  non-diapausing           10.02.2019
## 2612                  non-diapausing           10.02.2019
## 2613                  non-diapausing           10.02.2019
## 2614                  non-diapausing           10.02.2019
## 2615                  non-diapausing           10.02.2019
## 2616                  non-diapausing           10.02.2019
## 2617                  non-diapausing           10.02.2019
## 2618                  non-diapausing           10.02.2019
## 2619                  non-diapausing           10.02.2019
## 2620                  non-diapausing           10.02.2019
## 2621                  non-diapausing           10.02.2019
## 2622                  non-diapausing           10.02.2019
## 2623                  non-diapausing           10.02.2019
## 2624                  non-diapausing           10.02.2019
## 2625                  non-diapausing           10.02.2019
## 2626                  non-diapausing           10.02.2019
## 2627                  non-diapausing           10.02.2019
## 2628                  non-diapausing           10.02.2019
## 2629                  non-diapausing           10.02.2019
## 2630                  non-diapausing           10.02.2019
## 2631                  non-diapausing           10.02.2019
## 2632                  non-diapausing           10.02.2019
## 2633                  non-diapausing           10.05.2019
## 2634                  non-diapausing            10.2.2019
## 2635                  non-diapausing            10.2.2019
## 2636                  non-diapausing            10.2.2019
## 2637                  non-diapausing            10.2.2019
## 2638                  non-diapausing            10.2.2019
## 2639                  non-diapausing            10.2.2019
## 2640                  non-diapausing            10.2.2019
## 2641                  non-diapausing            10.2.2019
## 2642                  non-diapausing            10.2.2019
## 2643                  non-diapausing           10.02.2019
## 2644                  non-diapausing           10.02.2019
## 2645                  non-diapausing           10.02.2019
## 2646                  non-diapausing           10.02.2019
## 2647                  non-diapausing           10.02.2019
## 2648                  non-diapausing           10.02.2019
## 2649                  non-diapausing           10.02.2019
## 2650                  non-diapausing           10.02.2019
## 2651                  non-diapausing           10.02.2019
## 2652                  non-diapausing           10.02.2019
## 2653                  non-diapausing           10.02.2019
## 2654                  non-diapausing           10.02.2019
## 2655                  non-diapausing           10.02.2019
## 2656                  non-diapausing           10.02.2019
## 2657                  non-diapausing           10.02.2019
## 2658                  non-diapausing             2.9.2020
## 2659                  non-diapausing             2.9.2020
## 2660                  non-diapausing             2.9.2020
## 2661                  non-diapausing             2.9.2020
## 2662                  non-diapausing             2.9.2020
## 2663                  non-diapausing             2.9.2020
## 2664                  non-diapausing             2.9.2020
## 2665                  non-diapausing             2.9.2020
## 2666                  non-diapausing             2.9.2020
## 2667                  non-diapausing             2.9.2020
## 2668                  non-diapausing             2.9.2020
## 2669                  non-diapausing             2.9.2020
## 2670                  non-diapausing             2.9.2020
## 2671                  non-diapausing             2.9.2020
## 2672                  non-diapausing             2.9.2020
## 2673                  non-diapausing             2.9.2020
## 2674                  non-diapausing             2.9.2020
## 2675                  non-diapausing           02.09.2020
## 2676                  non-diapausing           02.09.2020
## 2677                  non-diapausing           02.09.2020
## 2678                  non-diapausing           02.09.2020
## 2679                  non-diapausing           02.09.2020
## 2680                  non-diapausing           02.09.2020
## 2681                  non-diapausing           02.09.2020
## 2682                  non-diapausing           02.09.2020
## 2683                  non-diapausing           02.09.2020
## 2684                  non-diapausing           02.09.2020
## 2685                  non-diapausing           02.09.2020
## 2686                  non-diapausing           02.09.2020
## 2687                  non-diapausing           02.09.2020
## 2688                  non-diapausing           02.09.2020
## 2689                  non-diapausing           02.09.2020
## 2690                  non-diapausing           02.09.2020
## 2691                  non-diapausing           02.09.2020
## 2692                  non-diapausing           02.09.2020
## 2693                  non-diapausing           02.09.2020
## 2694                  non-diapausing             2.5.2020
## 2695                  non-diapausing             2.7.2020
## 2696                  non-diapausing             2.7.2020
## 2697                  non-diapausing             2.7.2020
## 2698                  non-diapausing             2.7.2020
## 2699                  non-diapausing             2.7.2020
## 2700                  non-diapausing             2.7.2020
## 2701                  non-diapausing             2.7.2020
## 2702                  non-diapausing             2.7.2020
## 2703                  non-diapausing             2.7.2020
## 2704                  non-diapausing             2.7.2020
## 2705                  non-diapausing             2.7.2020
## 2706                  non-diapausing             2.7.2020
## 2707                  non-diapausing             2.7.2020
## 2708                  non-diapausing             2.7.2020
## 2709                  non-diapausing             2.7.2020
## 2710                  non-diapausing             2.7.2020
## 2711                  non-diapausing             2.7.2020
## 2712                  non-diapausing             2.7.2020
## 2713                  non-diapausing             2.7.2020
## 2714                  non-diapausing             2.7.2020
## 2715                  non-diapausing             2.7.2020
## 2716                  non-diapausing             2.7.2020
## 2717                  non-diapausing             2.7.2020
## 2718                  non-diapausing             2.7.2020
## 2719                  non-diapausing             2.7.2020
## 2720                  non-diapausing             2.7.2020
## 2721                  non-diapausing             2.7.2020
## 2722                  non-diapausing           02.07.2020
## 2723                  non-diapausing           02.07.2020
## 2724                  non-diapausing           02.07.2020
## 2725                  non-diapausing           02.07.2020
## 2726                  non-diapausing           02.07.2020
## 2727                  non-diapausing           02.07.2020
## 2728                  non-diapausing           02.07.2020
## 2729                  non-diapausing           02.07.2020
## 2730                  non-diapausing           02.07.2020
## 2731                  non-diapausing           02.07.2020
## 2732                  non-diapausing           02.07.2020
## 2733                  non-diapausing           02.07.2020
## 2734                  non-diapausing           02.07.2020
## 2735                  non-diapausing           02.07.2020
## 2736                  non-diapausing             2.5.2020
## 2737                  non-diapausing             2.5.2020
## 2738                  non-diapausing             2.5.2020
## 2739                  non-diapausing             2.5.2020
## 2740                  non-diapausing             2.5.2020
## 2741                  non-diapausing             2.5.2020
## 2742                  non-diapausing             2.5.2020
## 2743                  non-diapausing             2.5.2020
## 2744                  non-diapausing             2.5.2020
## 2745                  non-diapausing             2.5.2020
## 2746                  non-diapausing             2.5.2020
## 2747                  non-diapausing             2.5.2020
## 2748                  non-diapausing             2.5.2020
## 2749                  non-diapausing             2.5.2020
## 2750                  non-diapausing             2.5.2020
## 2751                  non-diapausing             2.5.2020
## 2752                  non-diapausing             2.5.2020
## 2753                  non-diapausing             2.5.2020
## 2754                  non-diapausing             2.5.2020
## 2755                  non-diapausing             2.5.2020
## 2756                  non-diapausing             2.5.2020
## 2757                  non-diapausing             2.5.2020
## 2758                  non-diapausing             2.5.2020
## 2759                  non-diapausing             2.5.2020
## 2760                  non-diapausing             2.5.2020
## 2761                  non-diapausing             2.5.2020
## 2762                  non-diapausing             2.5.2020
## 2763                  non-diapausing             2.5.2020
## 2764                  non-diapausing             2.5.2020
## 2765                  non-diapausing             2.5.2020
## 2766                  non-diapausing             2.5.2020
## 2767                  non-diapausing             2.5.2020
## 2768                  non-diapausing             2.5.2020
## 2769                  non-diapausing             2.5.2020
## 2770                  non-diapausing             2.5.2020
## 2771                  non-diapausing             2.5.2020
## 2772                  non-diapausing             2.5.2020
## 2773                  non-diapausing             2.5.2020
## 2774                  non-diapausing             2.5.2020
## 2775                  non-diapausing             2.5.2020
## 2776                  non-diapausing             2.5.2020
## 2777                  non-diapausing             2.5.2020
## 2778                  non-diapausing             2.5.2020
## 2779                  non-diapausing             2.5.2020
## 2780                  non-diapausing           02.06.2020
## 2781                  non-diapausing           02.06.2020
## 2782                  non-diapausing           02.06.2020
## 2783                  non-diapausing           02.06.2020
## 2784                  non-diapausing           02.06.2020
## 2785                  non-diapausing           02.06.2020
## 2786                  non-diapausing           02.06.2020
## 2787                  non-diapausing           02.06.2020
## 2788                  non-diapausing           02.06.2020
## 2789                  non-diapausing           02.06.2020
## 2790                  non-diapausing           02.06.2020
## 2791                  non-diapausing           02.06.2020
## 2792                  non-diapausing           02.06.2020
## 2793                  non-diapausing           02.06.2020
## 2794                  non-diapausing           02.06.2020
## 2795                  non-diapausing           02.06.2020
## 2796                  non-diapausing           02.06.2020
## 2797                  non-diapausing           02.06.2020
## 2798                  non-diapausing           02.06.2020
## 2799                  non-diapausing           02.06.2020
## 2800                  non-diapausing           02.06.2020
## 2801                  non-diapausing           02.06.2020
## 2802                  non-diapausing           02.06.2020
## 2803                  non-diapausing           02.06.2020
## 2804                  non-diapausing           02.06.2020
## 2805                  non-diapausing           02.06.2020
## 2806                  non-diapausing           02.06.2020
## 2807                  non-diapausing           02.06.2020
## 2808                  non-diapausing           02.06.2020
## 2809                  non-diapausing           02.06.2020
## 2810                  non-diapausing           02.06.2020
## 2811                  non-diapausing           02.06.2020
## 2812 diapause-like behavior observed             2.7.2020
## 2813 diapause-like behavior observed             2.7.2020
## 2814 diapause-like behavior observed             2.7.2020
## 2815 diapause-like behavior observed             2.7.2020
## 2816 diapause-like behavior observed             2.7.2020
## 2817 diapause-like behavior observed             2.7.2020
## 2818 diapause-like behavior observed             2.7.2020
## 2819 diapause-like behavior observed             2.7.2020
## 2820 diapause-like behavior observed             2.7.2020
## 2821 diapause-like behavior observed             2.7.2020
## 2822 diapause-like behavior observed             2.7.2020
## 2823 diapause-like behavior observed             2.7.2020
## 2824 diapause-like behavior observed             2.7.2020
## 2825 diapause-like behavior observed             2.7.2020
## 2826 diapause-like behavior observed             2.7.2020
## 2827 diapause-like behavior observed             2.7.2020
## 2828 diapause-like behavior observed             2.7.2020
## 2829 diapause-like behavior observed             2.7.2020
## 2830 diapause-like behavior observed             2.7.2020
## 2831 diapause-like behavior observed             2.7.2020
## 2832 diapause-like behavior observed             2.7.2020
## 2833 diapause-like behavior observed             2.7.2020
## 2834 diapause-like behavior observed             2.7.2020
## 2835 diapause-like behavior observed             2.7.2020
## 2836 diapause-like behavior observed           02.07.2020
## 2837 diapause-like behavior observed           02.07.2020
## 2838 diapause-like behavior observed           02.07.2020
## 2839 diapause-like behavior observed           02.07.2020
## 2840 diapause-like behavior observed           02.07.2020
## 2841 diapause-like behavior observed           02.07.2020
## 2842 diapause-like behavior observed           02.07.2020
## 2843 diapause-like behavior observed           02.07.2020
## 2844 diapause-like behavior observed           02.07.2020
## 2845 diapause-like behavior observed           02.07.2020
## 2846 diapause-like behavior observed           02.07.2020
## 2847 diapause-like behavior observed           02.07.2020
## 2848 diapause-like behavior observed           02.07.2020
## 2849 diapause-like behavior observed           02.07.2020
## 2850 diapause-like behavior observed           02.07.2020
## 2851 diapause-like behavior observed           02.07.2020
## 2852 diapause-like behavior observed           02.07.2020
## 2853 diapause-like behavior observed           02.07.2020
## 2854 diapause-like behavior observed           02.07.2020
## 2855                  non-diapausing             2.7.2020
## 2856                  non-diapausing             2.7.2020
## 2857                  non-diapausing             2.7.2020
## 2858                  non-diapausing             2.7.2020
## 2859                  non-diapausing             2.7.2020
## 2860                  non-diapausing             2.7.2020
## 2861                  non-diapausing             2.7.2020
## 2862                  non-diapausing             2.7.2020
## 2863                  non-diapausing             2.7.2020
## 2864                  non-diapausing             2.7.2020
## 2865                  non-diapausing             2.7.2020
## 2866                  non-diapausing           02.07.2020
## 2867                  non-diapausing           02.07.2020
## 2868                  non-diapausing           02.07.2020
## 2869                  non-diapausing           02.07.2020
## 2870                  non-diapausing           02.07.2020
## 2871                  non-diapausing           02.07.2020
## 2872                  non-diapausing           02.07.2020
## 2873                  non-diapausing           02.07.2020
## 2874                  non-diapausing           02.07.2020
## 2875                  non-diapausing           02.07.2020
## 2876                  non-diapausing           02.07.2020
## 2877                  non-diapausing           02.07.2020
## 2878                  non-diapausing           02.07.2020
## 2879                  non-diapausing           02.07.2020
## 2880                  non-diapausing           02.07.2020
## 2881                  non-diapausing           02.07.2020
## 2882                  non-diapausing           02.07.2020
## 2883                  non-diapausing           02.07.2020
## 2884                  non-diapausing           02.07.2020
## 2885                  non-diapausing           02.07.2020
## 2886                  non-diapausing           02.07.2020
## 2887                  non-diapausing           02.07.2020
## 2888                  non-diapausing           02.07.2020
## 2889                  non-diapausing           02.07.2020
## 2890                  non-diapausing           02.07.2020
## 2891                  non-diapausing           02.07.2020
## 2892                  non-diapausing           02.07.2020
## 2893                  non-diapausing           02.07.2020
## 2894                  non-diapausing           02.07.2020
## 2895                  non-diapausing           02.07.2020
## 2896                  non-diapausing           02.07.2020
## 2897                  non-diapausing           02.07.2020
## 2898                  non-diapausing           02.07.2020
## 2899                  non-diapausing           02.07.2020
## 2900                  non-diapausing           02.07.2020
## 2901                  non-diapausing           02.07.2020
## 2902                  non-diapausing           02.07.2020
## 2903                  non-diapausing           02.07.2020
## 2904                  non-diapausing           02.07.2020
## 2905                  non-diapausing             2.7.2020
## 2906                  non-diapausing             2.7.2020
## 2907                  non-diapausing             2.7.2020
## 2908                  non-diapausing             2.7.2020
## 2909                  non-diapausing             2.7.2020
## 2910                  non-diapausing             2.7.2020
## 2911                  non-diapausing             2.7.2020
## 2912                  non-diapausing             2.7.2020
## 2913                  non-diapausing             2.7.2020
## 2914                  non-diapausing             2.7.2020
## 2915                  non-diapausing             2.7.2020
## 2916                  non-diapausing             2.7.2020
## 2917                  non-diapausing           02.07.2020
## 2918                  non-diapausing           02.07.2020
## 2919                  non-diapausing           02.07.2020
## 2920                  non-diapausing           02.07.2020
## 2921                  non-diapausing           02.07.2020
## 2922                  non-diapausing           02.07.2020
## 2923                  non-diapausing           02.07.2020
## 2924                  non-diapausing           02.07.2020
## 2925                  non-diapausing           02.07.2020
## 2926                  non-diapausing           02.07.2020
## 2927                  non-diapausing           02.07.2020
## 2928                  non-diapausing           02.07.2020
## 2929                  non-diapausing           02.07.2020
## 2930                  non-diapausing           02.07.2020
## 2931                  non-diapausing           02.07.2020
## 2932                  non-diapausing           02.07.2020
## 2933                  non-diapausing           02.07.2020
## 2934                  non-diapausing             2.3.2020
## 2935                  non-diapausing             2.3.2020
## 2936                  non-diapausing             2.3.2020
## 2937                  non-diapausing             2.3.2020
## 2938                  non-diapausing             2.3.2020
## 2939                  non-diapausing             2.5.2020
## 2940                  non-diapausing             2.5.2020
## 2941                  non-diapausing             2.5.2020
## 2942                  non-diapausing             2.5.2020
## 2943                  non-diapausing             2.5.2020
## 2944                  non-diapausing             2.4.2020
## 2945                  non-diapausing             2.4.2020
## 2946                  non-diapausing             2.4.2020
## 2947                  non-diapausing             2.4.2020
## 2948                  non-diapausing             2.4.2020
## 2949                  non-diapausing             2.5.2020
## 2950                  non-diapausing             2.5.2020
## 2951                  non-diapausing             2.5.2020
## 2952                  non-diapausing             2.3.2020
## 2953                  non-diapausing             2.3.2020
## 2954                  non-diapausing             2.3.2020
## 2955                  non-diapausing             2.4.2020
## 2956                  non-diapausing             2.4.2020
## 2957                  non-diapausing             2.4.2020
## 2958                  non-diapausing             2.4.2020
## 2959                  non-diapausing             2.4.2020
## 2960                  non-diapausing             2.5.2020
## 2961                  non-diapausing             2.5.2020
## 2962                  non-diapausing             2.5.2020
## 2963                  non-diapausing             2.5.2020
## 2964                  non-diapausing             2.4.2020
## 2965                  non-diapausing             2.4.2020
## 2966                  non-diapausing             2.4.2020
## 2967                  non-diapausing             2.3.2020
## 2968                  non-diapausing             2.3.2020
## 2969                  non-diapausing             2.3.2020
## 2970                  non-diapausing             2.3.2020
## 2971                  non-diapausing             2.5.2020
## 2972                  non-diapausing             2.5.2020
## 2973                  non-diapausing             2.5.2020
## 2974                  non-diapausing             2.5.2020
## 2975                  non-diapausing             2.5.2020
## 2976                  non-diapausing             2.4.2020
## 2977                  non-diapausing             2.4.2020
## 2978                  non-diapausing             2.4.2020
## 2979                  non-diapausing             2.4.2020
## 2980                  non-diapausing             2.4.2020
## 2981                  non-diapausing             2.3.2020
## 2982                  non-diapausing             2.3.2020
## 2983                  non-diapausing             2.3.2020
## 2984                  non-diapausing             2.3.2020
## 2985                  non-diapausing             2.3.2020
## 2986                  non-diapausing             2.3.2020
## 2987                  non-diapausing             2.3.2020
## 2988                  non-diapausing             2.5.2020
## 2989                  non-diapausing             2.5.2020
## 2990                  non-diapausing             2.5.2020
## 2991                  non-diapausing             2.5.2020
## 2992                  non-diapausing             2.4.2020
## 2993                  non-diapausing             2.4.2020
## 2994                  non-diapausing             2.4.2020
## 2995                  non-diapausing             2.4.2020
## 2996                  non-diapausing             2.4.2020
## 2997                  non-diapausing             2.5.2020
## 2998                  non-diapausing             2.5.2020
## 2999                  non-diapausing             2.5.2020
## 3000                  non-diapausing             2.5.2020
## 3001                  non-diapausing             2.5.2020
## 3002                  non-diapausing             2.4.2020
## 3003                  non-diapausing             2.4.2020
## 3004                  non-diapausing             2.4.2020
## 3005                  non-diapausing             2.5.2020
## 3006                  non-diapausing             2.5.2020
## 3007                  non-diapausing             2.5.2020
## 3008                  non-diapausing             2.5.2020
## 3009                  non-diapausing             2.5.2020
## 3010                  non-diapausing             2.3.2020
## 3011                  non-diapausing             2.3.2020
## 3012                  non-diapausing             2.3.2020
## 3013                  non-diapausing             2.3.2020
## 3014                  non-diapausing             2.3.2020
## 3015                  non-diapausing             2.3.2020
## 3016                  non-diapausing             2.3.2020
## 3017                  non-diapausing             2.3.2020
## 3018                  non-diapausing             2.3.2020
## 3019                  non-diapausing             2.3.2020
## 3020                  non-diapausing             2.5.2020
## 3021                  non-diapausing             2.5.2020
## 3022                  non-diapausing             2.5.2020
## 3023                  non-diapausing             2.5.2020
## 3024                  non-diapausing             2.5.2020
## 3025                  non-diapausing             2.4.2020
## 3026                  non-diapausing             2.4.2020
## 3027                  non-diapausing             2.5.2020
## 3028                  non-diapausing             2.5.2020
## 3029                  non-diapausing             2.5.2020
## 3030                  non-diapausing             2.4.2020
## 3031                  non-diapausing             2.4.2020
## 3032                  non-diapausing             2.4.2020
## 3033                  non-diapausing             2.5.2020
## 3034                  non-diapausing             2.5.2020
## 3035                  non-diapausing             2.5.2020
## 3036                  non-diapausing             2.5.2020
## 3037                  non-diapausing             2.5.2020
## 3038                  non-diapausing             2.5.2020
## 3039                  non-diapausing             2.5.2020
## 3040                  non-diapausing             2.5.2020
## 3041                  non-diapausing             2.5.2020
## 3042                  non-diapausing             2.5.2020
## 3043                  non-diapausing             2.5.2020
## 3044                  non-diapausing             2.5.2020
## 3045                  non-diapausing             2.5.2020
## 3046                  non-diapausing             2.5.2020
## 3047                  non-diapausing             2.5.2020
## 3048                  non-diapausing             2.5.2020
## 3049                  non-diapausing             2.5.2020
## 3050                  non-diapausing             2.5.2020
## 3051                  non-diapausing             2.5.2020
## 3052                  non-diapausing             2.5.2020
## 3053                  non-diapausing             2.5.2020
## 3054                  non-diapausing             2.5.2020
## 3055                  non-diapausing             2.5.2020
## 3056                  non-diapausing             2.5.2020
## 3057                  non-diapausing             2.5.2020
## 3058                  non-diapausing             2.5.2020
## 3059                  non-diapausing             2.5.2020
## 3060                  non-diapausing             2.3.2020
## 3061                  non-diapausing             2.3.2020
## 3062                  non-diapausing             2.3.2020
## 3063                  non-diapausing             2.3.2020
## 3064                  non-diapausing             2.3.2020
## 3065                  non-diapausing             2.3.2020
## 3066                  non-diapausing             2.3.2020
## 3067                  non-diapausing             2.3.2020
## 3068                  non-diapausing             2.4.2020
## 3069                  non-diapausing             2.4.2020
## 3070                  non-diapausing             2.4.2020
## 3071                  non-diapausing             2.4.2020
## 3072                  non-diapausing           02.03.2020
## 3073                  non-diapausing           02.03.2020
## 3074                  non-diapausing           02.03.2020
## 3075                  non-diapausing           02.03.2020
## 3076                  non-diapausing           02.03.2020
## 3077                  non-diapausing           02.03.2020
## 3078                  non-diapausing           02.05.2020
## 3079                  non-diapausing           02.05.2020
## 3080                  non-diapausing           02.05.2020
## 3081                  non-diapausing           02.05.2020
## 3082                  non-diapausing           02.05.2020
## 3083                  non-diapausing           02.05.2020
## 3084                  non-diapausing           02.05.2020
## 3085                  non-diapausing           02.05.2020
## 3086                  non-diapausing           02.05.2020
## 3087                  non-diapausing           02.05.2020
## 3088                  non-diapausing           02.05.2020
## 3089                  non-diapausing           02.05.2020
## 3090                  non-diapausing           02.05.2020
## 3091                  non-diapausing           02.05.2020
## 3092                  non-diapausing           02.04.2020
## 3093                  non-diapausing           02.04.2020
## 3094                  non-diapausing           02.04.2020
## 3095                  non-diapausing           02.04.2020
## 3096                  non-diapausing           02.03.2020
## 3097                  non-diapausing           02.03.2020
## 3098                  non-diapausing           02.03.2020
## 3099                  non-diapausing           02.03.2020
## 3100                  non-diapausing           02.03.2020
## 3101                  non-diapausing           02.03.2020
## 3102                  non-diapausing           02.03.2020
## 3103                  non-diapausing           02.03.2020
## 3104                  non-diapausing           02.05.2020
## 3105                  non-diapausing           02.05.2020
## 3106                  non-diapausing           02.05.2020
## 3107                  non-diapausing           02.05.2020
## 3108                  non-diapausing           02.05.2020
## 3109                  non-diapausing           02.05.2020
## 3110                  non-diapausing           02.05.2020
## 3111                  non-diapausing           02.05.2020
## 3112                  non-diapausing           02.05.2020
## 3113                  non-diapausing           02.05.2020
## 3114                  non-diapausing           02.05.2020
## 3115                  non-diapausing           02.05.2020
## 3116                  non-diapausing           02.05.2020
## 3117                  non-diapausing           02.05.2020
## 3118                  non-diapausing           02.05.2020
## 3119                  non-diapausing           02.05.2020
## 3120                  non-diapausing           02.05.2020
## 3121                  non-diapausing           02.05.2020
## 3122                  non-diapausing           02.05.2020
## 3123                  non-diapausing           02.05.2020
## 3124                  non-diapausing           02.05.2020
## 3125                  non-diapausing           02.05.2020
## 3126                  non-diapausing           02.05.2020
## 3127                  non-diapausing           02.05.2020
## 3128                  non-diapausing           02.05.2020
## 3129                  non-diapausing           02.05.2020
## 3130                  non-diapausing           02.05.2020
## 3131                  non-diapausing           02.05.2020
## 3132                  non-diapausing           02.05.2020
## 3133                  non-diapausing           02.05.2020
## 3134                  non-diapausing           02.05.2020
## 3135                  non-diapausing           02.05.2020
## 3136                  non-diapausing           02.05.2020
## 3137                  non-diapausing           02.04.2020
## 3138                  non-diapausing           02.04.2020
## 3139                  non-diapausing           02.04.2020
## 3140                  non-diapausing           02.04.2020
## 3141                  non-diapausing           02.04.2020
## 3142                  non-diapausing           02.04.2020
## 3143                  non-diapausing           02.04.2020
## 3144                  non-diapausing           02.04.2020
## 3145                  non-diapausing           02.04.2020
## 3146                  non-diapausing           02.04.2020
## 3147                  non-diapausing           02.04.2020
## 3148                  non-diapausing           02.04.2020
## 3149                  non-diapausing           02.04.2020
## 3150                  non-diapausing           02.04.2020
## 3151                  non-diapausing           02.04.2020
## 3152                  non-diapausing           02.04.2020
## 3153                  non-diapausing           02.04.2020
## 3154                  non-diapausing           02.04.2020
## 3155                  non-diapausing             2.4.2020
## 3156                  non-diapausing             2.4.2020
## 3157                  non-diapausing             2.4.2020
## 3158                  non-diapausing             2.4.2020
## 3159                  non-diapausing             2.4.2020
## 3160                  non-diapausing             2.4.2020
## 3161                  non-diapausing             2.4.2020
## 3162                  non-diapausing             2.4.2020
## 3163                  non-diapausing             2.4.2020
## 3164                  non-diapausing             2.4.2020
## 3165                  non-diapausing             2.4.2020
## 3166                  non-diapausing             2.4.2020
## 3167                  non-diapausing             2.4.2020
## 3168                  non-diapausing             2.4.2020
## 3169                  non-diapausing             2.4.2020
## 3170                  non-diapausing             2.4.2020
## 3171                  non-diapausing             2.4.2020
## 3172                  non-diapausing             2.4.2020
## 3173                  non-diapausing             2.4.2020
## 3174                  non-diapausing             2.4.2020
## 3175                  non-diapausing             2.4.2020
## 3176                  non-diapausing             2.4.2020
## 3177                  non-diapausing             2.4.2020
## 3178                  non-diapausing             2.4.2020
## 3179                  non-diapausing             2.4.2020
## 3180                  non-diapausing             2.4.2020
## 3181                  non-diapausing             2.4.2020
## 3182                  non-diapausing             2.4.2020
## 3183                  non-diapausing             2.4.2020
## 3184                  non-diapausing             2.4.2020
## 3185                  non-diapausing             2.4.2020
## 3186                  non-diapausing             2.4.2020
## 3187                  non-diapausing             2.4.2020
## 3188                  non-diapausing             2.4.2020
## 3189                  non-diapausing             2.4.2020
## 3190                  non-diapausing             2.4.2020
## 3191                  non-diapausing             2.4.2020
## 3192                  non-diapausing             2.4.2020
## 3193                  non-diapausing             2.4.2020
## 3194                  non-diapausing             2.4.2020
## 3195                  non-diapausing             2.4.2020
## 3196                  non-diapausing             2.4.2020
## 3197                  non-diapausing             2.4.2020
## 3198                  non-diapausing             2.4.2020
## 3199                  non-diapausing             2.4.2020
## 3200                  non-diapausing             2.4.2020
## 3201                  non-diapausing             2.4.2020
## 3202                  non-diapausing             2.4.2020
## 3203                  non-diapausing             2.4.2020
## 3204                  non-diapausing             2.4.2020
## 3205                  non-diapausing             2.4.2020
## 3206                  non-diapausing           02.04.2020
## 3207                  non-diapausing           02.04.2020
## 3208                  non-diapausing           02.04.2020
## 3209                  non-diapausing           02.04.2020
## 3210                  non-diapausing           02.04.2020
## 3211                  non-diapausing           02.04.2020
## 3212                  non-diapausing           02.04.2020
## 3213                  non-diapausing           02.04.2020
## 3214                  non-diapausing           02.04.2020
## 3215                  non-diapausing           02.04.2020
## 3216                  non-diapausing           02.04.2020
## 3217                  non-diapausing           02.04.2020
## 3218                  non-diapausing           02.04.2020
## 3219                  non-diapausing           02.04.2020
## 3220                  non-diapausing           02.04.2020
## 3221                  non-diapausing           02.04.2020
## 3222                  non-diapausing           02.04.2020
## 3223                  non-diapausing           02.04.2020
## 3224                  non-diapausing           02.04.2020
## 3225                  non-diapausing           02.04.2020
## 3226                  non-diapausing           10.02.2019
## 3227                  non-diapausing           10.02.2019
## 3228                  non-diapausing           10.02.2019
## 3229                  non-diapausing           10.02.2019
## 3230                  non-diapausing           10.02.2019
## 3231                  non-diapausing           10.02.2019
## 3232                  non-diapausing           10.02.2019
## 3233                  non-diapausing           10.02.2019
## 3234                  non-diapausing           10.02.2019
## 3235                  non-diapausing           10.02.2019
## 3236                  non-diapausing           10.02.2019
## 3237                  non-diapausing           10.02.2019
## 3238                  non-diapausing           10.02.2019
## 3239                  non-diapausing           10.02.2019
## 3240                  non-diapausing           10.02.2019
## 3241                  non-diapausing           10.02.2019
## 3242                  non-diapausing           10.02.2019
## 3243                  non-diapausing           10.02.2019
## 3244                  non-diapausing           10.02.2019
## 3245                  non-diapausing           10.02.2019
## 3246                  non-diapausing           10.02.2019
## 3247                  non-diapausing           10.02.2019
## 3248                  non-diapausing           10.02.2019
## 3249                  non-diapausing           10.02.2019
## 3250                  non-diapausing           10.02.2019
## 3251                                           10.04.2019
## 3252                                           10.04.2019
## 3253                                           10.04.2019
## 3254                                           10.04.2019
## 3255                                           10.04.2019
## 3256                                           10.04.2019
## 3257                                           10.04.2019
## 3258                                           10.04.2019
## 3259                                           10.04.2019
## 3260                                           10.04.2019
## 3261                                           10.04.2019
## 3262                                           10.04.2019
## 3263                                           10.03.2019
## 3264                                           10.03.2019
## 3265                                           10.03.2019
## 3266                                           10.03.2019
## 3267                                           10.03.2019
## 3268                                           10.03.2019
## 3269                                           10.03.2019
## 3270                                           10.03.2019
## 3271                                           10.03.2019
## 3272                                           10.03.2019
## 3273                                           10.03.2019
## 3274                                           10.03.2019
## 3275                                           10.03.2019
## 3276                                           10.03.2019
## 3277                                           10.02.2019
## 3278                                           10.02.2019
## 3279                                           10.02.2019
## 3280                                           10.02.2019
## 3281                                           10.02.2019
## 3282                                           10.02.2019
## 3283                                           10.02.2019
## 3284                                           10.02.2019
## 3285                                           10.02.2019
## 3286                                           10.02.2019
## 3287                                           10.02.2019
## 3288                                           10.02.2019
## 3289                                           10.05.2019
## 3290                                           10.05.2019
## 3291                                           10.05.2019
## 3292                                           10.05.2019
## 3293                                           10.05.2019
## 3294                                           10.05.2019
## 3295                                           10.05.2019
## 3296                                           10.05.2019
## 3297                                           10.05.2019
## 3298                                           10.05.2019
## 3299                                           10.05.2019
## 3300                                           10.05.2019
## 3301                                           10.05.2019
## 3302                                           10.05.2019
## 3303                                           10.05.2019
## 3304                                           10.05.2019
## 3305                                           10.05.2019
## 3306                                           10.05.2019
## 3307                                           10.05.2019
## 3308                                           10.05.2019
## 3309                                           10.05.2019
## 3310                                           10.02.2019
## 3311                                           10.02.2019
## 3312                                           10.02.2019
## 3313                                           10.02.2019
## 3314                                           12.15.2016
## 3315                                           12.15.2016
## 3316                                           12.15.2016
## 3317                                           12.15.2016
## 3318                                           10.04.2019
## 3319                       tips torn           10.04.2019
## 3320                       tips torn           10.04.2019
## 3321                                           10.04.2019
## 3322                                           10.04.2019
## 3323                                           10.04.2019
## 3324                       tips torn           10.04.2019
## 3325                                           10.02.2019
## 3326                       tips torn           10.02.2019
## 3327                        d1 peach           10.02.2019
## 3328                                           10.02.2019
## 3329                                           10.02.2019
## 3330                                           10.02.2019
## 3331                                           10.04.2019
## 3332                       tips torn           10.04.2019
## 3333                       tips torn           10.04.2019
## 3334                       tips torn           10.03.2019
## 3335                                           10.03.2019
## 3336                                           10.03.2019
## 3337                                           10.03.2019
## 3338                                           10.03.2019
## 3339                       tips torn           10.03.2019
## 3340                      diapausing           05.21.2019
## 3341                      diapausing           05.21.2019
## 3342                      diapausing           05.21.2019
## 3343                      diapausing           05.21.2019
## 3344                      diapausing           05.21.2019
## 3345                      diapausing           05.21.2019
## 3346                      diapausing           05.21.2019
## 3347                      diapausing           05.21.2019
## 3348                      diapausing           05.21.2019
## 3349                      diapausing           05.21.2019
## 3350                      diapausing           05.21.2019
## 3351                      diapausing           05.21.2019
## 3352                      diapausing           05.21.2019
## 3353                      diapausing           05.21.2019
## 3354                      diapausing           05.21.2019
## 3355                      diapausing           05.21.2019
## 3356                      diapausing           05.21.2019
## 3357                      diapausing           05.21.2019
## 3358                      diapausing           05.21.2019
## 3359                      diapausing           05.21.2019
## 3360                      diapausing           05.21.2019
## 3361                      diapausing           05.21.2019
## 3362                      diapausing           05.21.2019
## 3363                      diapausing           05.21.2019
## 3364                      diapausing           05.21.2019
## 3365                      diapausing           05.21.2019
## 3366                      diapausing           05.21.2019
## 3367                      diapausing           05.21.2019
## 3368                      diapausing           05.21.2019
## 3369                      diapausing           05.21.2019
## 3370                      diapausing           05.21.2019
## 3371                      diapausing           05.21.2019
## 3372                      diapausing           05.21.2019
## 3373                      diapausing           05.21.2019
## 3374                      diapausing           05.21.2019
## 3375                      diapausing           05.21.2019
## 3376                      diapausing           05.21.2019
## 3377                      diapausing           05.21.2019
## 3378                      diapausing           05.21.2019
## 3379                      diapausing           05.21.2019
## 3380                      diapausing           05.21.2019
## 3381                      diapausing           05.21.2019
## 3382                      diapausing           05.21.2019
## 3383                      diapausing           05.21.2019
## 3384                      diapausing           05.21.2019
## 3385                      diapausing           05.21.2019
## 3386                      diapausing           05.21.2019
## 3387                      diapausing           05.21.2019
## 3388                      diapausing           05.21.2019
## 3389                      diapausing           05.21.2019
## 3390                      diapausing           05.21.2019
## 3391                      diapausing           05.21.2019
## 3392                      diapausing           05.21.2019
## 3393                      diapausing           05.21.2019
## 3394                                           05.21.2019
## 3395                                           05.21.2019
## 3396                                           05.21.2019
## 3397                                           05.21.2019
## 3398                                           05.21.2019
## 3399                                           05.21.2019
## 3400                                           05.21.2019
## 3401                                           05.21.2019
## 3402                                           05.21.2019
## 3403                                           05.21.2019
## 3404                                           05.21.2019
## 3405                                           05.21.2019
## 3406                                           05.21.2019
## 3407                                           05.21.2019
## 3408                                           05.21.2019
## 3409                                           05.21.2019
## 3410                                           05.21.2019
## 3411                                           05.21.2019
## 3412                                           05.21.2019
## 3413                                           05.21.2019
## 3414                                           05.21.2019
## 3415                                           05.21.2019
## 3416                                           05.21.2019
## 3417                                           05.21.2019
## 3418                                           05.21.2019
## 3419                                           05.21.2019
## 3420                                           05.21.2019
## 3421                                           05.21.2019
## 3422                                           05.21.2019
## 3423                                           05.21.2019
## 3424                                           05.21.2019
## 3425                                           05.21.2019
## 3426                                           05.21.2019
## 3427                                           05.21.2019
## 3428                                           05.21.2019
## 3429                                           05.21.2019
## 3430                                           05.21.2019
## 3431                                           05.21.2019
## 3432                                           05.21.2019
## 3433                                           05.21.2019
## 3434                                           05.21.2019
## 3435                                           05.21.2019
## 3436                                           05.21.2019
## 3437                                           05.21.2019
## 3438                                           05.21.2019
## 3439                                           05.21.2019
## 3440                                           05.21.2019
## 3441                                           05.21.2019
## 3442                                           05.21.2019
## 3443                                           05.21.2019
## 3444                                           05.21.2019
## 3445                                           05.21.2019
## 3446                                           05.21.2019
## 3447                                           05.21.2019
##                                  notes sex_binom pophost_binom            date
## 1                                             -1             1      April/2013
## 2                                             -1             1      April/2013
## 3                                             -1             1      April/2013
## 4                                             -1             1      April/2013
## 5                                             -1             1      April/2013
## 6                                             -1             1      April/2013
## 7                                             -1             1      April/2013
## 8                                             -1             1      April/2013
## 9                                             -1             1      April/2013
## 10                                             1             1      April/2013
## 11                                             1             1      April/2013
## 12                                            -1             1      April/2013
## 13                                            -1             1      April/2013
## 14                                            -1             1      April/2013
## 15                                             1             1      April/2013
## 16                                            -1             1      April/2013
## 17                                            -1             1      April/2013
## 18                                             1             1      April/2013
## 19                                            -1             1      April/2013
## 20                                             1             1      April/2013
## 21                                             1             1      April/2013
## 22                                            -1             1      April/2013
## 23                                             1             1      April/2013
## 24                                            -1             1      April/2013
## 25                                             1             1      April/2013
## 26                                            -1             1      April/2013
## 27                                             1             1      April/2013
## 28                                             1             1      April/2013
## 29                                             1             1      April/2013
## 30                                            -1             1      April/2013
## 31                                             1             1      April/2013
## 32                                            -1             1      April/2013
## 33                                            -1             1      April/2013
## 34                                            -1             1      April/2013
## 35                                             1             1      April/2013
## 36                                            -1             1      April/2013
## 37                                             1             1      April/2013
## 38                                            -1             1      April/2013
## 39                                            -1             1      April/2013
## 40                                            -1             1      April/2013
## 41                                            -1             1      April/2013
## 42                                             1             1      April/2013
## 43                                            -1             1      April/2013
## 44                                             1             1      April/2013
## 45                                            -1             1      April/2013
## 46                                             1             1      April/2013
## 47                                            -1             1      April/2013
## 48                                             1             1      April/2013
## 49                                             1             1      April/2013
## 50                                            -1             1      April/2013
## 51                                             1             1      April/2013
## 52                                            -1             1      April/2013
## 53                                            -1             1      April/2013
## 54                                             1             1      April/2013
## 55                                            -1             1      April/2013
## 56                                             1             1      April/2013
## 57                                            -1             1      April/2013
## 58                                            -1             1      April/2013
## 59                                             1             1      April/2013
## 60                                             1             1      April/2013
## 61                                             1             1      April/2013
## 62                                            -1             1      April/2013
## 63                                             1             1      April/2013
## 64                                            -1             1      April/2013
## 65                                             1             1      April/2013
## 66                                             1             1      April/2013
## 67                                            -1             1      April/2013
## 68                                             1             1      April/2013
## 69                                             1             1      April/2013
## 70                                            -1             1      April/2013
## 71                                             1             1      April/2013
## 72                                             1             1      April/2013
## 73                                             1             1      April/2013
## 74                                            -1             1      April/2013
## 75                                            -1             1      April/2013
## 76                                             1            -1      April/2013
## 77                                            -1            -1      April/2013
## 78                                             1            -1      April/2013
## 79                                            -1            -1      April/2013
## 80                                             1            -1      April/2013
## 81                                            -1            -1      April/2013
## 82                                            -1            -1      April/2013
## 83                                            -1            -1      April/2013
## 84                                             1            -1      April/2013
## 85                                             1            -1      April/2013
## 86                                            -1            -1      April/2013
## 87                                            -1            -1      April/2013
## 88                                            -1            -1      April/2013
## 89                                            -1            -1      April/2013
## 90                                             1            -1      April/2013
## 91                                            -1            -1      April/2013
## 92                                            -1            -1      April/2013
## 93                                            -1            -1      April/2013
## 94                                             1            -1      April/2013
## 95                                            -1            -1      April/2013
## 96                                             1            -1      April/2013
## 97                                             1            -1      April/2013
## 98                                             1            -1      April/2013
## 99                                             1            -1      April/2013
## 100                                            1            -1      April/2013
## 101                                            1            -1      April/2013
## 102                                            1            -1      April/2013
## 103                                           -1            -1      April/2013
## 104                                            1            -1      April/2013
## 105                                           -1            -1      April/2013
## 106                                            1            -1      April/2013
## 107                                            1            -1      April/2013
## 108                                            1            -1      April/2013
## 109                                           -1            -1      April/2013
## 110                                           -1            -1      April/2013
## 111                                           -1            -1      April/2013
## 112                                           -1            -1      April/2013
## 113                                           -1            -1      April/2013
## 114                                            1             1      April/2013
## 115                                            1             1      April/2013
## 116                                            1             1      April/2013
## 117                                            1             1      April/2013
## 118                                           -1             1      April/2013
## 119                                            1             1      April/2013
## 120                                           -1             1      April/2013
## 121                                            1             1      April/2013
## 122                                            1             1      April/2013
## 123                                           -1             1      April/2013
## 124                                            1             1      April/2013
## 125                                           -1             1      April/2013
## 126                                           -1             1      April/2013
## 127                                           -1             1      April/2013
## 128                                            1             1      April/2013
## 129                                           -1             1      April/2013
## 130                                           -1             1      April/2013
## 131                                           -1             1      April/2013
## 132                                           -1             1      April/2013
## 133                                            1             1      April/2013
## 134                                            1             1      April/2013
## 135                                           -1             1      April/2013
## 136                                           -1             1      April/2013
## 137                                            1             1      April/2013
## 138                                            1             1      April/2013
## 139                                           -1             1      April/2013
## 140                                           -1            -1      April/2013
## 141                                           -1            -1      April/2013
## 142                                            1            -1      April/2013
## 143                                           -1            -1      April/2013
## 144                                           -1            -1      April/2013
## 145                                           -1            -1      April/2013
## 146                                            1            -1      April/2013
## 147                                           -1            -1      April/2013
## 148                                           -1            -1      April/2013
## 149                                           -1            -1      April/2013
## 150                                           -1            -1      April/2013
## 151                                           -1            -1      April/2013
## 152                                           -1            -1      April/2013
## 153                                           -1            -1      April/2013
## 154                                            1            -1      April/2013
## 155                                            1            -1      April/2013
## 156                                           -1            -1      April/2013
## 157                                            1            -1      April/2013
## 158                                           -1            -1      April/2013
## 159                                            1            -1      April/2013
## 160                                           -1            -1      April/2013
## 161                                            1            -1      April/2013
## 162                                            1            -1      April/2013
## 163                                            1            -1      April/2013
## 164                                            1            -1      April/2013
## 165                                            1            -1      April/2013
## 166                                           -1            -1      April/2013
## 167                                           -1            -1      April/2013
## 168                                            1            -1      April/2013
## 169                                           -1            -1      April/2013
## 170                                           -1            -1      April/2013
## 171                                            1            -1      April/2013
## 172                                           -1            -1      April/2013
## 173                                           -1            -1      April/2013
## 174                                           -1            -1      April/2013
## 175                                            1            -1      April/2013
## 176                                           -1            -1      April/2013
## 177                                            1            -1      April/2013
## 178                                           -1            -1      April/2013
## 179                                            1            -1      April/2013
## 180                                           -1            -1      April/2013
## 181                                           -1            -1      April/2013
## 182                                            1            -1      April/2013
## 183                                           -1            -1      April/2013
## 184                                           -1            -1      April/2013
## 185                                            1            -1      April/2013
## 186                                           -1            -1      April/2013
## 187                                            1            -1      April/2013
## 188                                           -1            -1      April/2013
## 189                                            1            -1      April/2013
## 190                                            1            -1      April/2013
## 191                                            1            -1      April/2013
## 192                                            1            -1      April/2013
## 193                                            1            -1      April/2013
## 194                                           -1            -1      April/2013
## 195                                           -1            -1      April/2013
## 196                                           -1            -1      April/2013
## 197                                           -1            -1      April/2013
## 198                                           -1            -1      April/2013
## 199                                            1            -1      April/2013
## 200                                            1            -1      April/2013
## 201                                           -1             1      April/2013
## 202                                           -1             1      April/2013
## 203                                           -1             1      April/2013
## 204                                            1             1      April/2013
## 205                                           -1             1      April/2013
## 206                                           -1             1      April/2013
## 207                                            1             1      April/2013
## 208                                           -1             1      April/2013
## 209                                           -1             1      April/2013
## 210                                           -1             1      April/2013
## 211                                            1             1      April/2013
## 212                                           -1             1      April/2013
## 213                                            1             1      April/2013
## 214                                           -1             1      April/2013
## 215                                           -1             1      April/2013
## 216                                           -1             1      April/2013
## 217                                            1             1      April/2013
## 218                                           -1             1      April/2013
## 219                                           -1             1      April/2013
## 220                                           -1             1      April/2013
## 221                                           -1             1      April/2013
## 222                                           -1             1      April/2013
## 223                                           -1             1      April/2013
## 224                                            1             1      April/2013
## 225                                           -1             1      April/2013
## 226                                           -1             1      April/2013
## 227                                           -1             1      April/2013
## 228                                           -1             1      April/2013
## 229                                           -1             1      April/2013
## 230                                           -1             1      April/2013
## 231                                           -1             1      April/2013
## 232                                            1             1      April/2013
## 233                                            1             1      April/2013
## 234                                           -1             1      April/2013
## 235                                           -1             1      April/2013
## 236                                            1             1      April/2013
## 237                                            1             1      April/2013
## 238                                           -1             1      April/2013
## 239                                            1             1      April/2013
## 240                                            1             1      April/2013
## 241                                           -1             1      April/2013
## 242                                           -1             1      April/2013
## 243                                            1             1      April/2013
## 244                                           -1             1      April/2013
## 245                                            1             1      April/2013
## 246                                            1             1      April/2013
## 247                                            1             1      April/2013
## 248                                            1             1      April/2013
## 249                                            1             1      April/2013
## 250                                           -1             1      April/2013
## 251                                           -1             1      April/2013
## 252                                           -1             1      April/2013
## 253                                           -1             1      April/2013
## 254                                           -1             1      April/2013
## 255                                           -1             1      April/2013
## 256                                           -1             1      April/2013
## 257                                            1             1      April/2013
## 258                                           -1             1      April/2013
## 259                                            1             1      April/2013
## 260                                           -1             1      April/2013
## 261                                           -1             1      April/2013
## 262                                           -1             1      April/2013
## 263                                            1             1      April/2013
## 264                                           -1             1      April/2013
## 265                                            1             1      April/2013
## 266                                           -1             1      April/2013
## 267                                           -1             1      April/2013
## 268                                            1             1      April/2013
## 269                                           -1             1      April/2013
## 270                                           -1             1      April/2013
## 271                                            1             1      April/2013
## 272                                           -1             1      April/2013
## 273                                            1             1      April/2013
## 274                                           -1             1      April/2013
## 275                                           -1             1      April/2013
## 276                                            1             1      April/2013
## 277                                           -1             1      April/2013
## 278                                           -1             1      April/2013
## 279                                            1             1      April/2013
## 280                                           -1             1      April/2013
## 281                                            1             1      April/2013
## 282                                           -1             1      April/2013
## 283                                            1             1      April/2013
## 284                                            1             1      April/2013
## 285                                            1             1      April/2013
## 286                                           -1            -1      April/2013
## 287                                            1            -1      April/2013
## 288                                           -1            -1      April/2013
## 289                                           -1            -1      April/2013
## 290                                           -1            -1      April/2013
## 291                                            1            -1      April/2013
## 292                                           -1            -1      April/2013
## 293                                           -1            -1      April/2013
## 294                                           -1            -1      April/2013
## 295                                            1            -1      April/2013
## 296                                            1            -1      April/2013
## 297                                           -1            -1      April/2013
## 298                                           -1            -1      April/2013
## 299                                            1            -1      April/2013
## 300                                           -1            -1      April/2013
## 301                                           -1            -1      April/2013
## 302                                           -1            -1      April/2013
## 303                                           -1            -1      April/2013
## 304                                           -1            -1      April/2013
## 305                                            1            -1      April/2013
## 306                                           -1            -1      April/2013
## 307                                            1            -1      April/2013
## 308                                            1            -1      April/2013
## 309                                            1            -1      April/2013
## 310                                            1            -1      April/2013
## 311                                           -1            -1      April/2013
## 312                                            1            -1      April/2013
## 313                                           -1            -1      April/2013
## 314                                           -1            -1      April/2013
## 315                                           -1            -1      April/2013
## 316                                            1            -1      April/2013
## 317                                            1            -1      April/2013
## 318                                            1            -1      April/2013
## 319                                           -1            -1      April/2013
## 320                                            1            -1      April/2013
## 321                                           -1            -1      April/2013
## 322                                           -1             1 December/2013.6
## 323                                            1             1 December/2013.6
## 324                                            1             1 December/2013.6
## 325                                            1             1 December/2013.6
## 326                                            1             1 December/2013.6
## 327                                           -1             1 December/2013.6
## 328                                            1             1 December/2013.6
## 329                                            1             1 December/2013.6
## 330                                            1             1 December/2013.6
## 331                                           -1             1 December/2013.6
## 332                                            1             1 December/2013.6
## 333                                            1             1 December/2013.6
## 334                                           -1             1 December/2013.6
## 335                                            1             1 December/2013.6
## 336                                            1             1 December/2013.6
## 337                                           -1             1 December/2013.6
## 338                                           -1             1 December/2013.6
## 339                                            1             1 December/2013.6
## 340                                            1             1 December/2013.6
## 341                                            1             1 December/2013.6
## 342                                            1             1 December/2013.6
## 343                                            1             1 December/2013.6
## 344                                            1             1 December/2013.6
## 345                                            1             1 December/2013.6
## 346                                           -1             1 December/2013.6
## 347                                            1             1 December/2013.6
## 348                                            1             1 December/2013.6
## 349                                            1             1 December/2013.6
## 350                                            1             1 December/2013.6
## 351                                            1             1 December/2013.6
## 352                                            1             1 December/2013.6
## 353                                            1             1 December/2013.6
## 354                                            1             1 December/2013.6
## 355                                            1             1 December/2013.6
## 356                                           -1             1 December/2013.6
## 357                                            1             1 December/2013.6
## 358                                           -1             1 December/2013.6
## 359                                            1             1 December/2013.6
## 360                                           -1             1 December/2013.6
## 361                                            1             1 December/2013.6
## 362                                            1             1 December/2013.6
## 363                                            1             1 December/2013.6
## 364                                            1             1 December/2013.6
## 365                                            1             1 December/2013.6
## 366                                           -1             1 December/2013.6
## 367                                            1             1 December/2013.6
## 368                                           -1             1 December/2013.6
## 369                                            1             1 December/2013.6
## 370                                           -1             1 December/2013.6
## 371                                           -1             1 December/2013.6
## 372                                           -1             1 December/2013.6
## 373                                            1             1 December/2013.6
## 374                                            1             1 December/2013.6
## 375                                            1             1 December/2013.6
## 376                                           -1             1 December/2013.6
## 377                                            1             1 December/2013.6
## 378                                            1             1 December/2013.6
## 379                                            1             1 December/2013.6
## 380                                           -1             1 December/2013.6
## 381                                            1             1 December/2013.6
## 382                                           -1             1 December/2013.6
## 383                                            1             1 December/2013.6
## 384                                            1             1 December/2013.6
## 385                                            1             1 December/2013.6
## 386                                            1             1 December/2013.6
## 387                                            1             1 December/2013.6
## 388                                           -1             1 December/2013.6
## 389                                           -1             1 December/2013.6
## 390                                            1             1 December/2013.6
## 391                                            1             1 December/2013.6
## 392                                            1             1 December/2013.6
## 393                                            1             1 December/2013.6
## 394                                            1             1 December/2013.6
## 395                                            1             1 December/2013.6
## 396                                            1             1 December/2013.6
## 397                                           -1             1 December/2013.6
## 398                                           -1             1 December/2013.6
## 399                                            1             1 December/2013.6
## 400                                           -1             1 December/2013.6
## 401                                           -1             1 December/2013.6
## 402                                           -1             1 December/2013.6
## 403                                           -1             1 December/2013.6
## 404                                           -1             1 December/2013.6
## 405                                           -1             1 December/2013.6
## 406                                           -1             1 December/2013.6
## 407                                            1             1 December/2013.6
## 408                                           -1             1 December/2013.6
## 409                                            1             1 December/2013.6
## 410                                            1             1 December/2013.6
## 411                                            1            -1 December/2013.6
## 412                                            1            -1 December/2013.6
## 413                                            1            -1 December/2013.6
## 414                                            1            -1 December/2013.6
## 415                                           -1            -1 December/2013.6
## 416                                            1            -1 December/2013.6
## 417                                           -1            -1 December/2013.6
## 418                                            1            -1 December/2013.6
## 419                                            1            -1 December/2013.6
## 420                                            1            -1 December/2013.6
## 421                                            1            -1 December/2013.6
## 422                                           -1            -1 December/2013.6
## 423                                            1            -1 December/2013.6
## 424                                            1            -1 December/2013.6
## 425                                           -1            -1 December/2013.6
## 426                                            1            -1 December/2013.6
## 427                                            1            -1 December/2013.6
## 428                                           -1            -1 December/2013.6
## 429                                            1            -1 December/2013.6
## 430                                           -1            -1 December/2013.6
## 431                                           -1            -1 December/2013.6
## 432                                           -1            -1 December/2013.6
## 433                                            1            -1 December/2013.6
## 434                                           -1             1 December/2013.6
## 435                                            1             1 December/2013.6
## 436                                           -1             1 December/2013.6
## 437                                            1             1 December/2013.6
## 438                                            1             1 December/2013.6
## 439                                           -1             1 December/2013.6
## 440                                            1             1 December/2013.6
## 441                                           -1             1 December/2013.6
## 442                                           -1             1 December/2013.6
## 443                                           -1             1 December/2013.6
## 444                                            1             1 December/2013.6
## 445                                            1             1 December/2013.6
## 446                                           -1             1 December/2013.6
## 447                                            1             1 December/2013.6
## 448                                           -1             1 December/2013.6
## 449                                            1             1 December/2013.6
## 450                                           -1             1 December/2013.6
## 451                                            1             1 December/2013.6
## 452                                           -1             1 December/2013.6
## 453                                           -1             1 December/2013.6
## 454                                            1             1 December/2013.6
## 455                                            1             1 December/2013.6
## 456                                           -1             1 December/2013.6
## 457                                            1             1 December/2013.6
## 458                                           -1             1 December/2013.6
## 459                                            1             1 December/2013.6
## 460                                            1             1 December/2013.6
## 461                                            1             1 December/2013.6
## 462                                           -1             1 December/2013.6
## 463                                           -1            -1 December/2013.6
## 464                                            1            -1 December/2013.6
## 465                                            1            -1 December/2013.6
## 466                                           -1            -1 December/2013.6
## 467                                            1            -1 December/2013.6
## 468                                            1            -1 December/2013.6
## 469                                           -1            -1 December/2013.6
## 470                                            1            -1 December/2013.6
## 471                                            1            -1 December/2013.6
## 472                                           -1            -1 December/2013.6
## 473                                           -1            -1 December/2013.6
## 474                                            1            -1 December/2013.6
## 475                                           -1            -1 December/2013.6
## 476                                           -1            -1 December/2013.6
## 477                                           -1            -1 December/2013.6
## 478                                            1            -1 December/2013.6
## 479                                           -1            -1 December/2013.6
## 480                                            1            -1 December/2013.6
## 481                                           -1            -1 December/2013.6
## 482                                           -1            -1 December/2013.6
## 483                                            1            -1 December/2013.6
## 484                                           -1            -1 December/2013.6
## 485                                            1            -1 December/2013.6
## 486                                           -1            -1 December/2013.6
## 487                                            1            -1 December/2013.6
## 488                                            1            -1 December/2013.6
## 489                                            1            -1 December/2013.6
## 490                                           -1            -1 December/2013.6
## 491                                            1            -1 December/2013.6
## 492                                            1            -1 December/2013.6
## 493                                           -1            -1 December/2013.6
## 494                                            1            -1 December/2013.6
## 495                                            1             1 December/2013.6
## 496                                           -1             1 December/2013.6
## 497                                            1             1 December/2013.6
## 498                                            1             1 December/2013.6
## 499                                            1             1 December/2013.6
## 500                                           -1             1 December/2013.6
## 501                                            1             1 December/2013.6
## 502                                           -1             1 December/2013.6
## 503                                            1             1 December/2013.6
## 504                                            1             1 December/2013.6
## 505                                           -1             1 December/2013.6
## 506                                            1             1 December/2013.6
## 507                                           -1             1 December/2013.6
## 508                                            1             1 December/2013.6
## 509                                           -1             1 December/2013.6
## 510                                           -1             1 December/2013.6
## 511                                           -1             1 December/2013.6
## 512                                            1             1 December/2013.6
## 513                                           -1             1 December/2013.6
## 514                                           -1             1 December/2013.6
## 515                                           -1             1 December/2013.6
## 516                                            1             1 December/2013.6
## 517                                            1             1 December/2013.6
## 518                                            1             1 December/2013.6
## 519                                           -1             1 December/2013.6
## 520                                           -1             1 December/2013.6
## 521                                           -1             1 December/2013.6
## 522                                           -1             1 December/2013.6
## 523                                           -1             1 December/2013.6
## 524                                            1             1 December/2013.6
## 525                                           -1             1 December/2013.6
## 526                                           -1             1 December/2013.6
## 527                                            1             1 December/2013.6
## 528                                           -1             1 December/2013.6
## 529                                           -1             1 December/2013.6
## 530                                           -1             1 December/2013.6
## 531                                           -1             1 December/2013.6
## 532                                           -1             1 December/2013.6
## 533                                            1             1 December/2013.6
## 534                                           -1             1 December/2013.6
## 535                                            1             1 December/2013.6
## 536                                           -1             1 December/2013.6
## 537                                            1             1 December/2013.6
## 538                                            1             1 December/2013.6
## 539                                            1             1 December/2013.6
## 540                                           -1             1 December/2013.6
## 541                                           -1             1 December/2013.6
## 542                                           -1             1 December/2013.6
## 543                                            1             1 December/2013.6
## 544                                           -1             1 December/2013.6
## 545                                            1             1 December/2013.6
## 546                                           -1             1 December/2013.6
## 547                                            1             1 December/2013.6
## 548                                            1             1 December/2013.6
## 549                                            1             1 December/2013.6
## 550                                           -1             1 December/2013.6
## 551                                           -1             1 December/2013.6
## 552                                            1             1 December/2013.6
## 553                                           -1             1 December/2013.6
## 554                                           -1             1 December/2013.6
## 555                                           -1             1 December/2013.6
## 556                                            1             1 December/2013.6
## 557                                            1             1 December/2013.6
## 558                                           -1             1 December/2013.6
## 559                                           -1             1 December/2013.6
## 560                                            1             1 December/2013.6
## 561                                           -1             1 December/2013.6
## 562                                           -1             1 December/2013.6
## 563                                           -1             1 December/2013.6
## 564                                           -1             1 December/2013.6
## 565                                           -1             1 December/2013.6
## 566                                           -1             1 December/2013.6
## 567                                           -1             1 December/2013.6
## 568                                           -1             1 December/2013.6
## 569                                           -1             1 December/2013.6
## 570                                            1             1 December/2013.6
## 571                                           -1             1 December/2013.6
## 572                                           -1             1 December/2013.6
## 573                                            1             1 December/2013.6
## 574                                           -1             1 December/2013.6
## 575                                           -1             1 December/2013.6
## 576                                            1             1 December/2013.6
## 577                                           -1             1 December/2013.6
## 578                                           -1             1 December/2013.6
## 579                                            1             1 December/2013.6
## 580                                            1             1 December/2013.6
## 581                                            1             1 December/2013.6
## 582                                            1             1 December/2013.6
## 583                                           -1             1 December/2013.6
## 584                                           -1             1 December/2013.6
## 585                                            1             1 December/2013.6
## 586                                            1             1 December/2013.6
## 587                                           -1             1 December/2013.6
## 588                                           -1             1 December/2013.6
## 589                                            1             1 December/2013.6
## 590                                           -1             1 December/2013.6
## 591                                            1             1 December/2013.6
## 592                                            1             1 December/2013.6
## 593                                           -1             1 December/2013.6
## 594                                           -1             1 December/2013.6
## 595                                            1             1 December/2013.6
## 596                                            1             1 December/2013.6
## 597                                            1             1 December/2013.6
## 598                                            1             1 December/2013.6
## 599                                            1             1 December/2013.6
## 600                                            1             1 December/2013.6
## 601                                           -1             1 December/2013.6
## 602                                            1             1 December/2013.6
## 603                                            1             1 December/2013.6
## 604                                           -1             1 December/2013.6
## 605                                           -1             1 December/2013.6
## 606                                           -1             1 December/2013.6
## 607                                           -1             1 December/2013.6
## 608                                            1             1 December/2013.6
## 609                                            1             1 December/2013.6
## 610                                           -1             1 December/2013.6
## 611                                            1             1 December/2013.6
## 612                                            1             1 December/2013.6
## 613                                            1             1 December/2013.6
## 614                                            1             1 December/2013.6
## 615                                            1             1 December/2013.6
## 616                                           -1             1 December/2013.6
## 617                                           -1             1 December/2013.6
## 618                                           -1             1 December/2013.6
## 619                                            1             1 December/2013.6
## 620                                            1             1 December/2013.6
## 621                                           -1             1 December/2013.6
## 622                                           -1             1 December/2013.6
## 623                                           -1             1 December/2013.6
## 624                                           -1             1 December/2013.6
## 625                                           -1             1 December/2013.6
## 626                                           -1             1 December/2013.6
## 627                                            1             1 December/2013.6
## 628                                            1             1 December/2013.6
## 629                                            1             1 December/2013.6
## 630                                           -1             1 December/2013.6
## 631                                           -1             1 December/2013.6
## 632                                            1             1 December/2013.6
## 633                                           -1             1 December/2013.6
## 634                                           -1             1 December/2013.6
## 635                                            1             1 December/2013.6
## 636                                           -1             1 December/2013.6
## 637                                           -1             1 December/2013.6
## 638                                           -1             1 December/2013.6
## 639                                            1             1 December/2013.6
## 640                                           -1             1 December/2013.6
## 641                                            1             1 December/2013.6
## 642                                           -1             1 December/2013.6
## 643                                           -1             1 December/2013.6
## 644                                           -1             1 December/2013.6
## 645                                           -1             1 December/2013.6
## 646                                            1             1 December/2013.6
## 647                                           -1             1 December/2013.6
## 648                                           -1             1 December/2013.6
## 649                                           -1             1 December/2013.6
## 650                                            1             1 December/2013.6
## 651                                            1             1 December/2013.6
## 652                                            1             1 December/2013.6
## 653                                           -1             1 December/2013.6
## 654                                           -1             1 December/2013.6
## 655                                           -1             1 December/2013.6
## 656                                           -1             1 December/2013.6
## 657                                           -1             1 December/2013.6
## 658                                           -1             1 December/2013.6
## 659                                           -1             1 December/2013.6
## 660                                           -1             1 December/2013.6
## 661                                            1             1 December/2013.6
## 662                                           -1             1 December/2013.6
## 663                                            1             1 December/2013.6
## 664                                            1             1 December/2013.6
## 665                                           -1             1 December/2013.6
## 666                                           -1             1 December/2013.6
## 667                                            1             1 December/2013.6
## 668                                           -1             1 December/2013.6
## 669                                           -1             1 December/2013.6
## 670                                           -1            -1 December/2013.6
## 671                                            1            -1 December/2013.6
## 672                                            1            -1 December/2013.6
## 673                                           -1            -1 December/2013.6
## 674                                           -1            -1 December/2013.6
## 675                                            1            -1 December/2013.6
## 676                                           -1            -1 December/2013.6
## 677                                            1            -1 December/2013.6
## 678                                            1            -1 December/2013.6
## 679                                           -1            -1 December/2013.6
## 680                                            1            -1 December/2013.6
## 681                                            1            -1 December/2013.6
## 682                                            1            -1 December/2013.6
## 683                                           -1            -1 December/2013.6
## 684                                           -1            -1 December/2013.6
## 685                                           -1            -1 December/2013.6
## 686                                            1            -1 December/2013.6
## 687                                            1            -1 December/2013.6
## 688                                            1            -1 December/2013.6
## 689                                            1            -1 December/2013.6
## 690                                            1            -1 December/2013.6
## 691                                           -1            -1 December/2013.6
## 692                                            1            -1 December/2013.6
## 693                                           -1            -1 December/2013.6
## 694                                            1            -1 December/2013.6
## 695                                           -1            -1 December/2013.6
## 696                                           -1            -1 December/2013.6
## 697                                            1            -1 December/2013.6
## 698                                           -1            -1 December/2013.6
## 699                                           -1            -1 December/2013.6
## 700                                            1            -1 December/2013.6
## 701                                           -1            -1 December/2013.6
## 702                                           -1            -1 December/2013.6
## 703                                           -1            -1 December/2013.6
## 704                                            1            -1 December/2013.6
## 705                                            1             1      April/2014
## 706                                           -1             1      April/2014
## 707                                           -1             1      April/2014
## 708                                           -1             1      April/2014
## 709                                            1             1      April/2014
## 710                                            1             1      April/2014
## 711                                            1             1      April/2014
## 712                                            1             1      April/2014
## 713                                           -1             1      April/2014
## 714                                            1             1      April/2014
## 715                                           -1             1      April/2014
## 716                                            1             1      April/2014
## 717                                            1             1      April/2014
## 718                                           -1             1      April/2014
## 719                                            1             1      April/2014
## 720                                            1             1      April/2014
## 721                                           -1             1      April/2014
## 722                                            1             1      April/2014
## 723                                            1             1      April/2014
## 724                                            1             1      April/2014
## 725                                           -1             1      April/2014
## 726                                           -1             1      April/2014
## 727                                            1             1      April/2014
## 728                                            1             1      April/2014
## 729                                           -1             1      April/2014
## 730                                           -1             1      April/2014
## 731                                            1             1      April/2014
## 732                                            1             1      April/2014
## 733                                            1             1      April/2014
## 734                                           -1             1      April/2014
## 735                                            1             1      April/2014
## 736                                            1             1      April/2014
## 737                                            1             1      April/2014
## 738                                           -1             1      April/2014
## 739                                            1             1      April/2014
## 740                                            1             1      April/2014
## 741                                            1             1      April/2014
## 742                                           -1             1      April/2014
## 743                                            1             1      April/2014
## 744                                           -1             1      April/2014
## 745                                           -1             1      April/2014
## 746                                            1             1      April/2014
## 747                                           -1             1      April/2014
## 748                                            1             1      April/2014
## 749                                           -1             1      April/2014
## 750                                            1             1      April/2014
## 751                                           -1             1      April/2014
## 752                                           -1             1      April/2014
## 753                                           -1            -1      April/2014
## 754                                           -1            -1      April/2014
## 755                                           -1            -1      April/2014
## 756                                            1            -1      April/2014
## 757                                            1            -1      April/2014
## 758                                            1            -1      April/2014
## 759                                            1            -1      April/2014
## 760                                           -1            -1      April/2014
## 761                                            1            -1      April/2014
## 762                                           -1            -1      April/2014
## 763                                           -1            -1      April/2014
## 764                                            1            -1      April/2014
## 765                                           -1            -1      April/2014
## 766                                            1            -1      April/2014
## 767                                           -1            -1      April/2014
## 768                                           -1            -1      April/2014
## 769                                           -1            -1      April/2014
## 770                                            1            -1      April/2014
## 771                                            1            -1      April/2014
## 772                                            1            -1      April/2014
## 773                                            1            -1      April/2014
## 774                                            1            -1      April/2014
## 775                                            1            -1      April/2014
## 776                                            1            -1      April/2014
## 777                                            1            -1      April/2014
## 778                                            1            -1      April/2014
## 779                                            1            -1      April/2014
## 780                                            1            -1      April/2014
## 781                                            1            -1      April/2014
## 782                                            1            -1      April/2014
## 783                                            1            -1      April/2014
## 784                                            1            -1      April/2014
## 785                                            1            -1      April/2014
## 786                                            1            -1      April/2014
## 787                                            1            -1      April/2014
## 788                                            1            -1      April/2014
## 789                                            1            -1      April/2014
## 790                                            1            -1      April/2014
## 791                                            1            -1      April/2014
## 792                                            1            -1      April/2014
## 793                                            1            -1      April/2014
## 794                                            1            -1      April/2014
## 795                                            1            -1      April/2014
## 796                                            1            -1      April/2014
## 797                                            1            -1      April/2014
## 798                                            1            -1      April/2014
## 799                                            1            -1      April/2014
## 800                                            1            -1      April/2014
## 801                                           -1            -1      April/2014
## 802                                            1            -1      April/2014
## 803                                           -1            -1      April/2014
## 804                                            1            -1      April/2014
## 805                                            1            -1      April/2014
## 806                                            1            -1      April/2014
## 807                                            1            -1      April/2014
## 808                                           -1            -1      April/2014
## 809                                           -1            -1      April/2014
## 810                                           -1             1      April/2014
## 811                                            1             1      April/2014
## 812                                           -1             1      April/2014
## 813                                           -1             1      April/2014
## 814                                            1             1      April/2014
## 815                                            1             1      April/2014
## 816                                           -1             1      April/2014
## 817                                            1             1      April/2014
## 818                                           -1             1      April/2014
## 819                                           -1             1      April/2014
## 820                                            1             1      April/2014
## 821                                           -1             1      April/2014
## 822                                           -1             1      April/2014
## 823                                            1             1      April/2014
## 824                                            1             1      April/2014
## 825                                           -1             1      April/2014
## 826                                            1             1      April/2014
## 827                                            1             1      April/2014
## 828                                           -1             1      April/2014
## 829                                            1             1      April/2014
## 830                                           -1             1      April/2014
## 831                                            1             1      April/2014
## 832                                            1             1      April/2014
## 833                                            1             1      April/2014
## 834                                           -1             1      April/2014
## 835                                            1             1      April/2014
## 836                                            1             1      April/2014
## 837                                            1             1      April/2014
## 838                                           -1             1      April/2014
## 839                                            1             1      April/2014
## 840                                            1             1      April/2014
## 841                                            1             1      April/2014
## 842                                           -1             1      April/2014
## 843                                            1             1      April/2014
## 844                                           -1             1      April/2014
## 845                                            1             1      April/2014
## 846                                            1             1      April/2014
## 847                                           -1             1      April/2014
## 848                                            1             1      April/2014
## 849                                            1             1      April/2014
## 850                                           -1             1      April/2014
## 851                                            1             1      April/2014
## 852                                            1             1      April/2014
## 853                                            1             1      April/2014
## 854                                            1             1      April/2014
## 855                                           -1             1      April/2014
## 856                                           -1             1      April/2014
## 857                                            1             1      April/2014
## 858                                           -1             1      April/2014
## 859                                           -1             1      April/2014
## 860                                            1             1      April/2014
## 861                                            1             1      April/2014
## 862                                           -1             1      April/2014
## 863                                           -1             1      April/2014
## 864                                            1             1      April/2014
## 865                                            1             1      April/2014
## 866                                            1             1      April/2014
## 867                                            1             1      April/2014
## 868                                            1            -1      April/2014
## 869                                           -1            -1      April/2014
## 870                                           -1            -1      April/2014
## 871                                            1            -1      April/2014
## 872                                           -1            -1      April/2014
## 873                                           -1            -1      April/2014
## 874                                            1            -1      April/2014
## 875                                           -1            -1      April/2014
## 876                                            1            -1      April/2014
## 877                                            1            -1      April/2014
## 878                                            1            -1      April/2014
## 879                                            1            -1      April/2014
## 880                                            1            -1      April/2014
## 881                                            1            -1      April/2014
## 882                                            1            -1      April/2014
## 883                                           -1            -1      April/2014
## 884                                            1            -1      April/2014
## 885                                           -1            -1      April/2014
## 886                                           -1            -1      April/2014
## 887                                           -1            -1      April/2014
## 888                                           -1            -1      April/2014
## 889                                            1            -1      April/2014
## 890                                            1            -1      April/2014
## 891                                           -1            -1      April/2014
## 892                                           -1            -1      April/2014
## 893                                            1            -1      April/2014
## 894                                           -1            -1      April/2014
## 895                                            1            -1      April/2014
## 896                                           -1            -1      April/2014
## 897                                           -1            -1      April/2014
## 898                                           -1            -1      April/2014
## 899                                           -1            -1      April/2014
## 900                                           -1            -1      April/2014
## 901                                            1            -1      April/2014
## 902                                            1            -1      April/2014
## 903                                           -1            -1      April/2014
## 904                                            1            -1      April/2014
## 905                                           -1            -1      April/2014
## 906                                           -1            -1      April/2014
## 907                                            1            -1      April/2014
## 908                                           -1            -1      April/2014
## 909                                            1            -1      April/2014
## 910                                           -1            -1      April/2014
## 911                                           -1            -1      April/2014
## 912                                            1            -1      April/2015
## 913                                           -1            -1      April/2015
## 914                                           -1            -1      April/2015
## 915                                            1            -1      April/2015
## 916                                           -1            -1      April/2015
## 917                                            1            -1      April/2015
## 918                                           -1            -1      April/2015
## 919                                           -1            -1      April/2015
## 920                                           -1            -1      April/2015
## 921                                            1            -1      April/2015
## 922                                            1            -1      April/2015
## 923                                            1            -1      April/2015
## 924                                            1            -1      April/2015
## 925                                            1            -1      April/2015
## 926                                            1            -1      April/2015
## 927                                            1            -1      April/2015
## 928                                           -1            -1      April/2015
## 929                                            1            -1      April/2015
## 930                                           -1            -1      April/2015
## 931                                            1            -1      April/2015
## 932                                           -1            -1      April/2015
## 933                                           -1            -1      April/2015
## 934                                            1            -1      April/2015
## 935                                           -1            -1      April/2015
## 936                                            1            -1      April/2015
## 937                                           -1            -1      April/2015
## 938                                           -1            -1      April/2015
## 939                                           -1            -1      April/2015
## 940                                           -1            -1      April/2015
## 941                                           -1            -1      April/2015
## 942                                            1            -1      April/2015
## 943                                           -1            -1      April/2015
## 944                                           -1            -1      April/2015
## 945                                            1            -1      April/2015
## 946                                            1            -1      April/2015
## 947                                           -1            -1      April/2015
## 948                                            1            -1      April/2015
## 949                                           -1            -1      April/2015
## 950                                            1            -1      April/2015
## 951                                            1            -1      April/2015
## 952                                            1            -1      April/2015
## 953                                            1            -1      April/2015
## 954                                            1            -1      April/2015
## 955                                           -1            -1      April/2015
## 956                                            1            -1      April/2015
## 957                                           -1            -1      April/2015
## 958                                            1            -1      April/2015
## 959                                           -1            -1      April/2015
## 960                                           -1            -1      April/2015
## 961                                            1            -1      April/2015
## 962                                            1            -1      April/2015
## 963                                           -1             1      April/2015
## 964                                           -1             1      April/2015
## 965                                            1             1      April/2015
## 966                                           -1             1      April/2015
## 967                                            1             1      April/2015
## 968                                           -1             1      April/2015
## 969                                           -1             1      April/2015
## 970                                            1             1      April/2015
## 971                                           -1             1      April/2015
## 972                                            1             1      April/2015
## 973                                           -1             1      April/2015
## 974                                           -1             1      April/2015
## 975                                           -1             1      April/2015
## 976                                            1             1      April/2015
## 977                                           -1             1      April/2015
## 978                                            1             1      April/2015
## 979                                            1             1      April/2015
## 980                                            1             1      April/2015
## 981                                            1             1      April/2015
## 982                                           -1             1      April/2015
## 983                                            1             1      April/2015
## 984                                           -1             1      April/2015
## 985                                           -1             1      April/2015
## 986                                            1             1      April/2015
## 987                                            1             1      April/2015
## 988                                            1             1      April/2015
## 989                                           -1             1      April/2015
## 990                                            1             1      April/2015
## 991                                           -1             1      April/2015
## 992                                           -1             1      April/2015
## 993                                           -1             1      April/2015
## 994                                           -1             1      April/2015
## 995                                            1             1      April/2015
## 996                                            1             1      April/2015
## 997                                            1             1      April/2015
## 998                                            1             1      April/2015
## 999                                            1             1      April/2015
## 1000                                          -1             1      April/2015
## 1001                                           1             1      April/2015
## 1002                                          -1             1      April/2015
## 1003                                          -1             1      April/2015
## 1004                                           1             1      April/2015
## 1005                                           1             1      April/2015
## 1006                                          -1             1      April/2015
## 1007                                           1             1      April/2015
## 1008                                           1             1      April/2015
## 1009                                          -1             1      April/2015
## 1010                                           1             1      April/2015
## 1011                                          -1             1      April/2015
## 1012                                           1             1      April/2015
## 1013                                          -1             1      April/2015
## 1014                                          -1             1      April/2015
## 1015                                           1             1      April/2015
## 1016                                           1             1      April/2015
## 1017                                          -1             1      April/2015
## 1018                                          -1             1      April/2015
## 1019                                           1             1      April/2015
## 1020                                           1             1      April/2015
## 1021                                           1             1      April/2015
## 1022                                          -1             1      April/2015
## 1023                                          -1             1      April/2015
## 1024                                          -1             1      April/2015
## 1025                                           1             1      April/2015
## 1026                                           1             1      April/2015
## 1027                                          -1             1      April/2015
## 1028                                          -1             1      April/2015
## 1029                                          -1             1      April/2015
## 1030                                           1             1      April/2015
## 1031                                          -1             1      April/2015
## 1032                                          -1             1      April/2015
## 1033                                           1             1      April/2015
## 1034                                          -1             1      April/2015
## 1035                                           1             1      April/2015
## 1036                                           1             1      April/2015
## 1037                                           1             1      April/2015
## 1038                                          -1             1      April/2015
## 1039                                           1             1      April/2015
## 1040                                          -1             1      April/2015
## 1041                                           1             1      April/2015
## 1042                                           1             1      April/2015
## 1043                                           1             1      April/2015
## 1044                                           1             1      April/2015
## 1045                                          -1             1      April/2015
## 1046                                          -1             1      April/2015
## 1047                                          -1             1      April/2015
## 1048                                           1             1      April/2015
## 1049                                          -1             1      April/2015
## 1050                                          -1             1      April/2015
## 1051                                          -1             1      April/2015
## 1052                                           1            -1      April/2015
## 1053                                          -1            -1      April/2015
## 1054                                           1            -1      April/2015
## 1055                                           1            -1      April/2015
## 1056                                           1            -1      April/2015
## 1057                                           1            -1      April/2015
## 1058                                           1            -1      April/2015
## 1059                                           1            -1      April/2015
## 1060                                           1            -1      April/2015
## 1061                                           1            -1      April/2015
## 1062                                           1            -1      April/2015
## 1063                                           1            -1      April/2015
## 1064                                          -1             1   December/2016
## 1065                                           1             1   December/2016
## 1066                                          -1             1   December/2016
## 1067                                          -1             1   December/2016
## 1068                                           1             1   December/2016
## 1069                                           1             1   December/2016
## 1070                                           1             1   December/2016
## 1071                                           1             1   December/2016
## 1072                                           1             1   December/2016
## 1073                                           1             1   December/2016
## 1074                                          -1             1   December/2016
## 1075                                           1             1   December/2016
## 1076                                          -1             1   December/2016
## 1077                                          -1             1   December/2016
## 1078                        wings torn        -1             1   December/2016
## 1079                        wings torn         1             1   December/2016
## 1080                        wings torn        -1             1   December/2016
## 1081                                           1             1   December/2016
## 1082                                           1             1   December/2016
## 1083                                          -1             1   December/2016
## 1084                        wings torn         1             1   December/2016
## 1085                                           1             1   December/2016
## 1086                        wings torn        -1             1   December/2016
## 1087                                          -1             1   December/2016
## 1088                        wings torn        -1             1   December/2016
## 1089                        wings torn        -1             1   December/2016
## 1090                        wings torn        -1             1   December/2016
## 1091                        wings torn         1             1   December/2016
## 1092                        wings torn        -1             1   December/2016
## 1093                        wings torn        -1             1   December/2016
## 1094                                           1             1   December/2016
## 1095                                           1             1   December/2016
## 1096                        wings torn        -1             1   December/2016
## 1097                                           1             1   December/2016
## 1098                                          -1             1   December/2016
## 1099                                          -1             1   December/2016
## 1100                                          -1             1   December/2016
## 1101                                           1             1   December/2016
## 1102                        wings torn        -1             1   December/2016
## 1103                                           1             1   December/2016
## 1104                        wings torn        -1             1   December/2016
## 1105                                           1             1   December/2016
## 1106                                           1             1   December/2016
## 1107                                           1             1   December/2016
## 1108                        wings torn         1             1   December/2016
## 1109                                           1             1   December/2016
## 1110                                          -1             1   December/2016
## 1111                        wings torn        -1             1   December/2016
## 1112                        wings torn         1             1   December/2016
## 1113                         tips torn         1             1   December/2016
## 1114                                           1             1   December/2016
## 1115                                          -1             1   December/2016
## 1116                         tips torn        -1             1   December/2016
## 1117                         tips torn        -1             1   December/2016
## 1118                         tips torn        -1             1   December/2016
## 1119                                           1             1   December/2016
## 1120                                          -1             1   December/2016
## 1121                                          -1             1   December/2016
## 1122                                          -1             1   December/2016
## 1123                                          -1             1   December/2016
## 1124                                          -1             1   December/2016
## 1125                                          -1             1   December/2016
## 1126                                           1             1   December/2016
## 1127                                           1             1   December/2016
## 1128                                          -1             1   December/2016
## 1129                                          -1             1   December/2016
## 1130                                          -1             1   December/2016
## 1131                                          -1             1   December/2016
## 1132                                          -1             1   December/2016
## 1133                                          -1             1   December/2016
## 1134                        wings torn         1            -1   December/2016
## 1135                        wings torn         1            -1   December/2016
## 1136                        wings torn        -1            -1   December/2016
## 1137                                          -1            -1   December/2016
## 1138                        wings torn        -1            -1   December/2016
## 1139                                           1            -1   December/2016
## 1140                        wings torn        -1            -1   December/2016
## 1141                        wings torn         1            -1   December/2016
## 1142                                           1            -1   December/2016
## 1143                                           1            -1   December/2016
## 1144                                           1            -1   December/2016
## 1145                                           1            -1   December/2016
## 1146                                           1            -1   December/2016
## 1147                                          -1            -1   December/2016
## 1148                                          -1            -1   December/2016
## 1149                                          -1            -1   December/2016
## 1150                        wings torn        -1            -1   December/2016
## 1151                        wings torn        -1            -1   December/2016
## 1152                                           1            -1   December/2016
## 1153                        wings torn        -1            -1   December/2016
## 1154                                          -1            -1   December/2016
## 1155                                           1            -1   December/2016
## 1156                                          -1            -1   December/2016
## 1157                                           1            -1   December/2016
## 1158                                           1            -1   December/2016
## 1159                                          -1            -1   December/2016
## 1160                                           1            -1   December/2016
## 1161                                           1            -1   December/2016
## 1162                        wings torn        -1            -1   December/2016
## 1163                        wings torn        -1            -1   December/2016
## 1164                                          -1            -1   December/2016
## 1165                        wings torn        -1            -1   December/2016
## 1166                        wings torn         1            -1   December/2016
## 1167                                           1            -1   December/2016
## 1168                                           1            -1   December/2016
## 1169                                          -1            -1   December/2016
## 1170                                           1            -1   December/2016
## 1171                  malformed thorax        -1            -1   December/2016
## 1172                                           1            -1   December/2016
## 1173                        wings torn        -1            -1   December/2016
## 1174                                           1            -1   December/2016
## 1175                                           1            -1   December/2016
## 1176                        wings torn         1            -1   December/2016
## 1177                                           1            -1   December/2016
## 1178                                          -1            -1   December/2016
## 1179                                          -1            -1   December/2016
## 1180                                          -1            -1   December/2016
## 1181                                          -1            -1   December/2016
## 1182                        wings torn         1            -1   December/2016
## 1183                        wings torn        -1            -1   December/2016
## 1184                        wings torn        -1            -1   December/2016
## 1185                                          -1            -1   December/2016
## 1186                                          -1            -1   December/2016
## 1187                                           1            -1   December/2016
## 1188                                          -1            -1   December/2016
## 1189                                          -1            -1   December/2016
## 1190                                          -1            -1   December/2016
## 1191                                          -1            -1   December/2016
## 1192                                          -1            -1   December/2016
## 1193                                           1            -1   December/2016
## 1194                                           1            -1   December/2016
## 1195                                           1            -1   December/2016
## 1196                                           1            -1   December/2016
## 1197                                          -1            -1   December/2016
## 1198                        wings torn         1             1   December/2016
## 1199                        wings torn         1             1   December/2016
## 1200                        wings torn        -1             1   December/2016
## 1201                        wings torn         1             1   December/2016
## 1202                        wings torn        -1             1   December/2016
## 1203                        wings torn        -1             1   December/2016
## 1204                        wings torn         1             1   December/2016
## 1205                                           1             1   December/2016
## 1206                        wings torn        -1             1   December/2016
## 1207                                          -1             1   December/2016
## 1208                        wings torn         1             1   December/2016
## 1209                        wings torn        -1             1   December/2016
## 1210                        wings torn        -1             1   December/2016
## 1211                                          -1             1   December/2016
## 1212                        wings torn        -1             1   December/2016
## 1213                        wings torn        -1             1   December/2016
## 1214                        wings torn         1             1   December/2016
## 1215                                           1             1   December/2016
## 1216                        wings torn        -1             1   December/2016
## 1217                        wings torn         1             1   December/2016
## 1218                        wings torn        -1             1   December/2016
## 1219                        wings torn        -1             1   December/2016
## 1220                                           1             1   December/2016
## 1221                        wings torn        -1             1   December/2016
## 1222                        wings torn        -1             1   December/2016
## 1223                        wings torn        -1             1   December/2016
## 1224                                          -1             1   December/2016
## 1225                        wings torn        -1             1   December/2016
## 1226                        wings torn        -1             1   December/2016
## 1227                        wings torn        -1             1   December/2016
## 1228                                          -1             1   December/2016
## 1229                                          -1             1   December/2016
## 1230                         tips torn         1             1   December/2016
## 1231                                          -1             1   December/2016
## 1232                        wings torn        -1             1   December/2016
## 1233                                          -1             1   December/2016
## 1234                                           1             1   December/2016
## 1235                                           1             1   December/2016
## 1236                                           1             1   December/2016
## 1237                                           1             1   December/2016
## 1238                                           1             1   December/2016
## 1239                                           1             1   December/2016
## 1240                                          -1             1   December/2016
## 1241                                           1             1   December/2016
## 1242                                           1             1   December/2016
## 1243                                           1             1   December/2016
## 1244                                           1             1   December/2016
## 1245                                          -1             1   December/2016
## 1246                                          -1             1   December/2016
## 1247                                           1             1   December/2016
## 1248                                          -1             1   December/2016
## 1249                                          -1             1   December/2016
## 1250                                           1             1   December/2016
## 1251                                           1             1   December/2016
## 1252                                           1             1   December/2016
## 1253                                           1             1   December/2016
## 1254                                          -1             1   December/2016
## 1255                                          -1             1   December/2016
## 1256                                           1             1   December/2016
## 1257                                          -1             1   December/2016
## 1258                                          -1             1   December/2016
## 1259                                           1             1   December/2016
## 1260                                           1             1   December/2016
## 1261                                           1             1   December/2016
## 1262                                           1             1   December/2016
## 1263                                           1             1   December/2016
## 1264                                          -1             1   December/2016
## 1265                                           1             1   December/2016
## 1266                                          -1             1   December/2016
## 1267                                          -1             1   December/2016
## 1268                                           1             1   December/2016
## 1269                                           1             1   December/2016
## 1270                                          -1             1   December/2016
## 1271                                           1             1   December/2016
## 1272                                          -1             1   December/2016
## 1273                                          -1             1   December/2016
## 1274                                          -1             1   December/2016
## 1275                                          -1             1   December/2016
## 1276                                          -1             1   December/2016
## 1277                                          -1             1   December/2016
## 1278                                          -1            -1   December/2016
## 1279                                          -1            -1   December/2016
## 1280                                          -1            -1   December/2016
## 1281                                          -1            -1   December/2016
## 1282                                           1            -1   December/2016
## 1283                                          -1            -1   December/2016
## 1284                                           1            -1   December/2016
## 1285                                          -1            -1   December/2016
## 1286                                           1            -1   December/2016
## 1287                                           1            -1   December/2016
## 1288                                           1            -1   December/2016
## 1289                                           1            -1   December/2016
## 1290                                          -1            -1   December/2016
## 1291                                           1            -1   December/2016
## 1292                                           1            -1   December/2016
## 1293                                           1            -1   December/2016
## 1294                                          -1            -1   December/2016
## 1295                                           1            -1   December/2016
## 1296                                           1            -1   December/2016
## 1297                                           1            -1   December/2016
## 1298                                           1            -1   December/2016
## 1299                                           1            -1   December/2016
## 1300                                          -1            -1   December/2016
## 1301                                           1            -1   December/2016
## 1302                                          -1            -1   December/2016
## 1303                                          -1            -1   December/2016
## 1304                                          -1            -1   December/2016
## 1305                                           1            -1   December/2016
## 1306                                           1            -1   December/2016
## 1307                                          -1            -1   December/2016
## 1308                                          -1            -1   December/2016
## 1309                                          -1            -1   December/2016
## 1310                                          -1            -1   December/2016
## 1311                                          -1            -1   December/2016
## 1312                                          -1            -1   December/2016
## 1313                                           1            -1   December/2016
## 1314                                          -1            -1   December/2016
## 1315                                          -1             1     August/2017
## 1316                                          -1             1     August/2017
## 1317                                           1             1     August/2017
## 1318                                           1             1     August/2017
## 1319                                          -1             1     August/2017
## 1320                                          -1             1     August/2017
## 1321                                           1             1     August/2017
## 1322                                           1             1     August/2017
## 1323                                           1             1     August/2017
## 1324                                          -1             1     August/2017
## 1325                                          -1             1     August/2017
## 1326                                          -1             1     August/2017
## 1327                                           1             1     August/2017
## 1328                                           1             1     August/2017
## 1329                                          -1             1     August/2017
## 1330                                          -1             1     August/2017
## 1331                                           1             1     August/2017
## 1332                                           1             1     August/2017
## 1333                                           1             1     August/2017
## 1334                        wings torn         1             1     August/2017
## 1335                                           1             1     August/2017
## 1336                                           1             1     August/2017
## 1337                                          -1             1     August/2017
## 1338                                          -1             1     August/2017
## 1339                                          -1             1     August/2017
## 1340                                          -1             1     August/2017
## 1341                                           1             1     August/2017
## 1342                                           1             1     August/2017
## 1343                                          -1             1     August/2017
## 1344                                           1             1     August/2017
## 1345                                           1             1     August/2017
## 1346                                           1             1     August/2017
## 1347                                          -1             1     August/2017
## 1348                                          -1             1     August/2017
## 1349                                          -1             1     August/2017
## 1350                                          -1             1     August/2017
## 1351                                           1             1     August/2017
## 1352                                           1             1     August/2017
## 1353                                          -1             1     August/2017
## 1354                                          -1             1     August/2017
## 1355                                           1             1     August/2017
## 1356                                          -1             1     August/2017
## 1357                                           1             1     August/2017
## 1358                                           1             1     August/2017
## 1359                                          -1             1     August/2017
## 1360                                           1             1     August/2017
## 1361                                          -1             1     August/2017
## 1362                                          -1             1     August/2017
## 1363                                           1             1     August/2017
## 1364                                          -1             1     August/2017
## 1365                                          -1             1     August/2017
## 1366                                           1             1     August/2017
## 1367                                          -1             1     August/2017
## 1368                                           1             1     August/2017
## 1369                                           1             1     August/2017
## 1370                                          -1             1     August/2017
## 1371                                           1             1     August/2017
## 1372                                           1             1     August/2017
## 1373                                          -1             1     August/2017
## 1374                                          -1             1     August/2017
## 1375                       teal marked        -1             1     August/2017
## 1376                       teal marked         1             1     August/2017
## 1377                       teal marked         1             1     August/2017
## 1378                                          -1             1     August/2017
## 1379                       teal marked         1             1     August/2017
## 1380                                           1             1     August/2017
## 1381                                           1             1     August/2017
## 1382                                           1             1     August/2017
## 1383                       teal marked        -1             1     August/2017
## 1384                                          -1             1     August/2017
## 1385                                          -1             1     August/2017
## 1386                                           1             1     August/2017
## 1387                                          -1             1     August/2017
## 1388                                           1             1     August/2017
## 1389                 wings torn at end        -1             1     August/2017
## 1390                                          -1             1     August/2017
## 1391                                          -1             1     August/2017
## 1392                       teal marked        -1             1     August/2017
## 1393                                           1             1     August/2017
## 1394                                          -1             1     August/2017
## 1395                                          -1             1     August/2017
## 1396                                           1             1     August/2017
## 1397                                          -1             1     August/2017
## 1398                                          -1             1     August/2017
## 1399                                           1             1     August/2017
## 1400                                          -1             1     August/2017
## 1401                                          -1             1     August/2017
## 1402                                          -1             1     August/2017
## 1403                                          -1             1     August/2017
## 1404                       teal marked        -1             1     August/2017
## 1405                                           1             1     August/2017
## 1406                                           1             1     August/2017
## 1407                 wings torn at end        -1             1     August/2017
## 1408                                          -1             1     August/2017
## 1409                       teal marked         1             1     August/2017
## 1410                       teal marked         1             1     August/2017
## 1411                                          -1             1     August/2017
## 1412                       teal marked        -1             1     August/2017
## 1413                                           1             1     August/2017
## 1414                                           1             1     August/2017
## 1415                       teal marked        -1             1     August/2017
## 1416                                           1             1     August/2017
## 1417                 wings torn at end         1             1     August/2017
## 1418                                           1             1     August/2017
## 1419                       teal marked        -1             1     August/2017
## 1420                                           1             1     August/2017
## 1421   wings torn at end; teal marked          1             1     August/2017
## 1422                                          -1             1     August/2017
## 1423                                           1             1     August/2017
## 1424                       teal marked         1             1     August/2017
## 1425                       teal marked        -1             1     August/2017
## 1426                       teal marked         1             1     August/2017
## 1427                                          -1             1     August/2017
## 1428                                           1             1     August/2017
## 1429                                           1             1     August/2017
## 1430                       teal marked         1             1     August/2017
## 1431                                           1             1     August/2017
## 1432                                          -1             1     August/2017
## 1433                                           1             1     August/2017
## 1434                                           1             1     August/2017
## 1435                                           1             1     August/2017
## 1436                                          -1             1     August/2017
## 1437                                          -1             1     August/2017
## 1438                                           1             1     August/2017
## 1439                                          -1             1     August/2017
## 1440                                          -1             1     August/2017
## 1441                                          -1             1     August/2017
## 1442                                          -1             1     August/2017
## 1443                                          -1             1     August/2017
## 1444                                          -1             1     August/2017
## 1445                                           1             1     August/2017
## 1446                                           1             1     August/2017
## 1447                                          -1             1     August/2017
## 1448                                          -1             1     August/2017
## 1449                                           1             1     August/2017
## 1450                                          -1             1     August/2017
## 1451                                           1             1     August/2017
## 1452                                          -1             1     August/2017
## 1453                                           1             1     August/2017
## 1454                                          -1             1     August/2017
## 1455                                          -1             1     August/2017
## 1456                                           1             1     August/2017
## 1457                                          -1             1     August/2017
## 1458                                          -1             1     August/2017
## 1459                                           1             1     August/2017
## 1460                                           1             1     August/2017
## 1461                                          -1             1     August/2017
## 1462                                           1             1     August/2017
## 1463                                          -1             1     August/2017
## 1464                                           1             1     August/2017
## 1465                                           1             1     August/2017
## 1466                                           1             1     August/2017
## 1467                                           1             1     August/2017
## 1468                                          -1             1     August/2017
## 1469                                           1             1     August/2017
## 1470                                          -1             1     August/2017
## 1471                                          -1             1     August/2017
## 1472                                          -1             1     August/2017
## 1473                                           1             1     August/2017
## 1474                                           1             1     August/2017
## 1475                                          -1             1     August/2017
## 1476                                           1             1     August/2017
## 1477                                           1             1     August/2017
## 1478                                           1             1     August/2017
## 1479                                           1             1     August/2017
## 1480                                           1             1     August/2017
## 1481                                          -1             1     August/2017
## 1482                                           1             1     August/2017
## 1483                                           1             1     August/2017
## 1484                                           1             1     August/2017
## 1485                                           1             1     August/2017
## 1486                                           1             1     August/2017
## 1487                                          -1             1     August/2017
## 1488                                          -1             1     August/2017
## 1489                                          -1             1     August/2017
## 1490                                           1             1     August/2017
## 1491                                          -1             1     August/2017
## 1492                                          -1             1     August/2017
## 1493                                           1             1     August/2017
## 1494                                          -1             1     August/2017
## 1495                                           1             1     August/2017
## 1496                                          -1             1     August/2017
## 1497                                          -1             1     August/2017
## 1498                                           1             1     August/2017
## 1499                                          -1             1     August/2017
## 1500                                          -1             1     August/2017
## 1501                                          -1             1     August/2017
## 1502                                           1            -1     August/2017
## 1503                                          -1            -1     August/2017
## 1504                                          -1            -1     August/2017
## 1505                                          -1            -1     August/2017
## 1506                                           1            -1     August/2017
## 1507                                          -1            -1     August/2017
## 1508                                          -1            -1     August/2017
## 1509                                          -1            -1     August/2017
## 1510                                           1            -1     August/2017
## 1511                                          -1            -1     August/2017
## 1512                                           1            -1     August/2017
## 1513                                          -1            -1     August/2017
## 1514                                          -1            -1     August/2017
## 1515                                          -1            -1     August/2017
## 1516                                          -1            -1     August/2017
## 1517                                           1            -1     August/2017
## 1518                                          -1            -1     August/2017
## 1519                                          -1            -1     August/2017
## 1520                                           1            -1     August/2017
## 1521                                           1            -1     August/2017
## 1522                                           1            -1     August/2017
## 1523                                           1            -1     August/2017
## 1524                                          -1            -1     August/2017
## 1525                                          -1            -1     August/2017
## 1526                                           1            -1     August/2017
## 1527                                           1            -1     August/2017
## 1528                                          -1            -1     August/2017
## 1529                                          -1            -1     August/2017
## 1530                                           1            -1     August/2017
## 1531                                           1            -1     August/2017
## 1532                                          -1            -1     August/2017
## 1533                                          -1            -1     August/2017
## 1534                                          -1            -1     August/2017
## 1535                                          -1            -1     August/2017
## 1536                                          -1            -1     August/2017
## 1537                                          -1            -1     August/2017
## 1538                                           1            -1     August/2017
## 1539                                          -1            -1     August/2017
## 1540                                           1            -1     August/2017
## 1541                                          -1            -1     August/2017
## 1542                                          -1            -1     August/2017
## 1543                                           1            -1     August/2017
## 1544                                           1            -1     August/2017
## 1545                                           1            -1     August/2017
## 1546                                           1            -1     August/2017
## 1547                                          -1            -1     August/2017
## 1548                                           1            -1     August/2017
## 1549                                           1            -1     August/2017
## 1550                                          -1            -1     August/2017
## 1551                                          -1            -1     August/2017
## 1552                                          -1            -1     August/2017
## 1553                                           1            -1     August/2017
## 1554                                          -1            -1     August/2017
## 1555                                           1            -1     August/2017
## 1556                                          -1            -1     August/2017
## 1557                                          -1            -1     August/2017
## 1558                                           1            -1     August/2017
## 1559                                          -1            -1     August/2017
## 1560                                           1            -1     August/2017
## 1561                                          -1            -1     August/2017
## 1562                                          -1            -1     August/2017
## 1563                                          -1            -1     August/2017
## 1564                                          -1            -1     August/2017
## 1565                                          -1            -1     August/2017
## 1566                                          -1            -1     August/2017
## 1567                                           1            -1     August/2017
## 1568                                          -1            -1     August/2017
## 1569                                          -1            -1     August/2017
## 1570                                          -1            -1     August/2017
## 1571                                          -1            -1     August/2017
## 1572                                           1            -1     August/2017
## 1573                                          -1            -1     August/2017
## 1574                                           1            -1     August/2017
## 1575                                           1            -1     August/2017
## 1576                                           1            -1     August/2017
## 1577                                          -1            -1     August/2017
## 1578                                           1            -1     August/2017
## 1579                                           1            -1     August/2017
## 1580                                           1            -1     August/2017
## 1581                                          -1            -1     August/2017
## 1582                                          -1            -1     August/2017
## 1583                                           1            -1     August/2017
## 1584                                          -1            -1     August/2017
## 1585                                          -1            -1     August/2017
## 1586                                          -1            -1     August/2017
## 1587                                          -1            -1     August/2017
## 1588                                          -1            -1     August/2017
## 1589                                           1            -1     August/2017
## 1590                                          -1            -1     August/2017
## 1591                                           1            -1     August/2017
## 1592                                           1            -1     August/2017
## 1593                                          -1            -1     August/2017
## 1594                                          -1             1     August/2017
## 1595                                           1             1     August/2017
## 1596                                           1             1     August/2017
## 1597                                          -1             1     August/2017
## 1598                        wings torn         1             1     August/2017
## 1599                                          -1             1     August/2017
## 1600                                           1             1     August/2017
## 1601                                          -1             1     August/2017
## 1602                                           1             1     August/2017
## 1603                                          -1             1     August/2017
## 1604                                          -1             1     August/2017
## 1605                                          -1             1     August/2017
## 1606                                           1             1     August/2017
## 1607                                           1             1     August/2017
## 1608                                           1             1     August/2017
## 1609                                           1             1     August/2017
## 1610                                           1             1     August/2017
## 1611                                          -1             1     August/2017
## 1612                                          -1             1     August/2017
## 1613                                           1             1     August/2017
## 1614                                          -1             1     August/2017
## 1615                                          -1             1     August/2017
## 1616                                          -1             1     August/2017
## 1617                                           1             1     August/2017
## 1618                                          -1             1     August/2017
## 1619                                           1             1     August/2017
## 1620                                           1             1     August/2017
## 1621                                          -1             1     August/2017
## 1622                                          -1             1     August/2017
## 1623                                          -1             1     August/2017
## 1624                                           1             1     August/2017
## 1625                                          -1             1     August/2017
## 1626                                           1             1     August/2017
## 1627                                          -1             1     August/2017
## 1628                                           1             1     August/2017
## 1629                                           1             1     August/2017
## 1630                                          -1             1     August/2017
## 1631                                           1             1     August/2017
## 1632                                           1             1     August/2017
## 1633                                          -1             1     August/2017
## 1634                                           1             1     August/2017
## 1635                                          -1             1     August/2017
## 1636                                          -1             1     August/2017
## 1637                                          -1             1     August/2017
## 1638                                           1             1     August/2017
## 1639                                          -1             1     August/2017
## 1640                                          -1             1     August/2017
## 1641                                          -1             1     August/2017
## 1642                                           1             1     August/2017
## 1643                                           1             1     August/2017
## 1644                                          -1             1     August/2017
## 1645                                          -1             1     August/2017
## 1646                                           1             1     August/2017
## 1647                                          -1             1     August/2017
## 1648                                           1             1     August/2017
## 1649                                          -1             1     August/2017
## 1650                                          -1             1     August/2017
## 1651                                           1             1     August/2017
## 1652                                           1             1     August/2017
## 1653                                          -1             1     August/2017
## 1654                                          -1             1     August/2017
## 1655                                           1             1     August/2017
## 1656                                          -1             1     August/2017
## 1657                                           1             1     August/2017
## 1658                                          -1             1     August/2017
## 1659                                           1             1     August/2017
## 1660                                          -1             1     August/2017
## 1661                                           1             1     August/2017
## 1662                                          -1             1     August/2017
## 1663                                          -1             1     August/2017
## 1664                                          -1             1     August/2017
## 1665                                          -1             1     August/2017
## 1666                                           1             1     August/2017
## 1667                                           1             1     August/2017
## 1668                                          -1             1     August/2017
## 1669                                           1             1     August/2017
## 1670                                           1             1     August/2017
## 1671                                           1             1     August/2017
## 1672                                          -1             1     August/2017
## 1673                                          -1             1     August/2017
## 1674                                          -1             1     August/2017
## 1675                                          -1             1     August/2017
## 1676                                           1             1     August/2017
## 1677                                          -1             1     August/2017
## 1678                                          -1             1     August/2017
## 1679                                          -1             1     August/2017
## 1680                                          -1             1     August/2017
## 1681                                           1             1     August/2017
## 1682                                          -1             1     August/2017
## 1683                                          -1             1     August/2017
## 1684                                          -1             1     August/2017
## 1685                                          -1             1     August/2017
## 1686                                           1             1     August/2017
## 1687                                           1             1     August/2017
## 1688                                           1             1     August/2017
## 1689                                           1             1     August/2017
## 1690                                          -1             1     August/2017
## 1691                                           1             1     August/2017
## 1692                                          -1             1     August/2017
## 1693                                          -1             1     August/2017
## 1694                                          -1             1     August/2017
## 1695                                          -1             1     August/2017
## 1696                                           1             1     August/2017
## 1697                                           1             1     August/2017
## 1698                                          -1             1     August/2017
## 1699                                           1             1     August/2017
## 1700                                          -1             1     August/2017
## 1701                                           1             1     August/2017
## 1702                                          -1             1     August/2017
## 1703                                           1             1     August/2017
## 1704                                          -1             1     August/2017
## 1705                                          -1             1     August/2017
## 1706                                          -1             1     August/2017
## 1707                                          -1             1     August/2017
## 1708                                          -1             1     August/2017
## 1709                                          -1             1     August/2017
## 1710                                           1             1     August/2017
## 1711                                           1             1     August/2017
## 1712                                          -1             1     August/2017
## 1713                                           1             1     August/2017
## 1714                                          -1             1     August/2017
## 1715                                          -1             1     August/2017
## 1716                                           1             1     August/2017
## 1717                                          -1             1     August/2017
## 1718                                          -1             1     August/2017
## 1719                                           1             1     August/2017
## 1720                                          -1             1     August/2017
## 1721                                          -1             1     August/2017
## 1722                                          -1             1     August/2017
## 1723                                          -1             1     August/2017
## 1724                                           1             1     August/2017
## 1725                                          -1             1     August/2017
## 1726                                          -1             1     August/2017
## 1727                                           1             1     August/2017
## 1728                                          -1             1     August/2017
## 1729                                           1             1     August/2017
## 1730                                          -1             1     August/2017
## 1731                                          -1             1     August/2017
## 1732                                          -1             1     August/2017
## 1733                                          -1             1     August/2017
## 1734                                          -1             1     August/2017
## 1735                                          -1             1     August/2017
## 1736                                           1             1     August/2017
## 1737                                          -1             1     August/2017
## 1738                                          -1             1     August/2017
## 1739                                          -1             1     August/2017
## 1740                                           1             1     August/2017
## 1741                                           1             1     August/2017
## 1742                                           1             1     August/2017
## 1743                                          -1             1  September/2018
## 1744                                          -1             1  September/2018
## 1745                                          -1             1  September/2018
## 1746                                           1             1  September/2018
## 1747                                           1             1  September/2018
## 1748                                          -1             1  September/2018
## 1749                                          -1             1  September/2018
## 1750                                           1             1  September/2018
## 1751                         torn tips         1             1  September/2018
## 1752                                           1             1  September/2018
## 1753                                           1             1  September/2018
## 1754                                           1             1  September/2018
## 1755                                           1             1  September/2018
## 1756                                           1             1  September/2018
## 1757                                           1             1  September/2018
## 1758                                           1             1  September/2018
## 1759                                           1             1  September/2018
## 1760                         torn tips        -1             1  September/2018
## 1761                                          -1             1  September/2018
## 1762                                          -1             1  September/2018
## 1763                                          -1             1  September/2018
## 1764                         torn tips        -1             1  September/2018
## 1765                                           1             1  September/2018
## 1766                         torn tips        -1             1  September/2018
## 1767                         torn tips         1             1  September/2018
## 1768                                           1             1  September/2018
## 1769                                          -1             1  September/2018
## 1770                                          -1             1  September/2018
## 1771                                          -1             1  September/2018
## 1772                                          -1             1  September/2018
## 1773                                           1             1  September/2018
## 1774                                           1             1  September/2018
## 1775                                           1             1  September/2018
## 1776                                          -1             1  September/2018
## 1777                                           1             1  September/2018
## 1778                                          -1             1  September/2018
## 1779                                          -1             1  September/2018
## 1780                                          -1             1  September/2018
## 1781                                           1             1  September/2018
## 1782                                          -1             1  September/2018
## 1783                                           1             1  September/2018
## 1784                                           1             1  September/2018
## 1785                                           1             1  September/2018
## 1786                                          -1             1  September/2018
## 1787                                          -1             1  September/2018
## 1788                                           1             1  September/2018
## 1789                         torn tips        -1             1  September/2018
## 1790                                          -1             1  September/2018
## 1791                                          -1             1  September/2018
## 1792                                           1             1  September/2018
## 1793                                           1             1  September/2018
## 1794                                           1             1  September/2018
## 1795                                          -1             1  September/2018
## 1796                                          -1             1  September/2018
## 1797                                           1             1  September/2018
## 1798                                           1             1  September/2018
## 1799                                           1             1  September/2018
## 1800                                           1             1  September/2018
## 1801                                          -1             1  September/2018
## 1802                                          -1             1  September/2018
## 1803                                          -1             1  September/2018
## 1804                                          -1             1  September/2018
## 1805                                           1             1  September/2018
## 1806                                          -1             1  September/2018
## 1807                                          -1            -1  September/2018
## 1808                                          -1            -1  September/2018
## 1809                                          -1            -1  September/2018
## 1810                                           1            -1  September/2018
## 1811                                           1            -1  September/2018
## 1812                                           1            -1  September/2018
## 1813                                           1            -1  September/2018
## 1814                                           1            -1  September/2018
## 1815                                           1            -1  September/2018
## 1816                                          -1            -1  September/2018
## 1817                                          -1            -1  September/2018
## 1818                                           1            -1  September/2018
## 1819                                           1            -1  September/2018
## 1820                                           1            -1  September/2018
## 1821                                          -1            -1  September/2018
## 1822                                          -1            -1  September/2018
## 1823                                           1            -1  September/2018
## 1824                                           1            -1  September/2018
## 1825                                           1            -1  September/2018
## 1826                                          -1            -1  September/2018
## 1827                                          -1            -1  September/2018
## 1828                                           1            -1  September/2018
## 1829                                           1            -1  September/2018
## 1830                                           1            -1  September/2018
## 1831                                           1            -1  September/2018
## 1832                                           1            -1  September/2018
## 1833                                          -1            -1  September/2018
## 1834                                          -1            -1  September/2018
## 1835                                           1            -1  September/2018
## 1836                                          -1            -1  September/2018
## 1837                                           1            -1  September/2018
## 1838                                           1            -1  September/2018
## 1839                                          -1            -1  September/2018
## 1840                                          -1            -1  September/2018
## 1841                                           1            -1  September/2018
## 1842                                           1            -1  September/2018
## 1843                                          -1            -1  September/2018
## 1844                                          -1            -1  September/2018
## 1845                                           1            -1  September/2018
## 1846                                          -1            -1  September/2018
## 1847                                           1            -1  September/2018
## 1848                                           1            -1  September/2018
## 1849                                           1            -1  September/2018
## 1850                                          -1            -1  September/2018
## 1851                                           1            -1  September/2018
## 1852                                          -1            -1  September/2018
## 1853                                          -1            -1  September/2018
## 1854                                          -1            -1  September/2018
## 1855                                           1            -1  September/2018
## 1856                                           1            -1  September/2018
## 1857                                           1            -1  September/2018
## 1858                                          -1            -1  September/2018
## 1859                                           1            -1  September/2018
## 1860                                          -1            -1  September/2018
## 1861                                           1            -1  September/2018
## 1862                                          -1            -1  September/2018
## 1863                                           1            -1  September/2018
## 1864                                           1            -1  September/2018
## 1865                                           1            -1  September/2018
## 1866                                           1            -1  September/2018
## 1867                                          -1            -1  September/2018
## 1868                                           1            -1  September/2018
## 1869                                           1            -1  September/2018
## 1870                                           1            -1  September/2018
## 1871                                          -1            -1  September/2018
## 1872                                           1            -1  September/2018
## 1873                                          -1            -1  September/2018
## 1874                                          -1            -1  September/2018
## 1875                                           1             1  September/2018
## 1876                                           1             1  September/2018
## 1877                                           1             1  September/2018
## 1878                                          -1             1  September/2018
## 1879                                          -1             1  September/2018
## 1880                                           1             1  September/2018
## 1881                                           1             1  September/2018
## 1882                                          -1             1  September/2018
## 1883                                           1             1  September/2018
## 1884                                          -1             1  September/2018
## 1885                                           1             1  September/2018
## 1886                         torn tips         1             1  September/2018
## 1887                                          -1             1  September/2018
## 1888                                           1             1  September/2018
## 1889                                          -1             1  September/2018
## 1890                                           1             1  September/2018
## 1891                                           1             1  September/2018
## 1892                                          -1             1  September/2018
## 1893                                           1             1  September/2018
## 1894                                           1             1  September/2018
## 1895                                           1             1  September/2018
## 1896                                          -1             1  September/2018
## 1897                                          -1             1  September/2018
## 1898                                           1             1  September/2018
## 1899                                          -1             1  September/2018
## 1900                                           1             1  September/2018
## 1901                                          -1             1  September/2018
## 1902                                           1             1  September/2018
## 1903                                           1             1  September/2018
## 1904                         torn tips         1             1  September/2018
## 1905                         torn tips        -1             1  September/2018
## 1906                                           1             1  September/2018
## 1907                         torn tips         1             1  September/2018
## 1908                                           1             1  September/2018
## 1909                                           1             1  September/2018
## 1910                                           1             1  September/2018
## 1911                                           1             1  September/2018
## 1912                                          -1             1  September/2018
## 1913                                          -1             1  September/2018
## 1914                                          -1             1  September/2018
## 1915                                          -1             1  September/2018
## 1916                                           1             1        May/2019
## 1917                                           1             1        May/2019
## 1918                                          -1             1        May/2019
## 1919                                           1             1        May/2019
## 1920                                          -1             1        May/2019
## 1921                                          -1             1        May/2019
## 1922                                           1             1        May/2019
## 1923                                          -1             1        May/2019
## 1924                                          -1             1        May/2019
## 1925                                           1             1        May/2019
## 1926                                           1             1        May/2019
## 1927                                           1             1        May/2019
## 1928                                          -1             1        May/2019
## 1929                                           1             1        May/2019
## 1930                                           1             1        May/2019
## 1931                                           1             1        May/2019
## 1932                                           1             1        May/2019
## 1933                                           1             1        May/2019
## 1934                                           1             1        May/2019
## 1935                                           1             1        May/2019
## 1936                                           1             1        May/2019
## 1937                                           1             1        May/2019
## 1938                                           1             1        May/2019
## 1939                                           1             1        May/2019
## 1940                                          -1             1        May/2019
## 1941                                           1             1        May/2019
## 1942                                           1             1        May/2019
## 1943                                          -1             1        May/2019
## 1944                                           1             1        May/2019
## 1945                                           1             1        May/2019
## 1946                                          -1             1        May/2019
## 1947                                           1             1        May/2019
## 1948                                           1             1        May/2019
## 1949                                           1             1        May/2019
## 1950                                           1             1        May/2019
## 1951                                           1             1        May/2019
## 1952                                           1             1        May/2019
## 1953                                           1             1        May/2019
## 1954                                           1             1        May/2019
## 1955                                           1             1        May/2019
## 1956                                           1             1        May/2019
## 1957                                           1             1        May/2019
## 1958                                          -1             1        May/2019
## 1959                                           1             1        May/2019
## 1960                                           1             1        May/2019
## 1961                                           1             1        May/2019
## 1962                                           1             1        May/2019
## 1963                                           1             1        May/2019
## 1964                                           1             1        May/2019
## 1965                                          -1             1        May/2019
## 1966                                          -1             1        May/2019
## 1967                                           1             1        May/2019
## 1968                                           1             1        May/2019
## 1969                                          -1             1        May/2019
## 1970                                          -1             1        May/2019
## 1971                                          -1             1        May/2019
## 1972                                          -1             1        May/2019
## 1973                 wings torn at end        -1             1        May/2019
## 1974                                          -1             1        May/2019
## 1975                                           1             1        May/2019
## 1976                                          -1             1        May/2019
## 1977                 wings torn at end        -1             1        May/2019
## 1978                                          -1             1        May/2019
## 1979                                          -1             1        May/2019
## 1980                                          -1             1        May/2019
## 1981                                           1             1        May/2019
## 1982                                           1             1        May/2019
## 1983                                          -1            -1        May/2019
## 1984                                          -1            -1        May/2019
## 1985                                           1            -1        May/2019
## 1986                                          -1            -1        May/2019
## 1987                      d1+d2 yellow         1            -1        May/2019
## 1988                                          -1            -1        May/2019
## 1989                      d1+d2 yellow        -1            -1        May/2019
## 1990                                           1            -1        May/2019
## 1991                                           1            -1        May/2019
## 1992                                           1            -1        May/2019
## 1993                                          -1            -1        May/2019
## 1994                                          -1            -1        May/2019
## 1995                      d1+d2 yellow         1            -1        May/2019
## 1996                                           1            -1        May/2019
## 1997                           d1 blue        -1            -1        May/2019
## 1998                                          -1            -1        May/2019
## 1999                                           1            -1        May/2019
## 2000                                           1            -1        May/2019
## 2001                        d1+d2 blue        -1            -1        May/2019
## 2002                                          -1            -1        May/2019
## 2003                         d1 yellow        -1            -1        May/2019
## 2004                                          -1            -1        May/2019
## 2005                                          -1            -1        May/2019
## 2006                                          -1            -1        May/2019
## 2007                                           1            -1        May/2019
## 2008                         d3 yellow        -1            -1        May/2019
## 2009                                           1            -1        May/2019
## 2010                                          -1            -1        May/2019
## 2011                                          -1            -1        May/2019
## 2012                           d2 pink        -1            -1        May/2019
## 2013                                          -1            -1        May/2019
## 2014                                           1            -1        May/2019
## 2015                                          -1            -1        May/2019
## 2016                           d1 blue        -1            -1        May/2019
## 2017                                          -1            -1        May/2019
## 2018                         d2 yellow        -1            -1        May/2019
## 2019                         d3 yellow        -1            -1        May/2019
## 2020                                           1            -1        May/2019
## 2021                                           1            -1        May/2019
## 2022                                           1            -1        May/2019
## 2023                                           1            -1        May/2019
## 2024                           d1 pink        -1            -1        May/2019
## 2025                                          -1            -1        May/2019
## 2026                           d1 blue        -1            -1        May/2019
## 2027                                           1            -1        May/2019
## 2028                                          -1            -1        May/2019
## 2029                                          -1            -1        May/2019
## 2030                                           1            -1        May/2019
## 2031                         d1 yellow        -1            -1        May/2019
## 2032                                           1            -1        May/2019
## 2033                         d3 yellow        -1            -1        May/2019
## 2034                                          -1            -1        May/2019
## 2035                                          -1            -1        May/2019
## 2036                                          -1            -1        May/2019
## 2037                                          -1            -1        May/2019
## 2038                                          -1            -1        May/2019
## 2039                                           1            -1        May/2019
## 2040                                          -1            -1        May/2019
## 2041                                           1            -1        May/2019
## 2042                                           1            -1        May/2019
## 2043                                           1            -1        May/2019
## 2044                                          -1            -1        May/2019
## 2045                                          -1            -1        May/2019
## 2046                                          -1            -1        May/2019
## 2047                                           1            -1        May/2019
## 2048                                          -1            -1        May/2019
## 2049                                          -1            -1        May/2019
## 2050                           d2 pink        -1            -1        May/2019
## 2051                                          -1            -1        May/2019
## 2052                         d2 yellow         1            -1        May/2019
## 2053                         d2 yellow        -1            -1        May/2019
## 2054                         d2 yellow        -1            -1        May/2019
## 2055                                          -1            -1        May/2019
## 2056                                          -1            -1        May/2019
## 2057                                          -1            -1        May/2019
## 2058                                          -1            -1        May/2019
## 2059                                           1             1        May/2019
## 2060                                           1             1        May/2019
## 2061                                           1             1        May/2019
## 2062                                           1             1        May/2019
## 2063                                           1             1        May/2019
## 2064                                           1             1        May/2019
## 2065                                           1             1        May/2019
## 2066                                           1             1        May/2019
## 2067                                           1             1        May/2019
## 2068                                           1             1        May/2019
## 2069                                          -1             1        May/2019
## 2070                                           1             1        May/2019
## 2071                                          -1             1        May/2019
## 2072                                           1             1        May/2019
## 2073                                          -1             1        May/2019
## 2074                        torn wings        -1             1        May/2019
## 2075                                           1             1        May/2019
## 2076                                           1             1        May/2019
## 2077                                           1             1        May/2019
## 2078                                           1             1        May/2019
## 2079                                           1             1        May/2019
## 2080                                           1             1        May/2019
## 2081                                           1             1        May/2019
## 2082                                           1             1        May/2019
## 2083                                           1             1        May/2019
## 2084                                          -1             1        May/2019
## 2085                                           1             1        May/2019
## 2086                                           1             1        May/2019
## 2087                                           1             1        May/2019
## 2088                       torn thorax         1             1        May/2019
## 2089                                           1             1        May/2019
## 2090                                           1             1        May/2019
## 2091                                           1             1        May/2019
## 2092                                           1             1        May/2019
## 2093                                           1             1        May/2019
## 2094                                           1             1        May/2019
## 2095                                           1             1        May/2019
## 2096                                           1             1        May/2019
## 2097                                           1             1        May/2019
## 2098                                           1             1        May/2019
## 2099                                           1             1        May/2019
## 2100                                           1             1        May/2019
## 2101                                           1             1        May/2019
## 2102                                           1             1        May/2019
## 2103                                          -1             1        May/2019
## 2104                                           1             1        May/2019
## 2105                                           1             1        May/2019
## 2106                                          -1             1        May/2019
## 2107                                          -1             1        May/2019
## 2108                                           1             1        May/2019
## 2109                       torn thorax        -1             1        May/2019
## 2110                                           1             1        May/2019
## 2111                                          -1             1        May/2019
## 2112                                           1             1        May/2019
## 2113                                          -1             1        May/2019
## 2114                                           1             1        May/2019
## 2115                                           1             1        May/2019
## 2116                                           1             1        May/2019
## 2117                                           1             1        May/2019
## 2118                                           1             1        May/2019
## 2119                                           1             1        May/2019
## 2120                                          -1             1        May/2019
## 2121                                           1            -1        May/2019
## 2122                                          -1            -1        May/2019
## 2123                                          -1            -1        May/2019
## 2124                                          -1            -1        May/2019
## 2125                                          -1            -1        May/2019
## 2126                                           1            -1        May/2019
## 2127                                          -1            -1        May/2019
## 2128                                          -1            -1        May/2019
## 2129                                           1            -1        May/2019
## 2130                                          -1            -1        May/2019
## 2131                                          -1            -1        May/2019
## 2132                         tips torn        -1            -1        May/2019
## 2133                                          -1            -1        May/2019
## 2134                                          -1            -1        May/2019
## 2135                                          -1            -1        May/2019
## 2136                                          -1            -1        May/2019
## 2137 tips torn; marked purple hind leg        -1            -1        May/2019
## 2138                                          -1            -1        May/2019
## 2139                                          -1            -1        May/2019
## 2140                                          -1            -1        May/2019
## 2141                         tips torn        -1            -1        May/2019
## 2142                                           1            -1        May/2019
## 2143                                          -1            -1        May/2019
## 2144                                          -1            -1        May/2019
## 2145                                           1            -1        May/2019
## 2146                                          -1            -1        May/2019
## 2147                                          -1            -1        May/2019
## 2148                                           1            -1        May/2019
## 2149                                          -1            -1        May/2019
## 2150                                          -1            -1        May/2019
## 2151                                           1            -1        May/2019
## 2152                                           1            -1        May/2019
## 2153                                           1            -1        May/2019
## 2154                                          -1            -1        May/2019
## 2155                                          -1            -1        May/2019
## 2156                                           1            -1        May/2019
## 2157                                           1            -1        May/2019
## 2158                                           1            -1        May/2019
## 2159                                          -1            -1        May/2019
## 2160                                           1            -1        May/2019
## 2161                                           1            -1        May/2019
## 2162                                           1            -1        May/2019
## 2163                                          -1            -1        May/2019
## 2164                                           1            -1        May/2019
## 2165                                           1            -1        May/2019
## 2166                                          -1            -1        May/2019
## 2167                                           1            -1        May/2019
## 2168                                          -1            -1        May/2019
## 2169                       marked blue        -1            -1        May/2019
## 2170                       marked blue        -1            -1        May/2019
## 2171                                          -1            -1        May/2019
## 2172                                          -1            -1        May/2019
## 2173                                          -1            -1        May/2019
## 2174                                          -1            -1        May/2019
## 2175                       marked blue         1            -1        May/2019
## 2176                                          -1            -1        May/2019
## 2177                       marked blue        -1            -1        May/2019
## 2178                    marked blue x3        -1            -1        May/2019
## 2179                                          -1            -1        May/2019
## 2180                       marked blue        -1            -1        May/2019
## 2181                                          -1            -1        May/2019
## 2182                       marked blue         1            -1        May/2019
## 2183                       marked blue         1            -1        May/2019
## 2184                                           1            -1        May/2019
## 2185                       marked blue        -1            -1        May/2019
## 2186                                           1            -1        May/2019
## 2187                                           1            -1        May/2019
## 2188                                           1            -1        May/2019
## 2189                    marked blue x2         1            -1        May/2019
## 2190                                           1            -1        May/2019
## 2191                                           1            -1        May/2019
## 2192                    marked blue x3        -1            -1        May/2019
## 2193                       marked blue        -1            -1        May/2019
## 2194                                          -1            -1        May/2019
## 2195                    marked blue x2        -1            -1        May/2019
## 2196                                           1            -1        May/2019
## 2197                                          -1            -1        May/2019
## 2198                                          -1            -1        May/2019
## 2199                                          -1            -1        May/2019
## 2200                                          -1            -1        May/2019
## 2201                       marked blue        -1            -1        May/2019
## 2202                                           1            -1        May/2019
## 2203                                          -1            -1        May/2019
## 2204                                          -1            -1        May/2019
## 2205                       marked blue        -1            -1        May/2019
## 2206                                          -1            -1        May/2019
## 2207                                          -1            -1        May/2019
## 2208                                          -1            -1        May/2019
## 2209                                           1            -1        May/2019
## 2210                       marked blue        -1            -1        May/2019
## 2211                       marked blue        -1            -1        May/2019
## 2212                                          -1            -1        May/2019
## 2213                                          -1            -1        May/2019
## 2214                       marked blue        -1            -1        May/2019
## 2215                                          -1            -1        May/2019
## 2216                                          -1            -1        May/2019
## 2217                                          -1            -1        May/2019
## 2218                                          -1            -1        May/2019
## 2219                                          -1            -1        May/2019
## 2220                                           1            -1        May/2019
## 2221                    marked blue x2         1            -1        May/2019
## 2222                                           1            -1        May/2019
## 2223                 torn tips; marked         1            -1        May/2019
## 2224                        torn tips         -1            -1        May/2019
## 2225                                           1            -1        May/2019
## 2226                                          -1            -1        May/2019
## 2227                                           1            -1        May/2019
## 2228                                           1            -1        May/2019
## 2229                            marked         1            -1        May/2019
## 2230                                           1            -1        May/2019
## 2231                                           1            -1        May/2019
## 2232                                           1            -1        May/2019
## 2233                         marked x2         1            -1        May/2019
## 2234                                          -1            -1        May/2019
## 2235                                           1            -1        May/2019
## 2236                            marked         1            -1        May/2019
## 2237                            marked        -1            -1        May/2019
## 2238                                          -1            -1        May/2019
## 2239                            marked         1            -1        May/2019
## 2240                                          -1            -1        May/2019
## 2241                                           1            -1        May/2019
## 2242                                           1            -1        May/2019
## 2243                                          -1            -1        May/2019
## 2244                                          -1            -1        May/2019
## 2245                                           1            -1        May/2019
## 2246                                           1            -1        May/2019
## 2247                                           1            -1        May/2019
## 2248                                           1            -1        May/2019
## 2249                                          -1            -1        May/2019
## 2250                                          -1            -1        May/2019
## 2251                                           1            -1        May/2019
## 2252                                           1            -1        May/2019
## 2253                                          -1            -1        May/2019
## 2254                                          -1            -1        May/2019
## 2255                                          -1            -1        May/2019
## 2256                                          -1            -1        May/2019
## 2257                                           1            -1        May/2019
## 2258                                           1            -1        May/2019
## 2259                    marked pink x2         1            -1        May/2019
## 2260                                          -1            -1        May/2019
## 2261                       marked pink         1            -1        May/2019
## 2262                            marked         1            -1        May/2019
## 2263                                          -1            -1        May/2019
## 2264                                          -1            -1        May/2019
## 2265                                           1            -1        May/2019
## 2266                                           1            -1        May/2019
## 2267                                          -1            -1        May/2019
## 2268                                          -1            -1        May/2019
## 2269                                           1            -1        May/2019
## 2270                                           1            -1        May/2019
## 2271                   marked white x2        -1            -1        May/2019
## 2272                                          -1            -1        May/2019
## 2273                                          -1            -1        May/2019
## 2274                       marked pink         1            -1        May/2019
## 2275                      marked white         1            -1        May/2019
## 2276                                           1            -1        May/2019
## 2277                                           1            -1        May/2019
## 2278                   marked white x2         1            -1        May/2019
## 2279                       marked pink        -1            -1        May/2019
## 2280                      marked white         1            -1        May/2019
## 2281                                           1            -1        May/2019
## 2282                                          -1            -1        May/2019
## 2283                                          -1            -1        May/2019
## 2284                                          -1            -1        May/2019
## 2285                       marked pink         1            -1        May/2019
## 2286                      marked white         1            -1        May/2019
## 2287                                          -1            -1        May/2019
## 2288                      marked white        -1            -1        May/2019
## 2289                                           1            -1        May/2019
## 2290                      marked white        -1            -1        May/2019
## 2291                                          -1            -1        May/2019
## 2292                                          -1            -1        May/2019
## 2293                                           1            -1        May/2019
## 2294                                           1            -1        May/2019
## 2295                                          -1            -1        May/2019
## 2296                                           1            -1        May/2019
## 2297                                           1            -1        May/2019
## 2298                       marked pink        -1            -1        May/2019
## 2299                                          -1            -1        May/2019
## 2300                      marked white         1            -1        May/2019
## 2301                                           1            -1        May/2019
## 2302                                           1            -1        May/2019
## 2303                                          -1            -1        May/2019
## 2304                   marked white d2         1            -1        May/2019
## 2305                                          -1            -1        May/2019
## 2306                                           1            -1        May/2019
## 2307                                          -1            -1        May/2019
## 2308                   marked white d3        -1            -1        May/2019
## 2309                                          -1            -1        May/2019
## 2310                                          -1            -1        May/2019
## 2311                                          -1            -1        May/2019
## 2312                   marked white d2        -1            -1        May/2019
## 2313               marked pink d1 + d3         1            -1        May/2019
## 2314                                          -1            -1        May/2019
## 2315                     white d1 + d3         1            -1        May/2019
## 2316                                          -1            -1        May/2019
## 2317                          white d3        -1            -1        May/2019
## 2318                                           1            -1        May/2019
## 2319                                          -1            -1        May/2019
## 2320                                          -1            -1        May/2019
## 2321                          white d2         1            -1        May/2019
## 2322                                          -1            -1        May/2019
## 2323                           pink d1         1            -1        May/2019
## 2324                           pink d3        -1            -1        May/2019
## 2325                                          -1            -1        May/2019
## 2326                                          -1            -1        May/2019
## 2327                                          -1            -1        May/2019
## 2328                                          -1            -1        May/2019
## 2329                                          -1            -1        May/2019
## 2330                     white d2 + d3        -1            -1        May/2019
## 2331                                          -1            -1        May/2019
## 2332                                          -1            -1        May/2019
## 2333                                          -1            -1        May/2019
## 2334                                           1            -1        May/2019
## 2335                         marked d3         1            -1        May/2019
## 2336                         marked d3         1            -1        May/2019
## 2337                         marked d3        -1            -1        May/2019
## 2338                                           1            -1        May/2019
## 2339                    marked d1 + d2        -1            -1        May/2019
## 2340                                           1            -1        May/2019
## 2341                    marked d2 + d3         1            -1        May/2019
## 2342                                          -1            -1        May/2019
## 2343                                           1            -1        May/2019
## 2344                         marked d1        -1            -1        May/2019
## 2345                                           1            -1        May/2019
## 2346                    marked d1 + d3        -1            -1        May/2019
## 2347                    marked d1 + d3        -1            -1        May/2019
## 2348                         marked d3         1            -1        May/2019
## 2349                                          -1            -1        May/2019
## 2350                                          -1            -1        May/2019
## 2351                         marked d3         1            -1        May/2019
## 2352                                          -1            -1        May/2019
## 2353                                           1            -1        May/2019
## 2354                         marked d1        -1            -1        May/2019
## 2355                                          -1            -1        May/2019
## 2356                         marked d1         1            -1        May/2019
## 2357                                          -1            -1        May/2019
## 2358                                          -1            -1        May/2019
## 2359                         marked d1        -1            -1        May/2019
## 2360                         marked d1         1            -1        May/2019
## 2361                                          -1            -1        May/2019
## 2362                                           1            -1        May/2019
## 2363          marked turquoise d1 + d3         1            -1        May/2019
## 2364               marked turquoise d3         1            -1        May/2019
## 2365          marked turquoise d1 + d3         1            -1        May/2019
## 2366                                           1            -1        May/2019
## 2367                                          -1            -1        May/2019
## 2368          marked turquoise d1 + d3         1            -1        May/2019
## 2369                                          -1            -1        May/2019
## 2370                                          -1            -1        May/2019
## 2371                                          -1            -1        May/2019
## 2372                                          -1            -1        May/2019
## 2373                                          -1            -1        May/2019
## 2374                                           1            -1        May/2019
## 2375                                           1            -1        May/2019
## 2376                                          -1            -1        May/2019
## 2377                                           1            -1        May/2019
## 2378                                           1            -1        May/2019
## 2379                                           1            -1        May/2019
## 2380                                          -1            -1        May/2019
## 2381                                          -1            -1        May/2019
## 2382                                          -1            -1        May/2019
## 2383                                           1            -1        May/2019
## 2384                                           1            -1        May/2019
## 2385                                           1            -1        May/2019
## 2386                                          -1            -1        May/2019
## 2387                                          -1            -1        May/2019
## 2388                                          -1            -1        May/2019
## 2389                                          -1            -1        May/2019
## 2390                                          -1            -1        May/2019
## 2391                                          -1            -1        May/2019
## 2392                                           1            -1        May/2019
## 2393                                          -1            -1        May/2019
## 2394                                          -1            -1        May/2019
## 2395                                           1            -1        May/2019
## 2396                                          -1            -1        May/2019
## 2397                                          -1            -1        May/2019
## 2398                                           1            -1        May/2019
## 2399                                           1            -1        May/2019
## 2400                                           1            -1        May/2019
## 2401                                           1            -1        May/2019
## 2402                                          -1            -1        May/2019
## 2403                                           1             1    October/2019
## 2404                                          -1             1    October/2019
## 2405                                          -1             1    October/2019
## 2406                                           1             1    October/2019
## 2407                                           1             1    October/2019
## 2408                 wings torn at end        -1             1    October/2019
## 2409                 wings torn at end        -1             1    October/2019
## 2410                 wings torn at end        -1             1    October/2019
## 2411                                          -1             1    October/2019
## 2412                 wings torn at end         1             1    October/2019
## 2413                                           1             1    October/2019
## 2414                 wings torn at end         1             1    October/2019
## 2415                                          -1             1    October/2019
## 2416                                          -1             1    October/2019
## 2417                                          -1             1    October/2019
## 2418                                          -1             1    October/2019
## 2419                                          -1             1    October/2019
## 2420                                           1             1    October/2019
## 2421                                          -1             1    October/2019
## 2422                                          -1             1    October/2019
## 2423                                           1             1    October/2019
## 2424                                          -1             1    October/2019
## 2425                                           1             1    October/2019
## 2426                                          -1             1    October/2019
## 2427                                          -1             1    October/2019
## 2428                                           1             1    October/2019
## 2429                                          -1             1    October/2019
## 2430                                           1             1    October/2019
## 2431                                           1             1    October/2019
## 2432                                           1             1    October/2019
## 2433                                           1             1    October/2019
## 2434                                           1             1    October/2019
## 2435                                          -1             1    October/2019
## 2436                                          -1             1    October/2019
## 2437                                          -1             1    October/2019
## 2438                                          -1             1    October/2019
## 2439                                          -1             1    October/2019
## 2440                                          -1             1    October/2019
## 2441                                          -1             1    October/2019
## 2442                                          -1             1    October/2019
## 2443                                          -1             1    October/2019
## 2444                                          -1             1    October/2019
## 2445                                          -1             1    October/2019
## 2446                 wings torn at end        -1             1    October/2019
## 2447                 wings torn at end        -1             1    October/2019
## 2448                 wings torn at end        -1             1    October/2019
## 2449                                           1             1    October/2019
## 2450                                          -1             1    October/2019
## 2451                                          -1             1    October/2019
## 2452                                           1             1    October/2019
## 2453                                          -1             1    October/2019
## 2454                 wings torn at end         1            -1    October/2019
## 2455                 wings torn at end         1            -1    October/2019
## 2456                                          -1            -1    October/2019
## 2457                 wings torn at end         1            -1    October/2019
## 2458                 wings torn at end        -1            -1    October/2019
## 2459                                           1            -1    October/2019
## 2460                                          -1            -1    October/2019
## 2461                                          -1            -1    October/2019
## 2462                 wings torn at end         1            -1    October/2019
## 2463                                          -1            -1    October/2019
## 2464                                          -1            -1    October/2019
## 2465                 wings torn at end         1            -1    October/2019
## 2466                 wings torn at end        -1            -1    October/2019
## 2467                                           1            -1    October/2019
## 2468                 wings torn at end         1            -1    October/2019
## 2469                 wings torn at end         1            -1    October/2019
## 2470                                          -1             1    October/2019
## 2471                                           1             1    October/2019
## 2472                                           1             1    October/2019
## 2473                                          -1             1    October/2019
## 2474                 wings torn at end        -1             1    October/2019
## 2475                                           1             1    October/2019
## 2476                                           1             1    October/2019
## 2477                                           1             1    October/2019
## 2478                                          -1             1    October/2019
## 2479                                           1             1    October/2019
## 2480                 wings torn at end        -1             1    October/2019
## 2481                 wings torn at end        -1             1    October/2019
## 2482                                           1             1    October/2019
## 2483                                           1             1    October/2019
## 2484                                           1             1    October/2019
## 2485                                          -1             1    October/2019
## 2486                                           1             1    October/2019
## 2487                                           1             1    October/2019
## 2488                                          -1             1    October/2019
## 2489                                          -1             1    October/2019
## 2490                                           1             1    October/2019
## 2491                                          -1             1    October/2019
## 2492                                          -1             1    October/2019
## 2493                                           1             1    October/2019
## 2494                                          -1             1    October/2019
## 2495                 wings torn at end        -1             1    October/2019
## 2496                                           1             1    October/2019
## 2497                                          -1             1    October/2019
## 2498                 wings torn at end         1             1    October/2019
## 2499                                          -1             1    October/2019
## 2500                                           1             1    October/2019
## 2501                                           1             1    October/2019
## 2502                                          -1             1    October/2019
## 2503                                          -1             1    October/2019
## 2504                                           1             1    October/2019
## 2505                                           1             1    October/2019
## 2506                                          -1             1    October/2019
## 2507                                          -1             1    October/2019
## 2508                                          -1             1    October/2019
## 2509                                          -1             1    October/2019
## 2510                                          -1             1    October/2019
## 2511                                          -1             1    October/2019
## 2512                 wings torn at end         1             1    October/2019
## 2513                                           1             1    October/2019
## 2514                                           1             1    October/2019
## 2515                                           1             1    October/2019
## 2516                 wings torn at end        -1             1    October/2019
## 2517                 wings torn at end         1             1    October/2019
## 2518                                          -1             1    October/2019
## 2519                 wings torn at end         1             1    October/2019
## 2520                                           1             1    October/2019
## 2521                 wings torn at end        -1             1    October/2019
## 2522                                          -1             1    October/2019
## 2523                                          -1             1    October/2019
## 2524                                           1             1    October/2019
## 2525                                          -1             1    October/2019
## 2526                                           1             1    October/2019
## 2527                                           1             1    October/2019
## 2528                        wings torn        -1             1    October/2019
## 2529                                          -1             1    October/2019
## 2530                                          -1             1    October/2019
## 2531                                           1             1    October/2019
## 2532                                           1             1    October/2019
## 2533                                          -1             1    October/2019
## 2534                                           1             1    October/2019
## 2535                                           1             1    October/2019
## 2536                 wings torn at end         1             1    October/2019
## 2537                                           1             1    October/2019
## 2538                                           1             1    October/2019
## 2539                                           1             1    October/2019
## 2540                 wings torn at end         1             1    October/2019
## 2541                                          -1             1    October/2019
## 2542                                          -1             1    October/2019
## 2543                 wings torn at end        -1             1    October/2019
## 2544                                           1             1    October/2019
## 2545                                          -1             1    October/2019
## 2546                                          -1             1    October/2019
## 2547                                           1             1    October/2019
## 2548                                          -1             1    October/2019
## 2549                                          -1             1    October/2019
## 2550                                          -1             1    October/2019
## 2551                                           1             1    October/2019
## 2552                                          -1             1    October/2019
## 2553                                          -1             1    October/2019
## 2554                 wings torn at end         1             1    October/2019
## 2555                                           1             1    October/2019
## 2556                                          -1             1    October/2019
## 2557                 wings torn at end         1             1    October/2019
## 2558                                           1             1    October/2019
## 2559                                           1             1    October/2019
## 2560                 wings torn at end        -1             1    October/2019
## 2561                                          -1             1    October/2019
## 2562                                           1            -1    October/2019
## 2563                                          -1            -1    October/2019
## 2564                                           1            -1    October/2019
## 2565                                           1            -1    October/2019
## 2566                                          -1            -1    October/2019
## 2567                 wings torn at end         1            -1    October/2019
## 2568                                           1            -1    October/2019
## 2569                 wings torn at end        -1            -1    October/2019
## 2570                                          -1            -1    October/2019
## 2571                                          -1            -1    October/2019
## 2572                                          -1            -1    October/2019
## 2573                 wings torn at end         1            -1    October/2019
## 2574                                          -1            -1    October/2019
## 2575                                          -1            -1    October/2019
## 2576                                          -1            -1    October/2019
## 2577                                           1            -1    October/2019
## 2578                                          -1            -1    October/2019
## 2579                                          -1            -1    October/2019
## 2580                                          -1            -1    October/2019
## 2581                 wings torn at end        -1            -1    October/2019
## 2582                                           1            -1    October/2019
## 2583                 wings torn at end        -1            -1    October/2019
## 2584                                           1            -1    October/2019
## 2585                                           1            -1    October/2019
## 2586                                           1            -1    October/2019
## 2587                 wings torn at end        -1            -1    October/2019
## 2588                 wings torn at end        -1            -1    October/2019
## 2589                                           1            -1    October/2019
## 2590                 wings torn at end        -1            -1    October/2019
## 2591                                          -1            -1    October/2019
## 2592                                           1            -1    October/2019
## 2593                                           1            -1    October/2019
## 2594                 wings torn at end        -1            -1    October/2019
## 2595                                          -1            -1    October/2019
## 2596                                           1            -1    October/2019
## 2597                                           1            -1    October/2019
## 2598                                           1            -1    October/2019
## 2599                                           1            -1    October/2019
## 2600                 wings torn at end         1            -1    October/2019
## 2601                                           1            -1    October/2019
## 2602                                           1            -1    October/2019
## 2603                                           1            -1    October/2019
## 2604                                           1            -1    October/2019
## 2605                                           1            -1    October/2019
## 2606                                           1            -1    October/2019
## 2607                                           1            -1    October/2019
## 2608                 wings torn at end        -1            -1    October/2019
## 2609                                          -1            -1    October/2019
## 2610                                           1            -1    October/2019
## 2611                 wings torn at end        -1            -1    October/2019
## 2612                                          -1            -1    October/2019
## 2613                                          -1            -1    October/2019
## 2614                 wings torn at end        -1            -1    October/2019
## 2615                                          -1            -1    October/2019
## 2616                                           1            -1    October/2019
## 2617                                          -1            -1    October/2019
## 2618                                           1            -1    October/2019
## 2619                 wings torn at end        -1            -1    October/2019
## 2620                 wings torn at end         1            -1    October/2019
## 2621                                          -1            -1    October/2019
## 2622                                           1            -1    October/2019
## 2623                 wings torn at end        -1            -1    October/2019
## 2624                                          -1            -1    October/2019
## 2625                                          -1            -1    October/2019
## 2626                                          -1            -1    October/2019
## 2627                 wings torn at end        -1            -1    October/2019
## 2628                 wings torn at end         1            -1    October/2019
## 2629                 wings torn at end        -1            -1    October/2019
## 2630                                           1            -1    October/2019
## 2631                                          -1            -1    October/2019
## 2632                                          -1            -1    October/2019
## 2633                 wings torn at end        -1            -1    October/2019
## 2634                                          -1            -1    October/2019
## 2635                                          -1            -1    October/2019
## 2636                        wings torn         1            -1    October/2019
## 2637                                          -1            -1    October/2019
## 2638                        wings torn         1            -1    October/2019
## 2639                                           1            -1    October/2019
## 2640                                          -1            -1    October/2019
## 2641                                          -1            -1    October/2019
## 2642                                          -1            -1    October/2019
## 2643                                           1            -1    October/2019
## 2644                                           1            -1    October/2019
## 2645                                           1            -1    October/2019
## 2646                 wings torn at end        -1            -1    October/2019
## 2647                                          -1            -1    October/2019
## 2648                                           1            -1    October/2019
## 2649                                          -1            -1    October/2019
## 2650                                          -1            -1    October/2019
## 2651                                          -1            -1    October/2019
## 2652                                          -1            -1    October/2019
## 2653                                           1            -1    October/2019
## 2654                                          -1            -1    October/2019
## 2655                                          -1            -1    October/2019
## 2656                                           1            -1    October/2019
## 2657                                          -1            -1    October/2019
## 2658                                          -1             1   February/2020
## 2659             wings torn at the end        -1             1   February/2020
## 2660                                          -1             1   February/2020
## 2661                                          -1             1   February/2020
## 2662                                          -1             1   February/2020
## 2663             wings torn at the end        -1             1   February/2020
## 2664             wings torn at the end        -1             1   February/2020
## 2665                                          -1             1   February/2020
## 2666                                          -1             1   February/2020
## 2667                                          -1             1   February/2020
## 2668                                           1             1   February/2020
## 2669                                          -1             1   February/2020
## 2670             wings torn at the end         1             1   February/2020
## 2671             wings torn at the end        -1             1   February/2020
## 2672                                          -1             1   February/2020
## 2673                                          -1             1   February/2020
## 2674             wings torn at the end        -1             1   February/2020
## 2675                                           1             1   February/2020
## 2676             wings torn at the end        -1             1   February/2020
## 2677             wings torn at the end         1             1   February/2020
## 2678                                          -1             1   February/2020
## 2679             wings torn at the end         1             1   February/2020
## 2680                                          -1             1   February/2020
## 2681             wings torn at the end        -1             1   February/2020
## 2682                                          -1             1   February/2020
## 2683             wings torn at the end        -1             1   February/2020
## 2684                                          -1             1   February/2020
## 2685             wings torn at the end        -1             1   February/2020
## 2686             wings torn at the end        -1             1   February/2020
## 2687             wings torn at the end        -1             1   February/2020
## 2688             wings torn at the end        -1             1   February/2020
## 2689             wings torn at the end         1             1   February/2020
## 2690                                          -1             1   February/2020
## 2691                                           1             1   February/2020
## 2692                                          -1             1   February/2020
## 2693                                          -1             1   February/2020
## 2694                                          -1             1   February/2020
## 2695                                           1             1   February/2020
## 2696                                           1             1   February/2020
## 2697                                           1             1   February/2020
## 2698                                           1             1   February/2020
## 2699             wings torn at the end        -1             1   February/2020
## 2700                                          -1             1   February/2020
## 2701                                           1             1   February/2020
## 2702             wings torn at the end        -1             1   February/2020
## 2703             wings torn at the end        -1             1   February/2020
## 2704             wings torn at the end        -1             1   February/2020
## 2705                                          -1             1   February/2020
## 2706                                          -1             1   February/2020
## 2707             wings torn at the end        -1             1   February/2020
## 2708                                           1             1   February/2020
## 2709                                           1             1   February/2020
## 2710                                           1             1   February/2020
## 2711                                          -1             1   February/2020
## 2712                                          -1             1   February/2020
## 2713                                           1             1   February/2020
## 2714                                          -1             1   February/2020
## 2715                                           1             1   February/2020
## 2716                                           1             1   February/2020
## 2717                                          -1             1   February/2020
## 2718                                          -1             1   February/2020
## 2719                                          -1             1   February/2020
## 2720                                          -1             1   February/2020
## 2721                                          -1             1   February/2020
## 2722                                           1             1   February/2020
## 2723                                           1             1   February/2020
## 2724                                          -1             1   February/2020
## 2725                                          -1             1   February/2020
## 2726                                          -1             1   February/2020
## 2727                                          -1             1   February/2020
## 2728                                          -1             1   February/2020
## 2729                                          -1             1   February/2020
## 2730                                           1             1   February/2020
## 2731                                           1             1   February/2020
## 2732                                          -1             1   February/2020
## 2733                                          -1             1   February/2020
## 2734                                          -1             1   February/2020
## 2735                                          -1             1   February/2020
## 2736                                          -1            -1   February/2020
## 2737                                           1            -1   February/2020
## 2738             wings torn at the end         1            -1   February/2020
## 2739                                          -1            -1   February/2020
## 2740                                          -1            -1   February/2020
## 2741                                           1            -1   February/2020
## 2742                                          -1            -1   February/2020
## 2743                                          -1            -1   February/2020
## 2744                                           1            -1   February/2020
## 2745                                          -1            -1   February/2020
## 2746                                           1            -1   February/2020
## 2747                                           1            -1   February/2020
## 2748                                          -1            -1   February/2020
## 2749                                          -1            -1   February/2020
## 2750                                           1            -1   February/2020
## 2751                                          -1            -1   February/2020
## 2752                                           1            -1   February/2020
## 2753             wings torn at the end        -1            -1   February/2020
## 2754                                           1            -1   February/2020
## 2755                                          -1            -1   February/2020
## 2756             wings torn at the end        -1            -1   February/2020
## 2757                                           1            -1   February/2020
## 2758                                          -1            -1   February/2020
## 2759                                          -1            -1   February/2020
## 2760                                           1            -1   February/2020
## 2761                                          -1            -1   February/2020
## 2762                                           1            -1   February/2020
## 2763             wings torn at the end        -1            -1   February/2020
## 2764                                          -1            -1   February/2020
## 2765                                          -1            -1   February/2020
## 2766           thorax torn on one side         1            -1   February/2020
## 2767                                          -1            -1   February/2020
## 2768             wings torn at the end        -1            -1   February/2020
## 2769                                           1            -1   February/2020
## 2770                                           1            -1   February/2020
## 2771                                          -1            -1   February/2020
## 2772             wings torn at the end        -1            -1   February/2020
## 2773                                          -1            -1   February/2020
## 2774                                          -1            -1   February/2020
## 2775                                          -1            -1   February/2020
## 2776                                          -1            -1   February/2020
## 2777             wings torn at the end         1            -1   February/2020
## 2778                                          -1            -1   February/2020
## 2779                                          -1            -1   February/2020
## 2780                                          -1            -1   February/2020
## 2781                                          -1            -1   February/2020
## 2782                                          -1            -1   February/2020
## 2783                                          -1            -1   February/2020
## 2784                                          -1            -1   February/2020
## 2785                                          -1            -1   February/2020
## 2786                                          -1            -1   February/2020
## 2787                                          -1            -1   February/2020
## 2788                                           1            -1   February/2020
## 2789                                           1            -1   February/2020
## 2790                                           1            -1   February/2020
## 2791                                          -1            -1   February/2020
## 2792                                          -1            -1   February/2020
## 2793                                           1            -1   February/2020
## 2794                                           1            -1   February/2020
## 2795                                          -1            -1   February/2020
## 2796                                           1            -1   February/2020
## 2797                                          -1            -1   February/2020
## 2798                                          -1            -1   February/2020
## 2799                                           1            -1   February/2020
## 2800                                          -1            -1   February/2020
## 2801                                           1            -1   February/2020
## 2802                                           1            -1   February/2020
## 2803                                           1            -1   February/2020
## 2804                                           1            -1   February/2020
## 2805                                          -1            -1   February/2020
## 2806                                          -1            -1   February/2020
## 2807                                          -1            -1   February/2020
## 2808                                           1            -1   February/2020
## 2809                                           1            -1   February/2020
## 2810                                          -1            -1   February/2020
## 2811                                          -1            -1   February/2020
## 2812                                          -1             1   February/2020
## 2813                                           1             1   February/2020
## 2814                                           1             1   February/2020
## 2815                                          -1             1   February/2020
## 2816                                          -1             1   February/2020
## 2817                                           1             1   February/2020
## 2818                                           1             1   February/2020
## 2819                                           1             1   February/2020
## 2820                                          -1             1   February/2020
## 2821                                           1             1   February/2020
## 2822                                          -1             1   February/2020
## 2823             wings torn at the end        -1             1   February/2020
## 2824                                          -1             1   February/2020
## 2825                                          -1             1   February/2020
## 2826                                           1             1   February/2020
## 2827                                          -1             1   February/2020
## 2828                                           1             1   February/2020
## 2829                                          -1             1   February/2020
## 2830                                          -1             1   February/2020
## 2831                                          -1             1   February/2020
## 2832                                           1             1   February/2020
## 2833                                          -1             1   February/2020
## 2834                                          -1             1   February/2020
## 2835                                           1             1   February/2020
## 2836                                           1             1   February/2020
## 2837                                          -1             1   February/2020
## 2838                                           1             1   February/2020
## 2839                                           1             1   February/2020
## 2840                                          -1             1   February/2020
## 2841                                          -1             1   February/2020
## 2842                                          -1             1   February/2020
## 2843                                          -1             1   February/2020
## 2844                                          -1             1   February/2020
## 2845                                          -1             1   February/2020
## 2846                                           1             1   February/2020
## 2847                                          -1             1   February/2020
## 2848                                           1             1   February/2020
## 2849                                          -1             1   February/2020
## 2850                                          -1             1   February/2020
## 2851                                          -1             1   February/2020
## 2852                                           1             1   February/2020
## 2853                                          -1             1   February/2020
## 2854                                          -1             1   February/2020
## 2855                                          -1             1   February/2020
## 2856                                           1             1   February/2020
## 2857                                          -1             1   February/2020
## 2858                                           1             1   February/2020
## 2859                                           1             1   February/2020
## 2860                                           1             1   February/2020
## 2861                                           1             1   February/2020
## 2862             wings torn at the end        -1             1   February/2020
## 2863                                          -1             1   February/2020
## 2864             wings torn at the end         1             1   February/2020
## 2865                                          -1             1   February/2020
## 2866                                          -1             1   February/2020
## 2867                                          -1             1   February/2020
## 2868                                           1             1   February/2020
## 2869                                           1             1   February/2020
## 2870                                          -1             1   February/2020
## 2871                                          -1             1   February/2020
## 2872             wings torn at the end        -1             1   February/2020
## 2873                                           1             1   February/2020
## 2874                                          -1             1   February/2020
## 2875                                          -1             1   February/2020
## 2876                                           1             1   February/2020
## 2877                                          -1             1   February/2020
## 2878                                           1             1   February/2020
## 2879                                          -1             1   February/2020
## 2880                                           1             1   February/2020
## 2881                                           1             1   February/2020
## 2882                                          -1             1   February/2020
## 2883                                          -1             1   February/2020
## 2884                                           1             1   February/2020
## 2885                                           1             1   February/2020
## 2886                                           1             1   February/2020
## 2887                                          -1             1   February/2020
## 2888                                          -1             1   February/2020
## 2889                                           1             1   February/2020
## 2890                                          -1             1   February/2020
## 2891                                          -1             1   February/2020
## 2892                                          -1             1   February/2020
## 2893                                          -1             1   February/2020
## 2894                                          -1             1   February/2020
## 2895                                           1             1   February/2020
## 2896                                          -1             1   February/2020
## 2897                                          -1             1   February/2020
## 2898                                          -1             1   February/2020
## 2899                                           1             1   February/2020
## 2900                                          -1             1   February/2020
## 2901                                           1             1   February/2020
## 2902                                           1             1   February/2020
## 2903                                          -1             1   February/2020
## 2904                                          -1             1   February/2020
## 2905                                          -1             1   February/2020
## 2906                                          -1             1   February/2020
## 2907                                          -1             1   February/2020
## 2908                                          -1             1   February/2020
## 2909                                          -1             1   February/2020
## 2910                                          -1             1   February/2020
## 2911                                           1             1   February/2020
## 2912                                           1             1   February/2020
## 2913                                           1             1   February/2020
## 2914             wings torn at the end        -1             1   February/2020
## 2915                                          -1             1   February/2020
## 2916                                          -1             1   February/2020
## 2917                                           1             1   February/2020
## 2918                                          -1             1   February/2020
## 2919                                           1             1   February/2020
## 2920                                           1             1   February/2020
## 2921             wings torn at the end        -1             1   February/2020
## 2922                                          -1             1   February/2020
## 2923                                          -1             1   February/2020
## 2924                                          -1             1   February/2020
## 2925                                          -1             1   February/2020
## 2926                                          -1             1   February/2020
## 2927                                           1             1   February/2020
## 2928                                           1             1   February/2020
## 2929                                          -1             1   February/2020
## 2930             wings torn at the end         1             1   February/2020
## 2931                                          -1             1   February/2020
## 2932                                          -1             1   February/2020
## 2933                                          -1             1   February/2020
## 2934                                          -1            -1   February/2020
## 2935                                          -1            -1   February/2020
## 2936             wings torn at the end        -1            -1   February/2020
## 2937                                          -1            -1   February/2020
## 2938                                           1            -1   February/2020
## 2939                                           1            -1   February/2020
## 2940                                           1            -1   February/2020
## 2941             wings torn at the end        -1            -1   February/2020
## 2942                                           1            -1   February/2020
## 2943                                           1            -1   February/2020
## 2944                                           1            -1   February/2020
## 2945             wings torn at the end         1            -1   February/2020
## 2946                                          -1            -1   February/2020
## 2947                                          -1            -1   February/2020
## 2948                                          -1            -1   February/2020
## 2949                                          -1            -1   February/2020
## 2950                                           1            -1   February/2020
## 2951                                          -1            -1   February/2020
## 2952                                           1            -1   February/2020
## 2953                                           1            -1   February/2020
## 2954                                          -1            -1   February/2020
## 2955                                           1            -1   February/2020
## 2956                                           1            -1   February/2020
## 2957                                          -1            -1   February/2020
## 2958                                          -1            -1   February/2020
## 2959                                          -1            -1   February/2020
## 2960             wings torn at the end        -1            -1   February/2020
## 2961                                          -1            -1   February/2020
## 2962                                          -1            -1   February/2020
## 2963                                          -1            -1   February/2020
## 2964             wings torn at the end         1            -1   February/2020
## 2965                                          -1            -1   February/2020
## 2966                                           1            -1   February/2020
## 2967                                          -1            -1   February/2020
## 2968                                           1            -1   February/2020
## 2969                                           1            -1   February/2020
## 2970                                           1            -1   February/2020
## 2971                                           1            -1   February/2020
## 2972                                          -1            -1   February/2020
## 2973             wings torn at the end        -1            -1   February/2020
## 2974                                          -1            -1   February/2020
## 2975                                           1            -1   February/2020
## 2976                                           1            -1   February/2020
## 2977                                           1            -1   February/2020
## 2978                                          -1            -1   February/2020
## 2979                                          -1            -1   February/2020
## 2980                                          -1            -1   February/2020
## 2981             wings torn at the end        -1            -1   February/2020
## 2982                                           1            -1   February/2020
## 2983                                           1            -1   February/2020
## 2984                                           1            -1   February/2020
## 2985                                          -1            -1   February/2020
## 2986                                          -1            -1   February/2020
## 2987                                          -1            -1   February/2020
## 2988                                           1            -1   February/2020
## 2989                                          -1            -1   February/2020
## 2990                                           1            -1   February/2020
## 2991                                          -1            -1   February/2020
## 2992                                          -1            -1   February/2020
## 2993                                          -1            -1   February/2020
## 2994                                           1            -1   February/2020
## 2995                                           1            -1   February/2020
## 2996                                          -1            -1   February/2020
## 2997           thorax torn on one side        -1            -1   February/2020
## 2998                                           1            -1   February/2020
## 2999             wings torn at the end        -1            -1   February/2020
## 3000                                          -1            -1   February/2020
## 3001                                          -1            -1   February/2020
## 3002                                          -1            -1   February/2020
## 3003                                           1            -1   February/2020
## 3004                                          -1            -1   February/2020
## 3005                                          -1            -1   February/2020
## 3006                                          -1            -1   February/2020
## 3007                                          -1            -1   February/2020
## 3008                                          -1            -1   February/2020
## 3009                                           1            -1   February/2020
## 3010                                           1            -1   February/2020
## 3011                                           1            -1   February/2020
## 3012                                          -1            -1   February/2020
## 3013                                          -1            -1   February/2020
## 3014                                          -1            -1   February/2020
## 3015                                           1            -1   February/2020
## 3016                                           1            -1   February/2020
## 3017                                           1            -1   February/2020
## 3018                                           1            -1   February/2020
## 3019                                           1            -1   February/2020
## 3020                                          -1            -1   February/2020
## 3021                                          -1            -1   February/2020
## 3022                                          -1            -1   February/2020
## 3023                                           1            -1   February/2020
## 3024                                          -1            -1   February/2020
## 3025                                           1            -1   February/2020
## 3026             wings torn at the end        -1            -1   February/2020
## 3027                                           1            -1   February/2020
## 3028                                          -1            -1   February/2020
## 3029                                           1            -1   February/2020
## 3030             wings torn at the end        -1            -1   February/2020
## 3031                                          -1            -1   February/2020
## 3032                                          -1            -1   February/2020
## 3033                                          -1            -1   February/2020
## 3034                                          -1            -1   February/2020
## 3035                                          -1            -1   February/2020
## 3036             wings torn at the end        -1            -1   February/2020
## 3037                                          -1            -1   February/2020
## 3038             wings torn at the end        -1            -1   February/2020
## 3039                                          -1            -1   February/2020
## 3040                                          -1            -1   February/2020
## 3041                                          -1            -1   February/2020
## 3042                                           1            -1   February/2020
## 3043                                          -1            -1   February/2020
## 3044                                          -1            -1   February/2020
## 3045                                          -1            -1   February/2020
## 3046                                          -1            -1   February/2020
## 3047                                          -1            -1   February/2020
## 3048                                          -1            -1   February/2020
## 3049                                          -1            -1   February/2020
## 3050             wings torn at the end        -1            -1   February/2020
## 3051             wings torn at the end         1            -1   February/2020
## 3052                                          -1            -1   February/2020
## 3053                                          -1            -1   February/2020
## 3054                                           1            -1   February/2020
## 3055                                          -1            -1   February/2020
## 3056                                          -1            -1   February/2020
## 3057                                          -1            -1   February/2020
## 3058                                           1            -1   February/2020
## 3059                                           1            -1   February/2020
## 3060                                          -1            -1   February/2020
## 3061                                          -1            -1   February/2020
## 3062             wings torn at the end        -1            -1   February/2020
## 3063                                          -1            -1   February/2020
## 3064                                          -1            -1   February/2020
## 3065                                          -1            -1   February/2020
## 3066                                           1            -1   February/2020
## 3067                                          -1            -1   February/2020
## 3068                                          -1            -1   February/2020
## 3069                                          -1            -1   February/2020
## 3070                                          -1            -1   February/2020
## 3071                                          -1            -1   February/2020
## 3072                                          -1            -1   February/2020
## 3073                                          -1            -1   February/2020
## 3074                                           1            -1   February/2020
## 3075                                           1            -1   February/2020
## 3076                                          -1            -1   February/2020
## 3077                                           1            -1   February/2020
## 3078                                          -1            -1   February/2020
## 3079                                          -1            -1   February/2020
## 3080                                          -1            -1   February/2020
## 3081                                          -1            -1   February/2020
## 3082                                           1            -1   February/2020
## 3083                                          -1            -1   February/2020
## 3084                                           1            -1   February/2020
## 3085                                           1            -1   February/2020
## 3086                                           1            -1   February/2020
## 3087                                           1            -1   February/2020
## 3088                                           1            -1   February/2020
## 3089                                           1            -1   February/2020
## 3090                                          -1            -1   February/2020
## 3091                                          -1            -1   February/2020
## 3092                                           1            -1   February/2020
## 3093                                           1            -1   February/2020
## 3094                                          -1            -1   February/2020
## 3095                                          -1            -1   February/2020
## 3096                                          -1            -1   February/2020
## 3097                                           1            -1   February/2020
## 3098                                          -1            -1   February/2020
## 3099                                          -1            -1   February/2020
## 3100                                           1            -1   February/2020
## 3101             wings torn at the end        -1            -1   February/2020
## 3102                                          -1            -1   February/2020
## 3103                                           1            -1   February/2020
## 3104                                          -1            -1   February/2020
## 3105                                          -1            -1   February/2020
## 3106                                           1            -1   February/2020
## 3107                                           1            -1   February/2020
## 3108                                          -1            -1   February/2020
## 3109                                          -1            -1   February/2020
## 3110                                           1            -1   February/2020
## 3111                                          -1            -1   February/2020
## 3112                                           1            -1   February/2020
## 3113                                          -1            -1   February/2020
## 3114                                           1            -1   February/2020
## 3115                                           1            -1   February/2020
## 3116                                          -1            -1   February/2020
## 3117                                          -1            -1   February/2020
## 3118                                          -1            -1   February/2020
## 3119                                           1            -1   February/2020
## 3120                                          -1            -1   February/2020
## 3121                                          -1            -1   February/2020
## 3122                                          -1            -1   February/2020
## 3123                                           1            -1   February/2020
## 3124                                           1            -1   February/2020
## 3125                                          -1            -1   February/2020
## 3126                                          -1            -1   February/2020
## 3127                                          -1            -1   February/2020
## 3128                                           1            -1   February/2020
## 3129                                           1            -1   February/2020
## 3130                                          -1            -1   February/2020
## 3131                                           1            -1   February/2020
## 3132                                          -1            -1   February/2020
## 3133                                          -1            -1   February/2020
## 3134                                          -1            -1   February/2020
## 3135                                           1            -1   February/2020
## 3136             wings torn at the end         1            -1   February/2020
## 3137                                          -1            -1   February/2020
## 3138                                           1            -1   February/2020
## 3139                                          -1            -1   February/2020
## 3140                                           1            -1   February/2020
## 3141                                          -1            -1   February/2020
## 3142                                          -1            -1   February/2020
## 3143                                           1            -1   February/2020
## 3144                                          -1            -1   February/2020
## 3145                                           1            -1   February/2020
## 3146                                           1            -1   February/2020
## 3147                                           1            -1   February/2020
## 3148                                          -1            -1   February/2020
## 3149                                           1            -1   February/2020
## 3150                                           1            -1   February/2020
## 3151                                           1            -1   February/2020
## 3152                                          -1            -1   February/2020
## 3153                                           1            -1   February/2020
## 3154                                          -1            -1   February/2020
## 3155             wings torn at the end        -1            -1   February/2020
## 3156                                          -1            -1   February/2020
## 3157                                          -1            -1   February/2020
## 3158                                          -1            -1   February/2020
## 3159                                           1            -1   February/2020
## 3160                                          -1            -1   February/2020
## 3161                                           1            -1   February/2020
## 3162                                           1            -1   February/2020
## 3163                                          -1            -1   February/2020
## 3164                                          -1            -1   February/2020
## 3165             wings torn at the end         1            -1   February/2020
## 3166                                          -1            -1   February/2020
## 3167                                           1            -1   February/2020
## 3168             wings torn at the end        -1            -1   February/2020
## 3169             wings torn at the end        -1            -1   February/2020
## 3170                                           1            -1   February/2020
## 3171                                          -1            -1   February/2020
## 3172                                          -1            -1   February/2020
## 3173                                           1            -1   February/2020
## 3174                                          -1            -1   February/2020
## 3175                                          -1            -1   February/2020
## 3176                                          -1            -1   February/2020
## 3177                                          -1            -1   February/2020
## 3178           thorax torn on one side        -1            -1   February/2020
## 3179             wings torn at the end        -1            -1   February/2020
## 3180                                          -1            -1   February/2020
## 3181                                          -1            -1   February/2020
## 3182                                          -1            -1   February/2020
## 3183                                           1            -1   February/2020
## 3184                                          -1            -1   February/2020
## 3185                                          -1            -1   February/2020
## 3186                                          -1            -1   February/2020
## 3187                                          -1            -1   February/2020
## 3188                                          -1            -1   February/2020
## 3189                                           1            -1   February/2020
## 3190                                          -1            -1   February/2020
## 3191                                          -1            -1   February/2020
## 3192                                          -1            -1   February/2020
## 3193                                          -1            -1   February/2020
## 3194                                          -1            -1   February/2020
## 3195                                           1            -1   February/2020
## 3196                                           1            -1   February/2020
## 3197                                          -1            -1   February/2020
## 3198             wings torn at the end         1            -1   February/2020
## 3199                                           1            -1   February/2020
## 3200             wings torn at the end        -1            -1   February/2020
## 3201                                          -1            -1   February/2020
## 3202                                           1            -1   February/2020
## 3203                                          -1            -1   February/2020
## 3204                                          -1            -1   February/2020
## 3205             wings torn at the end         1            -1   February/2020
## 3206                                          -1            -1   February/2020
## 3207                                          -1            -1   February/2020
## 3208                                           1            -1   February/2020
## 3209                                          -1            -1   February/2020
## 3210                                           1            -1   February/2020
## 3211                                           1            -1   February/2020
## 3212                                          -1            -1   February/2020
## 3213                                          -1            -1   February/2020
## 3214                                           1            -1   February/2020
## 3215                                          -1            -1   February/2020
## 3216                                          -1            -1   February/2020
## 3217                                           1            -1   February/2020
## 3218                                           1            -1   February/2020
## 3219                                           1            -1   February/2020
## 3220                                          -1            -1   February/2020
## 3221                                          -1            -1   February/2020
## 3222                                           1            -1   February/2020
## 3223                                           1            -1   February/2020
## 3224             wings torn at the end         1            -1   February/2020
## 3225             wings torn at the end         1            -1   February/2020
## 3226                                          -1            -1    October/2019
## 3227                                           1            -1    October/2019
## 3228                                           1            -1    October/2019
## 3229                                          -1            -1    October/2019
## 3230                                          -1            -1    October/2019
## 3231                                           1            -1    October/2019
## 3232                                           1            -1    October/2019
## 3233                                          -1            -1    October/2019
## 3234                                           1            -1    October/2019
## 3235                                           1            -1    October/2019
## 3236                                          -1            -1    October/2019
## 3237                                          -1            -1    October/2019
## 3238                                          -1            -1    October/2019
## 3239                                          -1            -1    October/2019
## 3240                                           1            -1    October/2019
## 3241                                           1            -1    October/2019
## 3242                                          -1            -1    October/2019
## 3243                                           1            -1    October/2019
## 3244                                           1            -1    October/2019
## 3245                                           1            -1    October/2019
## 3246                                          -1            -1    October/2019
## 3247                                          -1            -1    October/2019
## 3248                                          -1            -1    October/2019
## 3249                                           1            -1    October/2019
## 3250                                           1            -1    October/2019
## 3251                                          -1             1    October/2019
## 3252                                          -1             1    October/2019
## 3253                                           1             1    October/2019
## 3254                                          -1             1    October/2019
## 3255                                           1             1    October/2019
## 3256                                           1             1    October/2019
## 3257                                          -1             1    October/2019
## 3258                                           1             1    October/2019
## 3259                                           1             1    October/2019
## 3260                                           1             1    October/2019
## 3261                                          -1             1    October/2019
## 3262                                           1             1    October/2019
## 3263                                           1            -1    October/2019
## 3264                                           1            -1    October/2019
## 3265                                           1            -1    October/2019
## 3266                                           1            -1    October/2019
## 3267                                          -1            -1    October/2019
## 3268                                           1            -1    October/2019
## 3269                                          -1            -1    October/2019
## 3270                                           1            -1    October/2019
## 3271                                           1            -1    October/2019
## 3272                                           1            -1    October/2019
## 3273                                          -1            -1    October/2019
## 3274                                           1            -1    October/2019
## 3275                                           1            -1    October/2019
## 3276                                          -1            -1    October/2019
## 3277                                           1            -1    October/2019
## 3278                                          -1            -1    October/2019
## 3279                                           1            -1    October/2019
## 3280                                          -1            -1    October/2019
## 3281                                           1            -1    October/2019
## 3282                                          -1            -1    October/2019
## 3283                                           1            -1    October/2019
## 3284                                          -1            -1    October/2019
## 3285                                           1            -1    October/2019
## 3286                                          -1            -1    October/2019
## 3287                                          -1            -1    October/2019
## 3288                                          -1            -1    October/2019
## 3289                                          -1             1    October/2019
## 3290                                           1             1    October/2019
## 3291                                          -1             1    October/2019
## 3292                                          -1             1    October/2019
## 3293                                           1             1    October/2019
## 3294                                           1             1    October/2019
## 3295                                           1             1    October/2019
## 3296                                          -1             1    October/2019
## 3297                                          -1             1    October/2019
## 3298                                           1             1    October/2019
## 3299                                          -1             1    October/2019
## 3300                                           1             1    October/2019
## 3301                                          -1             1    October/2019
## 3302                                           1             1    October/2019
## 3303                                          -1             1    October/2019
## 3304                                           1             1    October/2019
## 3305                                           1             1    October/2019
## 3306                                          -1             1    October/2019
## 3307                                           1             1    October/2019
## 3308                                          -1             1    October/2019
## 3309                                          -1             1    October/2019
## 3310                                          -1            -1    October/2019
## 3311                                           1            -1    October/2019
## 3312                                          -1            -1    October/2019
## 3313                                          -1            -1    October/2019
## 3314                                           1             1   December/2016
## 3315                                          -1             1   December/2016
## 3316                                           1             1   December/2016
## 3317                                          -1             1   December/2016
## 3318                                          -1            -1    October/2019
## 3319                                          -1            -1    October/2019
## 3320                                           1            -1    October/2019
## 3321                                          -1            -1    October/2019
## 3322                                           1            -1    October/2019
## 3323                                           1            -1    October/2019
## 3324                                           1            -1    October/2019
## 3325                                          -1            -1    October/2019
## 3326                                           1            -1    October/2019
## 3327                                           1            -1    October/2019
## 3328                                          -1            -1    October/2019
## 3329                                          -1            -1    October/2019
## 3330                                          -1            -1    October/2019
## 3331                                          -1            -1    October/2019
## 3332                                           1            -1    October/2019
## 3333                                          -1            -1    October/2019
## 3334                                           1            -1    October/2019
## 3335                                           1            -1    October/2019
## 3336                                          -1            -1    October/2019
## 3337                                           1            -1    October/2019
## 3338                                          -1            -1    October/2019
## 3339                                           1            -1    October/2019
## 3340                                           1             1        May/2019
## 3341                                          -1             1        May/2019
## 3342                                           1             1        May/2019
## 3343                                           1             1        May/2019
## 3344                       torn thorax         1             1        May/2019
## 3345                                           1             1        May/2019
## 3346                                           1             1        May/2019
## 3347                                           1             1        May/2019
## 3348                                           1             1        May/2019
## 3349                                          -1             1        May/2019
## 3350                                           1             1        May/2019
## 3351                                          -1             1        May/2019
## 3352                                           1             1        May/2019
## 3353                                           1             1        May/2019
## 3354                                           1             1        May/2019
## 3355                                           1             1        May/2019
## 3356                                           1             1        May/2019
## 3357                                           1             1        May/2019
## 3358                                           1             1        May/2019
## 3359                                           1             1        May/2019
## 3360                                           1             1        May/2019
## 3361                                           1             1        May/2019
## 3362                                          -1             1        May/2019
## 3363                                          -1             1        May/2019
## 3364                                           1             1        May/2019
## 3365                                           1             1        May/2019
## 3366                                           1             1        May/2019
## 3367                                           1             1        May/2019
## 3368                                          -1             1        May/2019
## 3369                                          -1             1        May/2019
## 3370                                           1             1        May/2019
## 3371                                           1             1        May/2019
## 3372                                           1             1        May/2019
## 3373                                          -1             1        May/2019
## 3374                                           1             1        May/2019
## 3375                                          -1             1        May/2019
## 3376                                           1             1        May/2019
## 3377                                           1             1        May/2019
## 3378                                           1             1        May/2019
## 3379                                          -1             1        May/2019
## 3380                                          -1             1        May/2019
## 3381                                           1             1        May/2019
## 3382                                          -1             1        May/2019
## 3383                                           1             1        May/2019
## 3384                                           1             1        May/2019
## 3385                                           1             1        May/2019
## 3386                                          -1             1        May/2019
## 3387                                           1             1        May/2019
## 3388                                          -1             1        May/2019
## 3389                                           1             1        May/2019
## 3390                                           1             1        May/2019
## 3391                                           1             1        May/2019
## 3392                                           1             1        May/2019
## 3393                                          -1             1        May/2019
## 3394                     (8th x Mound)        -1             1        May/2019
## 3395                                           1             1        May/2019
## 3396                                           1             1        May/2019
## 3397                                           1             1        May/2019
## 3398                                           1             1        May/2019
## 3399                                          -1             1        May/2019
## 3400                                           1             1        May/2019
## 3401                                           1             1        May/2019
## 3402                        torn wings         1             1        May/2019
## 3403                                           1             1        May/2019
## 3404                                          -1             1        May/2019
## 3405                        torn wings        -1             1        May/2019
## 3406                                          -1             1        May/2019
## 3407                                           1             1        May/2019
## 3408                                           1             1        May/2019
## 3409                                           1             1        May/2019
## 3410                                           1             1        May/2019
## 3411                                          -1             1        May/2019
## 3412                                           1             1        May/2019
## 3413                                           1             1        May/2019
## 3414                                          -1             1        May/2019
## 3415                                          -1             1        May/2019
## 3416                                           1             1        May/2019
## 3417                                           1             1        May/2019
## 3418                                           1             1        May/2019
## 3419                                           1             1        May/2019
## 3420                                           1             1        May/2019
## 3421                                           1             1        May/2019
## 3422                                           1             1        May/2019
## 3423                                           1             1        May/2019
## 3424                                           1             1        May/2019
## 3425                                           1             1        May/2019
## 3426                                           1             1        May/2019
## 3427                  torn right wings         1             1        May/2019
## 3428                                           1             1        May/2019
## 3429                                           1             1        May/2019
## 3430                                          -1             1        May/2019
## 3431                                           1             1        May/2019
## 3432                                           1             1        May/2019
## 3433                                          -1             1        May/2019
## 3434                                           1             1        May/2019
## 3435                                           1             1        May/2019
## 3436                                           1             1        May/2019
## 3437                                           1             1        May/2019
## 3438                                           1             1        May/2019
## 3439                                          -1             1        May/2019
## 3440                                           1             1        May/2019
## 3441                                           1             1        May/2019
## 3442                                          -1             1        May/2019
## 3443                                           1             1        May/2019
## 3444                                           1             1        May/2019
## 3445                                           1             1        May/2019
## 3446                                          -1             1        May/2019
## 3447                        torn wings         1             1        May/2019
##      datetime      dates month_of_year wing2thorax wing_morph_binom     X.utm
## 1    Apr 2013 2013-04-01             4    2.790210                1 1010037.7
## 2    Apr 2013 2013-04-01             4    2.676375                1 1010037.7
## 3    Apr 2013 2013-04-01             4    2.812903                1 1010037.7
## 4    Apr 2013 2013-04-01             4    2.617530                1 1010037.7
## 5    Apr 2013 2013-04-01             4    2.821549                1 1010037.7
## 6    Apr 2013 2013-04-01             4    2.652027                1 1010037.7
## 7    Apr 2013 2013-04-01             4    2.794425                1 1010037.7
## 8    Apr 2013 2013-04-01             4    2.830769                1 1010037.7
## 9    Apr 2013 2013-04-01             4    2.721254                1 1010037.7
## 10   Apr 2013 2013-04-01             4    2.626984                1 1010037.7
## 11   Apr 2013 2013-04-01             4    2.707463                1 1010037.7
## 12   Apr 2013 2013-04-01             4    2.765125                1 1010037.7
## 13   Apr 2013 2013-04-01             4    2.686520                1 1010037.7
## 14   Apr 2013 2013-04-01             4    2.555556                1 1010037.7
## 15   Apr 2013 2013-04-01             4    1.716172                0 1010037.7
## 16   Apr 2013 2013-04-01             4    2.652459                1 1010037.7
## 17   Apr 2013 2013-04-01             4    2.652459                1 1010037.7
## 18   Apr 2013 2013-04-01             4    2.743316                1 1010037.7
## 19   Apr 2013 2013-04-01             4    2.770492                1 1010037.7
## 20   Apr 2013 2013-04-01             4    2.762658                1 1010037.7
## 21   Apr 2013 2013-04-01             4    2.887608                1 1010037.7
## 22   Apr 2013 2013-04-01             4    2.485246                1 1010037.7
## 23   Apr 2013 2013-04-01             4    2.848138                1 1010037.7
## 24   Apr 2013 2013-04-01             4    2.710247                1 1010037.7
## 25   Apr 2013 2013-04-01             4    2.781250                1 1010037.7
## 26   Apr 2013 2013-04-01             4    2.817857                1 1010037.7
## 27   Apr 2013 2013-04-01             4    2.717877                1 1010037.7
## 28   Apr 2013 2013-04-01             4    2.783626                1 1010037.7
## 29   Apr 2013 2013-04-01             4    1.706122                0 1010037.7
## 30   Apr 2013 2013-04-01             4    1.759036                0 1010037.7
## 31   Apr 2013 2013-04-01             4    2.697674                1 1010037.7
## 32   Apr 2013 2013-04-01             4    2.662295                1 1010037.7
## 33   Apr 2013 2013-04-01             4    2.692547                1 1010037.7
## 34   Apr 2013 2013-04-01             4    2.666667                1 1010037.7
## 35   Apr 2013 2013-04-01             4    2.025830                0 1010037.7
## 36   Apr 2013 2013-04-01             4    2.720137                1 1010037.7
## 37   Apr 2013 2013-04-01             4    2.817073                1 1010037.7
## 38   Apr 2013 2013-04-01             4    2.705263                1 1010037.7
## 39   Apr 2013 2013-04-01             4    2.542254                1 1010037.7
## 40   Apr 2013 2013-04-01             4    2.790625                1 1010037.7
## 41   Apr 2013 2013-04-01             4    2.653199                1 1010037.7
## 42   Apr 2013 2013-04-01             4    2.764085                1 1010037.7
## 43   Apr 2013 2013-04-01             4    2.889968                1 1010037.7
## 44   Apr 2013 2013-04-01             4    2.067797                0 1010037.7
## 45   Apr 2013 2013-04-01             4    2.705674                1 1010037.7
## 46   Apr 2013 2013-04-01             4    2.641509                1 1010037.7
## 47   Apr 2013 2013-04-01             4    2.933798                1 1010037.7
## 48   Apr 2013 2013-04-01             4    1.771429                0 1010037.7
## 49   Apr 2013 2013-04-01             4    2.616022                1 1010037.7
## 50   Apr 2013 2013-04-01             4    2.637037                1 1010037.7
## 51   Apr 2013 2013-04-01             4    2.537415                1 1010037.7
## 52   Apr 2013 2013-04-01             4    2.654952                1 1010037.7
## 53   Apr 2013 2013-04-01             4    2.668770                1 1010037.7
## 54   Apr 2013 2013-04-01             4    2.558583                1 1010037.7
## 55   Apr 2013 2013-04-01             4    2.946996                1 1010037.7
## 56   Apr 2013 2013-04-01             4    2.631737                1 1010037.7
## 57   Apr 2013 2013-04-01             4    2.791209                1 1010037.7
## 58   Apr 2013 2013-04-01             4    2.787986                1 1010037.7
## 59   Apr 2013 2013-04-01             4    2.747423                1 1010037.7
## 60   Apr 2013 2013-04-01             4    2.810345                1 1010037.7
## 61   Apr 2013 2013-04-01             4    2.747801                1 1010037.7
## 62   Apr 2013 2013-04-01             4    2.850318                1 1010037.7
## 63   Apr 2013 2013-04-01             4    2.569801                1 1010037.7
## 64   Apr 2013 2013-04-01             4    2.463668                1 1010037.7
## 65   Apr 2013 2013-04-01             4    2.653846                1 1010037.7
## 66   Apr 2013 2013-04-01             4    2.527851                1 1010037.7
## 67   Apr 2013 2013-04-01             4    2.811881                1 1010037.7
## 68   Apr 2013 2013-04-01             4    2.865269                1 1010037.7
## 69   Apr 2013 2013-04-01             4    2.972973                1 1010037.7
## 70   Apr 2013 2013-04-01             4    2.477816                1 1010037.7
## 71   Apr 2013 2013-04-01             4    2.828652                1 1010037.7
## 72   Apr 2013 2013-04-01             4    2.535316                1 1010037.7
## 73   Apr 2013 2013-04-01             4    2.544959                1 1010037.7
## 74   Apr 2013 2013-04-01             4    2.705882                1 1010037.7
## 75   Apr 2013 2013-04-01             4    2.639175                1 1010037.7
## 76   Apr 2013 2013-04-01             4    1.704918                0 1155594.4
## 77   Apr 2013 2013-04-01             4    2.942529                1 1155594.4
## 78   Apr 2013 2013-04-01             4    2.829060                1 1155594.4
## 79   Apr 2013 2013-04-01             4    2.712230                1 1155594.4
## 80   Apr 2013 2013-04-01             4    1.707547                0 1155594.4
## 81   Apr 2013 2013-04-01             4    2.520000                1 1155594.4
## 82   Apr 2013 2013-04-01             4    1.827004                0 1155594.4
## 83   Apr 2013 2013-04-01             4    1.639405                0 1155594.4
## 84   Apr 2013 2013-04-01             4    2.504587                1 1155594.4
## 85   Apr 2013 2013-04-01             4    1.918644                0 1155594.4
## 86   Apr 2013 2013-04-01             4    1.571984                0 1155594.4
## 87   Apr 2013 2013-04-01             4    1.728070                0 1155594.4
## 88   Apr 2013 2013-04-01             4    1.798419                0 1155594.4
## 89   Apr 2013 2013-04-01             4    1.762295                0 1155594.4
## 90   Apr 2013 2013-04-01             4    1.771863                0 1155594.4
## 91   Apr 2013 2013-04-01             4    1.670543                0 1155594.4
## 92   Apr 2013 2013-04-01             4    1.914397                0 1155594.4
## 93   Apr 2013 2013-04-01             4    2.685714                1 1155594.4
## 94   Apr 2013 2013-04-01             4    2.846154                1 1155594.4
## 95   Apr 2013 2013-04-01             4    1.638462                0 1155594.4
## 96   Apr 2013 2013-04-01             4    2.527027                1 1155594.4
## 97   Apr 2013 2013-04-01             4    2.604457                1 1155594.4
## 98   Apr 2013 2013-04-01             4    2.419825                1 1155594.4
## 99   Apr 2013 2013-04-01             4    2.513021                1 1155594.4
## 100  Apr 2013 2013-04-01             4    1.666667                0 1155594.4
## 101  Apr 2013 2013-04-01             4    2.594675                1 1155594.4
## 102  Apr 2013 2013-04-01             4    2.535088                1 1155594.4
## 103  Apr 2013 2013-04-01             4    2.120301                1 1155594.4
## 104  Apr 2013 2013-04-01             4    2.693548                1 1155594.4
## 105  Apr 2013 2013-04-01             4    2.727829                1 1155594.4
## 106  Apr 2013 2013-04-01             4    2.713396                1 1155594.4
## 107  Apr 2013 2013-04-01             4    1.417857                0 1155594.4
## 108  Apr 2013 2013-04-01             4    2.851266                1 1155594.4
## 109  Apr 2013 2013-04-01             4    2.667702                1 1155594.4
## 110  Apr 2013 2013-04-01             4    2.803448                1 1155594.4
## 111  Apr 2013 2013-04-01             4    2.746082                1 1155594.4
## 112  Apr 2013 2013-04-01             4    1.875969                0 1155594.4
## 113  Apr 2013 2013-04-01             4    2.449275                1 1155594.4
## 114  Apr 2013 2013-04-01             4    2.497396                1 1155594.4
## 115  Apr 2013 2013-04-01             4    2.506925                1 1155594.4
## 116  Apr 2013 2013-04-01             4    3.081633                1 1155594.4
## 117  Apr 2013 2013-04-01             4    2.823362                1 1155594.4
## 118  Apr 2013 2013-04-01             4    2.629747                1 1155594.4
## 119  Apr 2013 2013-04-01             4    2.787791                1 1155594.4
## 120  Apr 2013 2013-04-01             4    2.745283                1 1155594.4
## 121  Apr 2013 2013-04-01             4    2.664879                1 1155594.4
## 122  Apr 2013 2013-04-01             4    2.631429                1 1155594.4
## 123  Apr 2013 2013-04-01             4    2.652174                1 1155594.4
## 124  Apr 2013 2013-04-01             4    2.675362                1 1155594.4
## 125  Apr 2013 2013-04-01             4    2.620000                1 1155594.4
## 126  Apr 2013 2013-04-01             4    2.630573                1 1155594.4
## 127  Apr 2013 2013-04-01             4    2.794702                1 1155594.4
## 128  Apr 2013 2013-04-01             4    2.711538                1 1155594.4
## 129  Apr 2013 2013-04-01             4    2.686520                1 1155594.4
## 130  Apr 2013 2013-04-01             4    2.813609                1 1155594.4
## 131  Apr 2013 2013-04-01             4    2.691030                1 1155594.4
## 132  Apr 2013 2013-04-01             4    2.763333                1 1155594.4
## 133  Apr 2013 2013-04-01             4    2.722826                1 1155594.4
## 134  Apr 2013 2013-04-01             4    2.728000                1 1155594.4
## 135  Apr 2013 2013-04-01             4    3.003226                1 1155594.4
## 136  Apr 2013 2013-04-01             4    2.900344                1 1155594.4
## 137  Apr 2013 2013-04-01             4    2.765363                1 1155594.4
## 138  Apr 2013 2013-04-01             4    2.763077                1 1155594.4
## 139  Apr 2013 2013-04-01             4    2.956667                1 1155594.4
## 140  Apr 2013 2013-04-01             4    2.813380                1 1164740.8
## 141  Apr 2013 2013-04-01             4    2.678344                1 1164740.8
## 142  Apr 2013 2013-04-01             4    2.529114                1 1164740.8
## 143  Apr 2013 2013-04-01             4    2.707547                1 1164740.8
## 144  Apr 2013 2013-04-01             4    1.826087                0 1164740.8
## 145  Apr 2013 2013-04-01             4    2.551320                1 1164740.8
## 146  Apr 2013 2013-04-01             4    2.657609                1 1164740.8
## 147  Apr 2013 2013-04-01             4    2.974684                1 1164740.8
## 148  Apr 2013 2013-04-01             4    2.773649                1 1164740.8
## 149  Apr 2013 2013-04-01             4    2.689231                1 1164740.8
## 150  Apr 2013 2013-04-01             4    1.823276                0 1164740.8
## 151  Apr 2013 2013-04-01             4    2.799228                1 1164740.8
## 152  Apr 2013 2013-04-01             4    2.698413                1 1164740.8
## 153  Apr 2013 2013-04-01             4    2.665605                1 1164740.8
## 154  Apr 2013 2013-04-01             4    2.532353                1 1164740.8
## 155  Apr 2013 2013-04-01             4    2.708455                1 1164740.8
## 156  Apr 2013 2013-04-01             4    2.812883                1 1164740.8
## 157  Apr 2013 2013-04-01             4    2.508861                1 1164740.8
## 158  Apr 2013 2013-04-01             4    2.758389                1 1164740.8
## 159  Apr 2013 2013-04-01             4    1.986486                0 1164740.8
## 160  Apr 2013 2013-04-01             4    2.653251                1 1164740.8
## 161  Apr 2013 2013-04-01             4    1.573944                0 1164740.8
## 162  Apr 2013 2013-04-01             4    2.607046                1 1164740.8
## 163  Apr 2013 2013-04-01             4    2.689223                1 1164740.8
## 164  Apr 2013 2013-04-01             4    2.560914                1 1164740.8
## 165  Apr 2013 2013-04-01             4    2.690476                1 1164740.8
## 166  Apr 2013 2013-04-01             4    2.722741                1 1164740.8
## 167  Apr 2013 2013-04-01             4    2.649068                1 1164740.8
## 168  Apr 2013 2013-04-01             4    2.555838                1 1164740.8
## 169  Apr 2013 2013-04-01             4    2.634675                1 1164740.8
## 170  Apr 2013 2013-04-01             4    2.801242                1 1164740.8
## 171  Apr 2013 2013-04-01             4    2.684066                1 1164740.8
## 172  Apr 2013 2013-04-01             4    2.737542                1 1164740.8
## 173  Apr 2013 2013-04-01             4    2.619938                1 1164740.8
## 174  Apr 2013 2013-04-01             4    2.715753                1 1164740.8
## 175  Apr 2013 2013-04-01             4    1.679443                0 1164740.8
## 176  Apr 2013 2013-04-01             4    2.685714                1 1164740.8
## 177  Apr 2013 2013-04-01             4    2.653409                1 1164740.8
## 178  Apr 2013 2013-04-01             4    2.485294                1 1164740.8
## 179  Apr 2013 2013-04-01             4    2.595588                1 1164740.8
## 180  Apr 2013 2013-04-01             4    2.790698                1 1164740.8
## 181  Apr 2013 2013-04-01             4    2.758730                1 1164740.8
## 182  Apr 2013 2013-04-01             4    1.732510                0 1164740.8
## 183  Apr 2013 2013-04-01             4    2.637462                1 1164740.8
## 184  Apr 2013 2013-04-01             4    2.037657                0 1164740.8
## 185  Apr 2013 2013-04-01             4    2.575198                1 1164740.8
## 186  Apr 2013 2013-04-01             4    2.740061                1 1164740.8
## 187  Apr 2013 2013-04-01             4    2.668622                1 1164740.8
## 188  Apr 2013 2013-04-01             4    2.581871                1 1164740.8
## 189  Apr 2013 2013-04-01             4    1.610738                0 1164740.8
## 190  Apr 2013 2013-04-01             4    1.625000                0 1164740.8
## 191  Apr 2013 2013-04-01             4    2.873199                1 1164740.8
## 192  Apr 2013 2013-04-01             4    2.697987                1 1164740.8
## 193  Apr 2013 2013-04-01             4    1.801262                0 1164740.8
## 194  Apr 2013 2013-04-01             4    1.974729                0 1164740.8
## 195  Apr 2013 2013-04-01             4    2.530899                1 1164740.8
## 196  Apr 2013 2013-04-01             4    2.798780                1 1164740.8
## 197  Apr 2013 2013-04-01             4    2.729730                1 1164740.8
## 198  Apr 2013 2013-04-01             4    2.597633                1 1164740.8
## 199  Apr 2013 2013-04-01             4    2.653439                1 1164740.8
## 200  Apr 2013 2013-04-01             4    2.580645                1 1164740.8
## 201  Apr 2013 2013-04-01             4    2.559486                1 1032899.8
## 202  Apr 2013 2013-04-01             4    2.422481                1 1032899.8
## 203  Apr 2013 2013-04-01             4    2.635783                1 1032899.8
## 204  Apr 2013 2013-04-01             4    2.964744                1 1032899.8
## 205  Apr 2013 2013-04-01             4    2.826568                1 1032899.8
## 206  Apr 2013 2013-04-01             4    2.827309                1 1032899.8
## 207  Apr 2013 2013-04-01             4    2.722388                1 1032899.8
## 208  Apr 2013 2013-04-01             4    2.989130                1 1032899.8
## 209  Apr 2013 2013-04-01             4    2.482072                1 1032899.8
## 210  Apr 2013 2013-04-01             4    2.532680                1 1032899.8
## 211  Apr 2013 2013-04-01             4    2.796562                1 1032899.8
## 212  Apr 2013 2013-04-01             4    2.596429                1 1032899.8
## 213  Apr 2013 2013-04-01             4    2.521875                1 1032899.8
## 214  Apr 2013 2013-04-01             4    1.885932                0 1032899.8
## 215  Apr 2013 2013-04-01             4    2.396104                1 1032899.8
## 216  Apr 2013 2013-04-01             4    1.970213                0 1032899.8
## 217  Apr 2013 2013-04-01             4    2.670103                1 1032899.8
## 218  Apr 2013 2013-04-01             4    1.905797                0 1032899.8
## 219  Apr 2013 2013-04-01             4    2.744275                1 1032899.8
## 220  Apr 2013 2013-04-01             4    2.655914                1 1032899.8
## 221  Apr 2013 2013-04-01             4    2.602410                1 1032899.8
## 222  Apr 2013 2013-04-01             4    2.738255                1 1032899.8
## 223  Apr 2013 2013-04-01             4    2.858657                1 1032899.8
## 224  Apr 2013 2013-04-01             4    2.649007                1 1032899.8
## 225  Apr 2013 2013-04-01             4    1.935223                0 1032899.8
## 226  Apr 2013 2013-04-01             4    2.738170                1 1032899.8
## 227  Apr 2013 2013-04-01             4    2.608280                1 1032899.8
## 228  Apr 2013 2013-04-01             4    2.647651                1 1032899.8
## 229  Apr 2013 2013-04-01             4    1.664234                0 1032899.8
## 230  Apr 2013 2013-04-01             4    2.780769                1 1032899.8
## 231  Apr 2013 2013-04-01             4    2.727273                1 1032899.8
## 232  Apr 2013 2013-04-01             4    2.725552                1 1032899.8
## 233  Apr 2013 2013-04-01             4    2.807339                1 1032899.8
## 234  Apr 2013 2013-04-01             4    2.855596                1 1032899.8
## 235  Apr 2013 2013-04-01             4    2.809028                1 1032899.8
## 236  Apr 2013 2013-04-01             4    2.622159                1 1032899.8
## 237  Apr 2013 2013-04-01             4    2.730303                1 1032899.8
## 238  Apr 2013 2013-04-01             4    2.948718                1 1032899.8
## 239  Apr 2013 2013-04-01             4    2.762069                1 1032899.8
## 240  Apr 2013 2013-04-01             4    2.812500                1 1032899.8
## 241  Apr 2013 2013-04-01             4    2.623134                1 1032899.8
## 242  Apr 2013 2013-04-01             4    1.725191                0 1032899.8
## 243  Apr 2013 2013-04-01             4    2.569801                1 1032899.8
## 244  Apr 2013 2013-04-01             4    2.675159                1 1032899.8
## 245  Apr 2013 2013-04-01             4    2.951368                1 1032899.8
## 246  Apr 2013 2013-04-01             4    2.984848                1 1032899.8
## 247  Apr 2013 2013-04-01             4    2.969283                1 1032899.8
## 248  Apr 2013 2013-04-01             4    2.708609                1 1032899.8
## 249  Apr 2013 2013-04-01             4    2.734375                1 1032899.8
## 250  Apr 2013 2013-04-01             4    2.789474                1 1032899.8
## 251  Apr 2013 2013-04-01             4    2.703947                1 1032899.8
## 252  Apr 2013 2013-04-01             4    2.661710                1 1032899.8
## 253  Apr 2013 2013-04-01             4    2.707237                1 1032899.8
## 254  Apr 2013 2013-04-01             4    2.643411                1 1032899.8
## 255  Apr 2013 2013-04-01             4    2.935484                1 1032899.8
## 256  Apr 2013 2013-04-01             4    2.840304                1 1032899.8
## 257  Apr 2013 2013-04-01             4    2.849858                1 1032899.8
## 258  Apr 2013 2013-04-01             4    2.041985                0 1032899.8
## 259  Apr 2013 2013-04-01             4    2.670270                1 1032899.8
## 260  Apr 2013 2013-04-01             4    2.976744                1 1032899.8
## 261  Apr 2013 2013-04-01             4    2.085938                0 1000240.8
## 262  Apr 2013 2013-04-01             4    1.930502                0 1000240.8
## 263  Apr 2013 2013-04-01             4    2.455263                1 1000240.8
## 264  Apr 2013 2013-04-01             4    1.753788                0 1000240.8
## 265  Apr 2013 2013-04-01             4    2.424242                1 1000240.8
## 266  Apr 2013 2013-04-01             4    1.918182                0 1000240.8
## 267  Apr 2013 2013-04-01             4    2.739777                1 1000240.8
## 268  Apr 2013 2013-04-01             4    2.688312                1 1000240.8
## 269  Apr 2013 2013-04-01             4    2.894737                1 1000240.8
## 270  Apr 2013 2013-04-01             4    3.046099                1 1000240.8
## 271  Apr 2013 2013-04-01             4    2.666667                1 1000240.8
## 272  Apr 2013 2013-04-01             4    2.932660                1 1000240.8
## 273  Apr 2013 2013-04-01             4    2.615854                1 1000240.8
## 274  Apr 2013 2013-04-01             4    1.918149                0 1000240.8
## 275  Apr 2013 2013-04-01             4    2.904959                1 1000240.8
## 276  Apr 2013 2013-04-01             4    2.707831                1 1000240.8
## 277  Apr 2013 2013-04-01             4    2.668966                1 1000240.8
## 278  Apr 2013 2013-04-01             4    2.821549                1 1000240.8
## 279  Apr 2013 2013-04-01             4    2.678571                1 1000240.8
## 280  Apr 2013 2013-04-01             4    2.654206                1 1000240.8
## 281  Apr 2013 2013-04-01             4    1.783439                0 1000240.8
## 282  Apr 2013 2013-04-01             4    2.623824                1 1000240.8
## 283  Apr 2013 2013-04-01             4    2.597668                1 1000240.8
## 284  Apr 2013 2013-04-01             4    1.884477                0 1000240.8
## 285  Apr 2013 2013-04-01             4    2.514706                1 1000240.8
## 286  Apr 2013 2013-04-01             4    2.715655                1 1150184.3
## 287  Apr 2013 2013-04-01             4    1.722045                0 1150184.3
## 288  Apr 2013 2013-04-01             4    2.854839                1 1150184.3
## 289  Apr 2013 2013-04-01             4    2.806452                1 1150184.3
## 290  Apr 2013 2013-04-01             4    2.819048                1 1150184.3
## 291  Apr 2013 2013-04-01             4    2.856688                1 1150184.3
## 292  Apr 2013 2013-04-01             4    2.882550                1 1150184.3
## 293  Apr 2013 2013-04-01             4    1.761538                0 1150184.3
## 294  Apr 2013 2013-04-01             4    2.684211                1 1150184.3
## 295  Apr 2013 2013-04-01             4    2.100977                0 1150184.3
## 296  Apr 2013 2013-04-01             4    1.572438                0 1150184.3
## 297  Apr 2013 2013-04-01             4    1.623077                0 1150184.3
## 298  Apr 2013 2013-04-01             4    2.472119                1 1150184.3
## 299  Apr 2013 2013-04-01             4    1.725753                0 1150184.3
## 300  Apr 2013 2013-04-01             4    2.743827                1 1150184.3
## 301  Apr 2013 2013-04-01             4    2.655556                1 1150184.3
## 302  Apr 2013 2013-04-01             4    2.469965                1 1150184.3
## 303  Apr 2013 2013-04-01             4    2.585034                1 1150184.3
## 304  Apr 2013 2013-04-01             4    1.952381                0 1150184.3
## 305  Apr 2013 2013-04-01             4    2.688172                1 1150184.3
## 306  Apr 2013 2013-04-01             4    2.648208                1 1150184.3
## 307  Apr 2013 2013-04-01             4    1.830450                0 1150184.3
## 308  Apr 2013 2013-04-01             4    1.616279                0 1150184.3
## 309  Apr 2013 2013-04-01             4    2.622356                1 1150184.3
## 310  Apr 2013 2013-04-01             4    1.969605                0 1150184.3
## 311  Apr 2013 2013-04-01             4    2.091255                0 1150184.3
## 312  Apr 2013 2013-04-01             4    1.965625                0 1150184.3
## 313  Apr 2013 2013-04-01             4    2.522807                1 1150184.3
## 314  Apr 2013 2013-04-01             4    2.665635                1 1150184.3
## 315  Apr 2013 2013-04-01             4    2.495327                1 1150184.3
## 316  Apr 2013 2013-04-01             4    2.528902                1 1150184.3
## 317  Apr 2013 2013-04-01             4    1.969789                0 1150184.3
## 318  Apr 2013 2013-04-01             4    1.954984                0 1150184.3
## 319  Apr 2013 2013-04-01             4    2.781145                1 1150184.3
## 320  Apr 2013 2013-04-01             4    1.632836                0 1150184.3
## 321  Apr 2013 2013-04-01             4    2.650685                1 1150184.3
## 322  Dec 2013 2013-12-01            12    2.510703                1 1010037.7
## 323  Dec 2013 2013-12-01            12    2.753247                1 1010037.7
## 324  Dec 2013 2013-12-01            12    2.493639                1 1010037.7
## 325  Dec 2013 2013-12-01            12    2.603774                1 1010037.7
## 326  Dec 2013 2013-12-01            12    2.720109                1 1010037.7
## 327  Dec 2013 2013-12-01            12    2.598746                1 1010037.7
## 328  Dec 2013 2013-12-01            12    2.538667                1 1010037.7
## 329  Dec 2013 2013-12-01            12    2.671196                1 1010037.7
## 330  Dec 2013 2013-12-01            12    2.706806                1 1010037.7
## 331  Dec 2013 2013-12-01            12    2.700906                1 1010037.7
## 332  Dec 2013 2013-12-01            12    2.787356                1 1010037.7
## 333  Dec 2013 2013-12-01            12    1.811558                0 1010037.7
## 334  Dec 2013 2013-12-01            12    2.609687                1 1010037.7
## 335  Dec 2013 2013-12-01            12    2.732759                1 1010037.7
## 336  Dec 2013 2013-12-01            12    2.704735                1 1010037.7
## 337  Dec 2013 2013-12-01            12    2.729231                1 1010037.7
## 338  Dec 2013 2013-12-01            12    2.571429                1 1010037.7
## 339  Dec 2013 2013-12-01            12    2.661891                1 1010037.7
## 340  Dec 2013 2013-12-01            12    2.505102                1 1010037.7
## 341  Dec 2013 2013-12-01            12    2.670213                1 1010037.7
## 342  Dec 2013 2013-12-01            12    2.582210                1 1010037.7
## 343  Dec 2013 2013-12-01            12    2.735294                1 1010037.7
## 344  Dec 2013 2013-12-01            12    2.396594                1 1010037.7
## 345  Dec 2013 2013-12-01            12    2.836565                1 1010037.7
## 346  Dec 2013 2013-12-01            12    2.897611                1 1010037.7
## 347  Dec 2013 2013-12-01            12    2.495726                1 1010037.7
## 348  Dec 2013 2013-12-01            12    2.561453                1 1010037.7
## 349  Dec 2013 2013-12-01            12    2.753463                1 1010037.7
## 350  Dec 2013 2013-12-01            12    2.702918                1 1010037.7
## 351  Dec 2013 2013-12-01            12    2.883853                1 1010037.7
## 352  Dec 2013 2013-12-01            12    2.684971                1 1010037.7
## 353  Dec 2013 2013-12-01            12    2.751429                1 1010037.7
## 354  Dec 2013 2013-12-01            12    2.693767                1 1010037.7
## 355  Dec 2013 2013-12-01            12    2.548052                1 1010037.7
## 356  Dec 2013 2013-12-01            12    2.747604                1 1010037.7
## 357  Dec 2013 2013-12-01            12    2.740634                1 1010037.7
## 358  Dec 2013 2013-12-01            12    2.822742                1 1010037.7
## 359  Dec 2013 2013-12-01            12    2.586592                1 1010037.7
## 360  Dec 2013 2013-12-01            12    2.916667                1 1010037.7
## 361  Dec 2013 2013-12-01            12    2.602210                1 1010037.7
## 362  Dec 2013 2013-12-01            12    2.646113                1 1010037.7
## 363  Dec 2013 2013-12-01            12    2.829545                1 1010037.7
## 364  Dec 2013 2013-12-01            12    2.676630                1 1010037.7
## 365  Dec 2013 2013-12-01            12    2.655440                1 1010037.7
## 366  Dec 2013 2013-12-01            12    2.722930                1 1010037.7
## 367  Dec 2013 2013-12-01            12    2.640306                1 1010037.7
## 368  Dec 2013 2013-12-01            12    2.865320                1 1010037.7
## 369  Dec 2013 2013-12-01            12    2.679558                1 1010037.7
## 370  Dec 2013 2013-12-01            12    2.893617                1 1010037.7
## 371  Dec 2013 2013-12-01            12    2.948980                1 1010037.7
## 372  Dec 2013 2013-12-01            12    2.696049                1 1010037.7
## 373  Dec 2013 2013-12-01            12    2.842254                1 1010037.7
## 374  Dec 2013 2013-12-01            12    2.660057                1 1010037.7
## 375  Dec 2013 2013-12-01            12    2.675900                1 1010037.7
## 376  Dec 2013 2013-12-01            12    2.771875                1 1010037.7
## 377  Dec 2013 2013-12-01            12    2.739837                1 1010037.7
## 378  Dec 2013 2013-12-01            12    2.900826                1 1010037.7
## 379  Dec 2013 2013-12-01            12    2.706704                1 1010037.7
## 380  Dec 2013 2013-12-01            12    2.662420                1 1010037.7
## 381  Dec 2013 2013-12-01            12    2.765957                1 1010037.7
## 382  Dec 2013 2013-12-01            12    2.684211                1 1010037.7
## 383  Dec 2013 2013-12-01            12    2.831956                1 1010037.7
## 384  Dec 2013 2013-12-01            12    2.638243                1 1010037.7
## 385  Dec 2013 2013-12-01            12    2.857558                1 1010037.7
## 386  Dec 2013 2013-12-01            12    2.653951                1 1010037.7
## 387  Dec 2013 2013-12-01            12    2.689373                1 1010037.7
## 388  Dec 2013 2013-12-01            12    2.813869                1 1010037.7
## 389  Dec 2013 2013-12-01            12    2.660256                1 1010037.7
## 390  Dec 2013 2013-12-01            12    2.803763                1 1010037.7
## 391  Dec 2013 2013-12-01            12    2.721311                1 1010037.7
## 392  Dec 2013 2013-12-01            12    2.628895                1 1010037.7
## 393  Dec 2013 2013-12-01            12    2.664042                1 1010037.7
## 394  Dec 2013 2013-12-01            12    2.690476                1 1010037.7
## 395  Dec 2013 2013-12-01            12    2.923077                1 1010037.7
## 396  Dec 2013 2013-12-01            12    2.552000                1 1010037.7
## 397  Dec 2013 2013-12-01            12    2.727869                1  949182.1
## 398  Dec 2013 2013-12-01            12    2.729814                1  949182.1
## 399  Dec 2013 2013-12-01            12    2.724234                1  949182.1
## 400  Dec 2013 2013-12-01            12    2.600000                1  949182.1
## 401  Dec 2013 2013-12-01            12    2.777027                1  949182.1
## 402  Dec 2013 2013-12-01            12    2.660256                1  949182.1
## 403  Dec 2013 2013-12-01            12    2.568182                1  949182.1
## 404  Dec 2013 2013-12-01            12    2.739927                1  949182.1
## 405  Dec 2013 2013-12-01            12    2.622581                1  949182.1
## 406  Dec 2013 2013-12-01            12    2.794702                1  949182.1
## 407  Dec 2013 2013-12-01            12    2.704348                1  949182.1
## 408  Dec 2013 2013-12-01            12    2.918919                1  949182.1
## 409  Dec 2013 2013-12-01            12    2.654971                1  949182.1
## 410  Dec 2013 2013-12-01            12    2.701183                1  949182.1
## 411  Dec 2013 2013-12-01            12    1.822823                0 1155594.4
## 412  Dec 2013 2013-12-01            12    1.829412                0 1155594.4
## 413  Dec 2013 2013-12-01            12    2.416000                1 1155594.4
## 414  Dec 2013 2013-12-01            12    2.454545                1 1155594.4
## 415  Dec 2013 2013-12-01            12    1.985915                0 1155594.4
## 416  Dec 2013 2013-12-01            12    1.782609                0 1155594.4
## 417  Dec 2013 2013-12-01            12    2.858025                1 1155594.4
## 418  Dec 2013 2013-12-01            12    2.542700                1 1155594.4
## 419  Dec 2013 2013-12-01            12    1.645833                0 1155594.4
## 420  Dec 2013 2013-12-01            12    2.489583                1 1155594.4
## 421  Dec 2013 2013-12-01            12    2.140110                0 1155594.4
## 422  Dec 2013 2013-12-01            12    2.424149                1 1155594.4
## 423  Dec 2013 2013-12-01            12    1.964179                0 1155594.4
## 424  Dec 2013 2013-12-01            12    1.629518                0 1155594.4
## 425  Dec 2013 2013-12-01            12    2.785047                1 1155594.4
## 426  Dec 2013 2013-12-01            12    2.610028                1 1155594.4
## 427  Dec 2013 2013-12-01            12    1.736994                0 1155594.4
## 428  Dec 2013 2013-12-01            12    1.700704                0 1155594.4
## 429  Dec 2013 2013-12-01            12    1.787356                0 1155594.4
## 430  Dec 2013 2013-12-01            12    2.526154                1 1155594.4
## 431  Dec 2013 2013-12-01            12    2.691803                1 1155594.4
## 432  Dec 2013 2013-12-01            12    2.765886                1 1155594.4
## 433  Dec 2013 2013-12-01            12    2.457071                1 1155594.4
## 434  Dec 2013 2013-12-01            12    2.409556                1 1155594.4
## 435  Dec 2013 2013-12-01            12    1.696429                0 1155594.4
## 436  Dec 2013 2013-12-01            12    2.634483                1 1155594.4
## 437  Dec 2013 2013-12-01            12    2.096096                0 1155594.4
## 438  Dec 2013 2013-12-01            12    2.011494                0 1155594.4
## 439  Dec 2013 2013-12-01            12    2.825397                1 1155594.4
## 440  Dec 2013 2013-12-01            12    2.438692                1 1155594.4
## 441  Dec 2013 2013-12-01            12    2.522013                1 1155594.4
## 442  Dec 2013 2013-12-01            12    2.576923                1 1155594.4
## 443  Dec 2013 2013-12-01            12    2.450617                1 1155594.4
## 444  Dec 2013 2013-12-01            12    1.962500                0 1155594.4
## 445  Dec 2013 2013-12-01            12    2.650131                1 1155594.4
## 446  Dec 2013 2013-12-01            12    2.710448                1 1155594.4
## 447  Dec 2013 2013-12-01            12    2.649351                1 1155594.4
## 448  Dec 2013 2013-12-01            12    1.911864                0 1155594.4
## 449  Dec 2013 2013-12-01            12    2.022222                0 1155594.4
## 450  Dec 2013 2013-12-01            12    2.777090                1 1155594.4
## 451  Dec 2013 2013-12-01            12    1.783699                0 1155594.4
## 452  Dec 2013 2013-12-01            12    2.027397                0 1155594.4
## 453  Dec 2013 2013-12-01            12    2.808176                1 1155594.4
## 454  Dec 2013 2013-12-01            12    2.557545                1 1155594.4
## 455  Dec 2013 2013-12-01            12    2.177419                0 1155594.4
## 456  Dec 2013 2013-12-01            12    2.489933                1 1155594.4
## 457  Dec 2013 2013-12-01            12    2.529255                1 1155594.4
## 458  Dec 2013 2013-12-01            12    1.708709                0 1155594.4
## 459  Dec 2013 2013-12-01            12    2.654639                1 1155594.4
## 460  Dec 2013 2013-12-01            12    2.790634                1 1155594.4
## 461  Dec 2013 2013-12-01            12    2.622024                1 1155594.4
## 462  Dec 2013 2013-12-01            12    2.716088                1 1155594.4
## 463  Dec 2013 2013-12-01            12    2.671010                1 1164740.8
## 464  Dec 2013 2013-12-01            12    2.608466                1 1164740.8
## 465  Dec 2013 2013-12-01            12    1.575000                0 1164740.8
## 466  Dec 2013 2013-12-01            12    2.710714                1 1164740.8
## 467  Dec 2013 2013-12-01            12    2.583333                1 1164740.8
## 468  Dec 2013 2013-12-01            12    2.558642                1 1164740.8
## 469  Dec 2013 2013-12-01            12    2.760000                1 1164740.8
## 470  Dec 2013 2013-12-01            12    1.746479                0 1164740.8
## 471  Dec 2013 2013-12-01            12    2.574413                1 1164740.8
## 472  Dec 2013 2013-12-01            12    1.714286                0 1164740.8
## 473  Dec 2013 2013-12-01            12    2.646865                1 1164740.8
## 474  Dec 2013 2013-12-01            12    2.641711                1 1164740.8
## 475  Dec 2013 2013-12-01            12    2.414474                1 1164740.8
## 476  Dec 2013 2013-12-01            12    2.624585                1 1164740.8
## 477  Dec 2013 2013-12-01            12    2.622222                1 1164740.8
## 478  Dec 2013 2013-12-01            12    1.688525                0 1164740.8
## 479  Dec 2013 2013-12-01            12    1.893238                0 1164740.8
## 480  Dec 2013 2013-12-01            12    2.507042                1 1164740.8
## 481  Dec 2013 2013-12-01            12    2.457944                1 1164740.8
## 482  Dec 2013 2013-12-01            12    2.570997                1 1164740.8
## 483  Dec 2013 2013-12-01            12    2.701538                1 1164740.8
## 484  Dec 2013 2013-12-01            12    2.712375                1 1164740.8
## 485  Dec 2013 2013-12-01            12    2.592262                1 1164740.8
## 486  Dec 2013 2013-12-01            12    2.626140                1 1164740.8
## 487  Dec 2013 2013-12-01            12    2.651282                1 1164740.8
## 488  Dec 2013 2013-12-01            12    2.749311                1 1164740.8
## 489  Dec 2013 2013-12-01            12    2.799410                1 1164740.8
## 490  Dec 2013 2013-12-01            12    2.856230                1 1164740.8
## 491  Dec 2013 2013-12-01            12    2.536193                1 1164740.8
## 492  Dec 2013 2013-12-01            12    2.622419                1 1164740.8
## 493  Dec 2013 2013-12-01            12    1.634058                0 1164740.8
## 494  Dec 2013 2013-12-01            12    2.597884                1 1164740.8
## 495  Dec 2013 2013-12-01            12    2.793651                1 1032899.8
## 496  Dec 2013 2013-12-01            12    2.880137                1 1032899.8
## 497  Dec 2013 2013-12-01            12    2.778816                1 1032899.8
## 498  Dec 2013 2013-12-01            12    2.718182                1 1032899.8
## 499  Dec 2013 2013-12-01            12    2.565460                1 1032899.8
## 500  Dec 2013 2013-12-01            12    2.733108                1 1032899.8
## 501  Dec 2013 2013-12-01            12    2.826705                1 1032899.8
## 502  Dec 2013 2013-12-01            12    2.625418                1 1032899.8
## 503  Dec 2013 2013-12-01            12    2.652174                1 1032899.8
## 504  Dec 2013 2013-12-01            12    2.607345                1 1032899.8
## 505  Dec 2013 2013-12-01            12    2.562092                1 1032899.8
## 506  Dec 2013 2013-12-01            12    2.741538                1 1032899.8
## 507  Dec 2013 2013-12-01            12    2.705329                1 1032899.8
## 508  Dec 2013 2013-12-01            12    2.906433                1 1032899.8
## 509  Dec 2013 2013-12-01            12    2.959410                1 1032899.8
## 510  Dec 2013 2013-12-01            12    2.558360                1 1032899.8
## 511  Dec 2013 2013-12-01            12    2.585443                1 1032899.8
## 512  Dec 2013 2013-12-01            12    2.664835                1 1032899.8
## 513  Dec 2013 2013-12-01            12    2.821918                1 1032899.8
## 514  Dec 2013 2013-12-01            12    2.758842                1 1032899.8
## 515  Dec 2013 2013-12-01            12    2.895470                1 1032899.8
## 516  Dec 2013 2013-12-01            12    2.917808                1 1032899.8
## 517  Dec 2013 2013-12-01            12    2.733696                1 1032899.8
## 518  Dec 2013 2013-12-01            12    2.746356                1 1032899.8
## 519  Dec 2013 2013-12-01            12    2.657051                1 1032899.8
## 520  Dec 2013 2013-12-01            12    2.579125                1 1032899.8
## 521  Dec 2013 2013-12-01            12    2.870748                1 1032899.8
## 522  Dec 2013 2013-12-01            12    2.771987                1 1032899.8
## 523  Dec 2013 2013-12-01            12    2.579288                1 1032899.8
## 524  Dec 2013 2013-12-01            12    2.697674                1 1032899.8
## 525  Dec 2013 2013-12-01            12    2.735294                1 1032899.8
## 526  Dec 2013 2013-12-01            12    2.915441                1 1032899.8
## 527  Dec 2013 2013-12-01            12    2.663934                1 1032899.8
## 528  Dec 2013 2013-12-01            12    2.774648                1 1032899.8
## 529  Dec 2013 2013-12-01            12    2.919732                1 1032899.8
## 530  Dec 2013 2013-12-01            12    2.902027                1 1032899.8
## 531  Dec 2013 2013-12-01            12    2.752613                1 1032899.8
## 532  Dec 2013 2013-12-01            12    2.730263                1 1032899.8
## 533  Dec 2013 2013-12-01            12    2.735119                1 1032899.8
## 534  Dec 2013 2013-12-01            12    2.835766                1 1032899.8
## 535  Dec 2013 2013-12-01            12    2.655977                1 1032899.8
## 536  Dec 2013 2013-12-01            12    2.722222                1 1032899.8
## 537  Dec 2013 2013-12-01            12    2.563218                1 1032899.8
## 538  Dec 2013 2013-12-01            12    2.688623                1 1032899.8
## 539  Dec 2013 2013-12-01            12    2.537313                1 1032899.8
## 540  Dec 2013 2013-12-01            12    2.607143                1 1032899.8
## 541  Dec 2013 2013-12-01            12    2.542484                1 1032899.8
## 542  Dec 2013 2013-12-01            12    2.408602                1 1032899.8
## 543  Dec 2013 2013-12-01            12    2.768025                1 1032899.8
## 544  Dec 2013 2013-12-01            12    2.843206                1 1032899.8
## 545  Dec 2013 2013-12-01            12    2.672783                1 1032899.8
## 546  Dec 2013 2013-12-01            12    2.763636                1 1032899.8
## 547  Dec 2013 2013-12-01            12    3.316456                1 1032899.8
## 548  Dec 2013 2013-12-01            12    2.403955                1 1032899.8
## 549  Dec 2013 2013-12-01            12    2.426702                1 1032899.8
## 550  Dec 2013 2013-12-01            12    2.558219                1 1032899.8
## 551  Dec 2013 2013-12-01            12    2.488599                1 1032899.8
## 552  Dec 2013 2013-12-01            12    2.584270                1 1032899.8
## 553  Dec 2013 2013-12-01            12    2.828571                1 1032899.8
## 554  Dec 2013 2013-12-01            12    2.731959                1 1032899.8
## 555  Dec 2013 2013-12-01            12    2.642202                1 1032899.8
## 556  Dec 2013 2013-12-01            12    2.916667                1 1032899.8
## 557  Dec 2013 2013-12-01            12    2.373832                1 1032899.8
## 558  Dec 2013 2013-12-01            12    2.532258                1 1032899.8
## 559  Dec 2013 2013-12-01            12    2.768519                1 1032899.8
## 560  Dec 2013 2013-12-01            12    2.548476                1 1032899.8
## 561  Dec 2013 2013-12-01            12    2.847518                1 1032899.8
## 562  Dec 2013 2013-12-01            12    2.665574                1 1032899.8
## 563  Dec 2013 2013-12-01            12    2.397626                1 1032899.8
## 564  Dec 2013 2013-12-01            12    2.632867                1 1032899.8
## 565  Dec 2013 2013-12-01            12    2.568807                1 1032899.8
## 566  Dec 2013 2013-12-01            12    2.691589                1 1032899.8
## 567  Dec 2013 2013-12-01            12    2.494737                1 1032899.8
## 568  Dec 2013 2013-12-01            12    2.887755                1 1032899.8
## 569  Dec 2013 2013-12-01            12    2.564356                1 1032899.8
## 570  Dec 2013 2013-12-01            12    2.479224                1 1032899.8
## 571  Dec 2013 2013-12-01            12    2.697509                1 1032899.8
## 572  Dec 2013 2013-12-01            12    2.479310                1 1032899.8
## 573  Dec 2013 2013-12-01            12    2.797101                1 1032899.8
## 574  Dec 2013 2013-12-01            12    2.774603                1 1032899.8
## 575  Dec 2013 2013-12-01            12    2.542373                1 1032899.8
## 576  Dec 2013 2013-12-01            12    2.430199                1 1032899.8
## 577  Dec 2013 2013-12-01            12    2.636364                1 1032899.8
## 578  Dec 2013 2013-12-01            12    2.605442                1 1032899.8
## 579  Dec 2013 2013-12-01            12    2.511696                1 1000240.8
## 580  Dec 2013 2013-12-01            12    2.445355                1 1000240.8
## 581  Dec 2013 2013-12-01            12    2.395349                1 1000240.8
## 582  Dec 2013 2013-12-01            12    2.549296                1 1000240.8
## 583  Dec 2013 2013-12-01            12    2.762058                1 1000240.8
## 584  Dec 2013 2013-12-01            12    2.639731                1 1000240.8
## 585  Dec 2013 2013-12-01            12    2.550955                1 1000240.8
## 586  Dec 2013 2013-12-01            12    2.431694                1 1000240.8
## 587  Dec 2013 2013-12-01            12    2.675497                1 1000240.8
## 588  Dec 2013 2013-12-01            12    2.405488                1 1000240.8
## 589  Dec 2013 2013-12-01            12    2.584527                1 1000240.8
## 590  Dec 2013 2013-12-01            12    2.446108                1 1000240.8
## 591  Dec 2013 2013-12-01            12    2.848138                1 1000240.8
## 592  Dec 2013 2013-12-01            12    2.761194                1 1000240.8
## 593  Dec 2013 2013-12-01            12    2.662651                1 1000240.8
## 594  Dec 2013 2013-12-01            12    3.078947                1 1000240.8
## 595  Dec 2013 2013-12-01            12    2.394203                1 1000240.8
## 596  Dec 2013 2013-12-01            12    2.916667                1 1000240.8
## 597  Dec 2013 2013-12-01            12    2.670330                1 1000240.8
## 598  Dec 2013 2013-12-01            12    2.385075                1 1000240.8
## 599  Dec 2013 2013-12-01            12    2.546392                1 1000240.8
## 600  Dec 2013 2013-12-01            12    2.377465                1 1000240.8
## 601  Dec 2013 2013-12-01            12    3.013559                1 1000240.8
## 602  Dec 2013 2013-12-01            12    2.425414                1 1000240.8
## 603  Dec 2013 2013-12-01            12    2.474576                1 1000240.8
## 604  Dec 2013 2013-12-01            12    2.539432                1 1000240.8
## 605  Dec 2013 2013-12-01            12    2.562701                1 1000240.8
## 606  Dec 2013 2013-12-01            12    2.539735                1 1000240.8
## 607  Dec 2013 2013-12-01            12    2.805732                1 1000240.8
## 608  Dec 2013 2013-12-01            12    2.627451                1 1000240.8
## 609  Dec 2013 2013-12-01            12    2.473520                1 1000240.8
## 610  Dec 2013 2013-12-01            12    2.743506                1 1000240.8
## 611  Dec 2013 2013-12-01            12    2.660969                1 1000240.8
## 612  Dec 2013 2013-12-01            12    2.431884                1 1000240.8
## 613  Dec 2013 2013-12-01            12    2.926174                1 1000240.8
## 614  Dec 2013 2013-12-01            12    2.829132                1 1000240.8
## 615  Dec 2013 2013-12-01            12    2.386819                1 1000240.8
## 616  Dec 2013 2013-12-01            12    2.647059                1 1000240.8
## 617  Dec 2013 2013-12-01            12    2.748227                1 1000240.8
## 618  Dec 2013 2013-12-01            12    2.543253                1 1000240.8
## 619  Dec 2013 2013-12-01            12    2.583090                1 1000240.8
## 620  Dec 2013 2013-12-01            12    2.917431                1 1000240.8
## 621  Dec 2013 2013-12-01            12    2.629758                1 1000240.8
## 622  Dec 2013 2013-12-01            12    2.870000                1 1000240.8
## 623  Dec 2013 2013-12-01            12    2.430723                1 1000240.8
## 624  Dec 2013 2013-12-01            12    2.581994                1 1000240.8
## 625  Dec 2013 2013-12-01            12    2.480836                1 1000240.8
## 626  Dec 2013 2013-12-01            12    2.895105                1 1000240.8
## 627  Dec 2013 2013-12-01            12    2.137931                0 1000240.8
## 628  Dec 2013 2013-12-01            12    2.476190                1 1000240.8
## 629  Dec 2013 2013-12-01            12    2.504587                1 1000240.8
## 630  Dec 2013 2013-12-01            12    2.580838                1 1000240.8
## 631  Dec 2013 2013-12-01            12    3.034364                1 1000240.8
## 632  Dec 2013 2013-12-01            12    2.512968                1 1000240.8
## 633  Dec 2013 2013-12-01            12    2.810811                1 1000240.8
## 634  Dec 2013 2013-12-01            12    2.639344                1 1000240.8
## 635  Dec 2013 2013-12-01            12    2.750751                1 1000240.8
## 636  Dec 2013 2013-12-01            12    2.728707                1 1000240.8
## 637  Dec 2013 2013-12-01            12    2.597403                1 1000240.8
## 638  Dec 2013 2013-12-01            12    2.679868                1 1000240.8
## 639  Dec 2013 2013-12-01            12    2.869159                1 1000240.8
## 640  Dec 2013 2013-12-01            12    2.663194                1 1000240.8
## 641  Dec 2013 2013-12-01            12    2.508242                1 1000240.8
## 642  Dec 2013 2013-12-01            12    2.792388                1 1000240.8
## 643  Dec 2013 2013-12-01            12    2.523490                1 1000240.8
## 644  Dec 2013 2013-12-01            12    2.663082                1 1000240.8
## 645  Dec 2013 2013-12-01            12    2.589404                1 1000240.8
## 646  Dec 2013 2013-12-01            12    2.906040                1 1000240.8
## 647  Dec 2013 2013-12-01            12    2.719298                1 1000240.8
## 648  Dec 2013 2013-12-01            12    2.548495                1 1000240.8
## 649  Dec 2013 2013-12-01            12    2.702797                1 1000240.8
## 650  Dec 2013 2013-12-01            12    2.480114                1 1000240.8
## 651  Dec 2013 2013-12-01            12    2.369697                1 1000240.8
## 652  Dec 2013 2013-12-01            12    2.908012                1 1000240.8
## 653  Dec 2013 2013-12-01            12    2.654237                1 1000240.8
## 654  Dec 2013 2013-12-01            12    2.466238                1 1000240.8
## 655  Dec 2013 2013-12-01            12    2.473684                1 1000240.8
## 656  Dec 2013 2013-12-01            12    2.676768                1 1000240.8
## 657  Dec 2013 2013-12-01            12    2.836879                1 1000240.8
## 658  Dec 2013 2013-12-01            12    2.611650                1 1000240.8
## 659  Dec 2013 2013-12-01            12    2.640569                1 1000240.8
## 660  Dec 2013 2013-12-01            12    2.841509                1 1000240.8
## 661  Dec 2013 2013-12-01            12    2.817891                1 1000240.8
## 662  Dec 2013 2013-12-01            12    2.400000                1 1000240.8
## 663  Dec 2013 2013-12-01            12    2.577844                1 1000240.8
## 664  Dec 2013 2013-12-01            12    2.642458                1 1000240.8
## 665  Dec 2013 2013-12-01            12    1.961538                0 1000240.8
## 666  Dec 2013 2013-12-01            12    2.551237                1 1000240.8
## 667  Dec 2013 2013-12-01            12    2.514667                1 1000240.8
## 668  Dec 2013 2013-12-01            12    2.722045                1 1000240.8
## 669  Dec 2013 2013-12-01            12    2.642105                1 1000240.8
## 670  Dec 2013 2013-12-01            12    2.566563                1 1150184.3
## 671  Dec 2013 2013-12-01            12    2.679012                1 1150184.3
## 672  Dec 2013 2013-12-01            12    2.711974                1 1150184.3
## 673  Dec 2013 2013-12-01            12    2.741259                1 1150184.3
## 674  Dec 2013 2013-12-01            12    2.877551                1 1150184.3
## 675  Dec 2013 2013-12-01            12    2.534884                1 1150184.3
## 676  Dec 2013 2013-12-01            12    2.693069                1 1150184.3
## 677  Dec 2013 2013-12-01            12    2.828986                1 1150184.3
## 678  Dec 2013 2013-12-01            12    2.618234                1 1150184.3
## 679  Dec 2013 2013-12-01            12    2.018519                0 1150184.3
## 680  Dec 2013 2013-12-01            12    2.714754                1 1150184.3
## 681  Dec 2013 2013-12-01            12    2.648094                1 1150184.3
## 682  Dec 2013 2013-12-01            12    2.627976                1 1150184.3
## 683  Dec 2013 2013-12-01            12    2.985765                1 1150184.3
## 684  Dec 2013 2013-12-01            12    2.855634                1 1150184.3
## 685  Dec 2013 2013-12-01            12    2.703072                1 1150184.3
## 686  Dec 2013 2013-12-01            12    2.661850                1 1150184.3
## 687  Dec 2013 2013-12-01            12    2.672269                1 1150184.3
## 688  Dec 2013 2013-12-01            12    2.769634                1 1150184.3
## 689  Dec 2013 2013-12-01            12    2.633690                1 1150184.3
## 690  Dec 2013 2013-12-01            12    2.744417                1 1150184.3
## 691  Dec 2013 2013-12-01            12    2.787546                1 1150184.3
## 692  Dec 2013 2013-12-01            12    2.653125                1 1150184.3
## 693  Dec 2013 2013-12-01            12    2.911565                1 1150184.3
## 694  Dec 2013 2013-12-01            12    2.729814                1 1150184.3
## 695  Dec 2013 2013-12-01            12    2.647436                1 1150184.3
## 696  Dec 2013 2013-12-01            12    1.680934                0 1150184.3
## 697  Dec 2013 2013-12-01            12    2.759777                1 1150184.3
## 698  Dec 2013 2013-12-01            12    3.163043                1 1150184.3
## 699  Dec 2013 2013-12-01            12    2.751656                1 1150184.3
## 700  Dec 2013 2013-12-01            12    2.649231                1 1150184.3
## 701  Dec 2013 2013-12-01            12    1.982639                0 1150184.3
## 702  Dec 2013 2013-12-01            12    2.955172                1 1150184.3
## 703  Dec 2013 2013-12-01            12    1.860759                0 1150184.3
## 704  Dec 2013 2013-12-01            12    3.005865                1 1150184.3
## 705  Apr 2014 2014-04-01             4    2.594118                1  949182.1
## 706  Apr 2014 2014-04-01             4    2.665468                1  949182.1
## 707  Apr 2014 2014-04-01             4    2.680921                1  949182.1
## 708  Apr 2014 2014-04-01             4    2.652459                1  949182.1
## 709  Apr 2014 2014-04-01             4    2.796296                1  949182.1
## 710  Apr 2014 2014-04-01             4    2.606557                1  949182.1
## 711  Apr 2014 2014-04-01             4    2.780980                1  949182.1
## 712  Apr 2014 2014-04-01             4    2.599448                1  949182.1
## 713  Apr 2014 2014-04-01             4    2.944056                1  949182.1
## 714  Apr 2014 2014-04-01             4    2.833846                1  949182.1
## 715  Apr 2014 2014-04-01             4    2.729167                1  949182.1
## 716  Apr 2014 2014-04-01             4    2.754545                1  949182.1
## 717  Apr 2014 2014-04-01             4    2.664516                1  949182.1
## 718  Apr 2014 2014-04-01             4    2.508361                1  949182.1
## 719  Apr 2014 2014-04-01             4    2.699405                1  949182.1
## 720  Apr 2014 2014-04-01             4    2.802083                1  949182.1
## 721  Apr 2014 2014-04-01             4    2.643564                1  949182.1
## 722  Apr 2014 2014-04-01             4    2.564784                1  949182.1
## 723  Apr 2014 2014-04-01             4    2.638365                1  949182.1
## 724  Apr 2014 2014-04-01             4    2.603399                1  949182.1
## 725  Apr 2014 2014-04-01             4    2.672794                1  949182.1
## 726  Apr 2014 2014-04-01             4    1.830040                0  949182.1
## 727  Apr 2014 2014-04-01             4    2.611940                1  949182.1
## 728  Apr 2014 2014-04-01             4    2.521866                1  949182.1
## 729  Apr 2014 2014-04-01             4    2.795918                1  949182.1
## 730  Apr 2014 2014-04-01             4    2.707006                1  949182.1
## 731  Apr 2014 2014-04-01             4    2.663842                1  949182.1
## 732  Apr 2014 2014-04-01             4    1.806647                0  949182.1
## 733  Apr 2014 2014-04-01             4    2.570175                1  949182.1
## 734  Apr 2014 2014-04-01             4    2.947735                1  949182.1
## 735  Apr 2014 2014-04-01             4    2.636888                1  949182.1
## 736  Apr 2014 2014-04-01             4    2.766467                1  949182.1
## 737  Apr 2014 2014-04-01             4    2.800000                1  949182.1
## 738  Apr 2014 2014-04-01             4    2.694737                1  949182.1
## 739  Apr 2014 2014-04-01             4    2.693548                1  949182.1
## 740  Apr 2014 2014-04-01             4    2.771605                1  949182.1
## 741  Apr 2014 2014-04-01             4    2.713805                1  949182.1
## 742  Apr 2014 2014-04-01             4    2.699324                1  949182.1
## 743  Apr 2014 2014-04-01             4    2.639053                1  949182.1
## 744  Apr 2014 2014-04-01             4    2.870175                1  949182.1
## 745  Apr 2014 2014-04-01             4    2.581315                1  949182.1
## 746  Apr 2014 2014-04-01             4    2.699405                1  949182.1
## 747  Apr 2014 2014-04-01             4    2.720395                1  949182.1
## 748  Apr 2014 2014-04-01             4    2.754045                1  949182.1
## 749  Apr 2014 2014-04-01             4    2.631034                1  949182.1
## 750  Apr 2014 2014-04-01             4    2.589443                1  949182.1
## 751  Apr 2014 2014-04-01             4    2.595318                1  949182.1
## 752  Apr 2014 2014-04-01             4    2.795367                1  949182.1
## 753  Apr 2014 2014-04-01             4    2.808874                1 1155594.4
## 754  Apr 2014 2014-04-01             4    2.534535                1 1155594.4
## 755  Apr 2014 2014-04-01             4    2.686335                1 1155594.4
## 756  Apr 2014 2014-04-01             4    2.531088                1 1155594.4
## 757  Apr 2014 2014-04-01             4    2.923567                1 1155594.4
## 758  Apr 2014 2014-04-01             4    1.727545                0 1155594.4
## 759  Apr 2014 2014-04-01             4    1.753968                0 1155594.4
## 760  Apr 2014 2014-04-01             4    1.610738                0 1155594.4
## 761  Apr 2014 2014-04-01             4    2.043353                0 1155594.4
## 762  Apr 2014 2014-04-01             4    1.653430                0 1155594.4
## 763  Apr 2014 2014-04-01             4    1.525547                0 1155594.4
## 764  Apr 2014 2014-04-01             4    1.933908                0 1155594.4
## 765  Apr 2014 2014-04-01             4    2.655518                1 1155594.4
## 766  Apr 2014 2014-04-01             4    2.629412                1 1155594.4
## 767  Apr 2014 2014-04-01             4    2.793814                1 1155594.4
## 768  Apr 2014 2014-04-01             4    2.572755                1 1155594.4
## 769  Apr 2014 2014-04-01             4    1.541958                0 1155594.4
## 770  Apr 2014 2014-04-01             4    1.623269                0 1164740.8
## 771  Apr 2014 2014-04-01             4    1.598513                0 1164740.8
## 772  Apr 2014 2014-04-01             4    1.771930                0 1164740.8
## 773  Apr 2014 2014-04-01             4    2.501348                1 1164740.8
## 774  Apr 2014 2014-04-01             4    1.566092                0 1164740.8
## 775  Apr 2014 2014-04-01             4    1.685619                0 1164740.8
## 776  Apr 2014 2014-04-01             4    2.454006                1 1164740.8
## 777  Apr 2014 2014-04-01             4    1.887417                0 1164740.8
## 778  Apr 2014 2014-04-01             4    2.501348                1 1164740.8
## 779  Apr 2014 2014-04-01             4    1.635135                0 1164740.8
## 780  Apr 2014 2014-04-01             4    1.429054                0 1164740.8
## 781  Apr 2014 2014-04-01             4    2.442822                1 1164740.8
## 782  Apr 2014 2014-04-01             4    1.525000                0 1164740.8
## 783  Apr 2014 2014-04-01             4    2.478142                1 1164740.8
## 784  Apr 2014 2014-04-01             4    2.473988                1 1164740.8
## 785  Apr 2014 2014-04-01             4    1.542857                0 1164740.8
## 786  Apr 2014 2014-04-01             4    1.498233                0 1164740.8
## 787  Apr 2014 2014-04-01             4    1.421053                0 1164740.8
## 788  Apr 2014 2014-04-01             4    2.552941                1 1164740.8
## 789  Apr 2014 2014-04-01             4    2.597938                1 1164740.8
## 790  Apr 2014 2014-04-01             4    1.709459                0 1164740.8
## 791  Apr 2014 2014-04-01             4    2.494505                1 1164740.8
## 792  Apr 2014 2014-04-01             4    2.622807                1 1164740.8
## 793  Apr 2014 2014-04-01             4    1.561514                0 1164740.8
## 794  Apr 2014 2014-04-01             4    2.086053                0 1164740.8
## 795  Apr 2014 2014-04-01             4    1.520446                0 1164740.8
## 796  Apr 2014 2014-04-01             4    2.393782                1 1164740.8
## 797  Apr 2014 2014-04-01             4    1.479624                0 1164740.8
## 798  Apr 2014 2014-04-01             4    2.359649                1 1164740.8
## 799  Apr 2014 2014-04-01             4    1.779935                0 1164740.8
## 800  Apr 2014 2014-04-01             4    1.724739                0 1164740.8
## 801  Apr 2014 2014-04-01             4    2.667722                1 1164740.8
## 802  Apr 2014 2014-04-01             4    1.567766                0 1164740.8
## 803  Apr 2014 2014-04-01             4    2.680272                1 1164740.8
## 804  Apr 2014 2014-04-01             4    2.629820                1 1164740.8
## 805  Apr 2014 2014-04-01             4    2.749319                1 1164740.8
## 806  Apr 2014 2014-04-01             4    1.714286                0 1164740.8
## 807  Apr 2014 2014-04-01             4    1.667845                0 1164740.8
## 808  Apr 2014 2014-04-01             4    2.785965                1 1164740.8
## 809  Apr 2014 2014-04-01             4    2.619565                1 1164740.8
## 810  Apr 2014 2014-04-01             4    1.842975                0 1032899.8
## 811  Apr 2014 2014-04-01             4    2.782090                1 1032899.8
## 812  Apr 2014 2014-04-01             4    2.674740                1 1032899.8
## 813  Apr 2014 2014-04-01             4    2.824138                1 1032899.8
## 814  Apr 2014 2014-04-01             4    2.693498                1 1032899.8
## 815  Apr 2014 2014-04-01             4    2.726727                1 1032899.8
## 816  Apr 2014 2014-04-01             4    2.648387                1 1032899.8
## 817  Apr 2014 2014-04-01             4    2.686649                1 1032899.8
## 818  Apr 2014 2014-04-01             4    2.555215                1 1032899.8
## 819  Apr 2014 2014-04-01             4    2.706667                1 1032899.8
## 820  Apr 2014 2014-04-01             4    2.840391                1 1032899.8
## 821  Apr 2014 2014-04-01             4    2.637771                1 1032899.8
## 822  Apr 2014 2014-04-01             4    2.525641                1 1032899.8
## 823  Apr 2014 2014-04-01             4    2.730887                1 1032899.8
## 824  Apr 2014 2014-04-01             4    2.863481                1 1032899.8
## 825  Apr 2014 2014-04-01             4    2.827839                1 1032899.8
## 826  Apr 2014 2014-04-01             4    2.711246                1 1032899.8
## 827  Apr 2014 2014-04-01             4    1.743056                0 1032899.8
## 828  Apr 2014 2014-04-01             4    2.621993                1 1032899.8
## 829  Apr 2014 2014-04-01             4    2.598160                1 1032899.8
## 830  Apr 2014 2014-04-01             4    2.752475                1 1032899.8
## 831  Apr 2014 2014-04-01             4    2.630682                1 1032899.8
## 832  Apr 2014 2014-04-01             4    1.840000                0 1032899.8
## 833  Apr 2014 2014-04-01             4    2.665653                1 1032899.8
## 834  Apr 2014 2014-04-01             4    2.934211                1 1032899.8
## 835  Apr 2014 2014-04-01             4    2.456338                1 1032899.8
## 836  Apr 2014 2014-04-01             4    2.722071                1 1032899.8
## 837  Apr 2014 2014-04-01             4    2.523810                1 1032899.8
## 838  Apr 2014 2014-04-01             4    2.747720                1 1032899.8
## 839  Apr 2014 2014-04-01             4    1.581940                0 1032899.8
## 840  Apr 2014 2014-04-01             4    2.727586                1 1032899.8
## 841  Apr 2014 2014-04-01             4    2.772109                1 1032899.8
## 842  Apr 2014 2014-04-01             4    2.756579                1 1032899.8
## 843  Apr 2014 2014-04-01             4    2.770227                1 1032899.8
## 844  Apr 2014 2014-04-01             4    2.803175                1 1032899.8
## 845  Apr 2014 2014-04-01             4    2.472789                1 1032899.8
## 846  Apr 2014 2014-04-01             4    2.428571                1 1032899.8
## 847  Apr 2014 2014-04-01             4    2.598662                1 1032899.8
## 848  Apr 2014 2014-04-01             4    1.750000                0 1032899.8
## 849  Apr 2014 2014-04-01             4    2.727829                1 1032899.8
## 850  Apr 2014 2014-04-01             4    2.944444                1 1032899.8
## 851  Apr 2014 2014-04-01             4    2.727575                1 1032899.8
## 852  Apr 2014 2014-04-01             4    2.723810                1 1032899.8
## 853  Apr 2014 2014-04-01             4    2.631250                1 1032899.8
## 854  Apr 2014 2014-04-01             4    2.806916                1 1000240.8
## 855  Apr 2014 2014-04-01             4    2.870629                1 1000240.8
## 856  Apr 2014 2014-04-01             4    2.648387                1 1000240.8
## 857  Apr 2014 2014-04-01             4    2.727829                1 1000240.8
## 858  Apr 2014 2014-04-01             4    2.785467                1 1000240.8
## 859  Apr 2014 2014-04-01             4    2.642623                1 1000240.8
## 860  Apr 2014 2014-04-01             4    2.725948                1 1000240.8
## 861  Apr 2014 2014-04-01             4    2.710914                1 1000240.8
## 862  Apr 2014 2014-04-01             4    2.913495                1 1000240.8
## 863  Apr 2014 2014-04-01             4    2.830000                1 1000240.8
## 864  Apr 2014 2014-04-01             4    2.640669                1 1000240.8
## 865  Apr 2014 2014-04-01             4    2.741742                1 1000240.8
## 866  Apr 2014 2014-04-01             4    2.567308                1 1000240.8
## 867  Apr 2014 2014-04-01             4    2.916667                1 1000240.8
## 868  Apr 2014 2014-04-01             4    2.788690                1 1150184.3
## 869  Apr 2014 2014-04-01             4    1.882812                0 1150184.3
## 870  Apr 2014 2014-04-01             4    2.729167                1 1150184.3
## 871  Apr 2014 2014-04-01             4    1.947195                0 1150184.3
## 872  Apr 2014 2014-04-01             4    2.046610                0 1150184.3
## 873  Apr 2014 2014-04-01             4    1.876000                0 1150184.3
## 874  Apr 2014 2014-04-01             4    2.696594                1 1150184.3
## 875  Apr 2014 2014-04-01             4    2.608414                1 1150184.3
## 876  Apr 2014 2014-04-01             4    1.840989                0 1150184.3
## 877  Apr 2014 2014-04-01             4    2.116279                0 1150184.3
## 878  Apr 2014 2014-04-01             4    2.826667                1 1150184.3
## 879  Apr 2014 2014-04-01             4    2.182143                0 1150184.3
## 880  Apr 2014 2014-04-01             4    2.625749                1 1150184.3
## 881  Apr 2014 2014-04-01             4    2.792388                1 1150184.3
## 882  Apr 2014 2014-04-01             4    1.651341                0 1150184.3
## 883  Apr 2014 2014-04-01             4    2.712375                1 1150184.3
## 884  Apr 2014 2014-04-01             4    2.620787                1 1150184.3
## 885  Apr 2014 2014-04-01             4    1.678112                0 1150184.3
## 886  Apr 2014 2014-04-01             4    2.870307                1 1150184.3
## 887  Apr 2014 2014-04-01             4    2.766234                1 1150184.3
## 888  Apr 2014 2014-04-01             4    2.041199                0 1150184.3
## 889  Apr 2014 2014-04-01             4    2.518293                1 1150184.3
## 890  Apr 2014 2014-04-01             4    2.674121                1 1150184.3
## 891  Apr 2014 2014-04-01             4    2.492260                1 1150184.3
## 892  Apr 2014 2014-04-01             4    2.778157                1 1150184.3
## 893  Apr 2014 2014-04-01             4    1.585284                0 1150184.3
## 894  Apr 2014 2014-04-01             4    2.617329                1 1150184.3
## 895  Apr 2014 2014-04-01             4    1.838346                0 1150184.3
## 896  Apr 2014 2014-04-01             4    2.735395                1 1150184.3
## 897  Apr 2014 2014-04-01             4    2.584665                1 1150184.3
## 898  Apr 2014 2014-04-01             4    2.174074                0 1150184.3
## 899  Apr 2014 2014-04-01             4    1.769759                0 1150184.3
## 900  Apr 2014 2014-04-01             4    1.680162                0 1150184.3
## 901  Apr 2014 2014-04-01             4    1.900709                0 1150184.3
## 902  Apr 2014 2014-04-01             4    1.608553                0 1150184.3
## 903  Apr 2014 2014-04-01             4    2.631250                1 1150184.3
## 904  Apr 2014 2014-04-01             4    2.763473                1 1150184.3
## 905  Apr 2014 2014-04-01             4    1.742537                0 1150184.3
## 906  Apr 2014 2014-04-01             4    2.671480                1 1150184.3
## 907  Apr 2014 2014-04-01             4    2.649718                1 1150184.3
## 908  Apr 2014 2014-04-01             4    2.603604                1 1150184.3
## 909  Apr 2014 2014-04-01             4    1.599174                0 1150184.3
## 910  Apr 2014 2014-04-01             4    2.679365                1 1150184.3
## 911  Apr 2014 2014-04-01             4    2.439560                1 1150184.3
## 912  Apr 2015 2015-04-01             4    1.553191                0 1164740.8
## 913  Apr 2015 2015-04-01             4    1.794574                0 1164740.8
## 914  Apr 2015 2015-04-01             4    1.683398                0 1164740.8
## 915  Apr 2015 2015-04-01             4    2.583554                1 1164740.8
## 916  Apr 2015 2015-04-01             4    1.864151                0 1164740.8
## 917  Apr 2015 2015-04-01             4    1.619377                0 1164740.8
## 918  Apr 2015 2015-04-01             4    2.812903                1 1164740.8
## 919  Apr 2015 2015-04-01             4    2.130597                0 1164740.8
## 920  Apr 2015 2015-04-01             4    1.698690                0 1164740.8
## 921  Apr 2015 2015-04-01             4    1.692790                0 1164740.8
## 922  Apr 2015 2015-04-01             4    1.761404                0 1164740.8
## 923  Apr 2015 2015-04-01             4    1.712166                0 1164740.8
## 924  Apr 2015 2015-04-01             4    1.775701                0 1164740.8
## 925  Apr 2015 2015-04-01             4    1.655844                0 1164740.8
## 926  Apr 2015 2015-04-01             4    2.705502                1 1164740.8
## 927  Apr 2015 2015-04-01             4    1.735593                0 1164740.8
## 928  Apr 2015 2015-04-01             4    1.697211                0 1164740.8
## 929  Apr 2015 2015-04-01             4    1.606272                0 1164740.8
## 930  Apr 2015 2015-04-01             4    2.675585                1 1164740.8
## 931  Apr 2015 2015-04-01             4    1.841270                0 1164740.8
## 932  Apr 2015 2015-04-01             4    1.714801                0 1164740.8
## 933  Apr 2015 2015-04-01             4    2.615917                1 1164740.8
## 934  Apr 2015 2015-04-01             4    1.547368                0 1164740.8
## 935  Apr 2015 2015-04-01             4    2.511628                1 1164740.8
## 936  Apr 2015 2015-04-01             4    2.575221                1 1164740.8
## 937  Apr 2015 2015-04-01             4    2.644295                1 1164740.8
## 938  Apr 2015 2015-04-01             4    1.711111                0 1164740.8
## 939  Apr 2015 2015-04-01             4    1.730612                0 1164740.8
## 940  Apr 2015 2015-04-01             4    1.858209                0 1164740.8
## 941  Apr 2015 2015-04-01             4    2.596774                1 1164740.8
## 942  Apr 2015 2015-04-01             4    1.678233                0 1164740.8
## 943  Apr 2015 2015-04-01             4    1.764259                0 1164740.8
## 944  Apr 2015 2015-04-01             4    1.819923                0 1164740.8
## 945  Apr 2015 2015-04-01             4    1.733333                0 1164740.8
## 946  Apr 2015 2015-04-01             4    1.646865                0 1164740.8
## 947  Apr 2015 2015-04-01             4    1.707317                0 1164740.8
## 948  Apr 2015 2015-04-01             4    1.809524                0 1164740.8
## 949  Apr 2015 2015-04-01             4    1.809129                0 1164740.8
## 950  Apr 2015 2015-04-01             4    1.630705                0 1164740.8
## 951  Apr 2015 2015-04-01             4    1.800000                0 1164740.8
## 952  Apr 2015 2015-04-01             4    2.653595                1 1164740.8
## 953  Apr 2015 2015-04-01             4    1.898551                0 1164740.8
## 954  Apr 2015 2015-04-01             4    2.561562                0 1164740.8
## 955  Apr 2015 2015-04-01             4    1.871795                0 1164740.8
## 956  Apr 2015 2015-04-01             4    1.603077                0 1164740.8
## 957  Apr 2015 2015-04-01             4    2.721854                1 1164740.8
## 958  Apr 2015 2015-04-01             4    2.614379                0 1164740.8
## 959  Apr 2015 2015-04-01             4    1.778195                0 1164740.8
## 960  Apr 2015 2015-04-01             4    1.829365                0 1164740.8
## 961  Apr 2015 2015-04-01             4    1.767025                0 1164740.8
## 962  Apr 2015 2015-04-01             4    1.811502                0 1164740.8
## 963  Apr 2015 2015-04-01             4    2.663551                1 1032899.8
## 964  Apr 2015 2015-04-01             4    2.703583                1 1032899.8
## 965  Apr 2015 2015-04-01             4    2.881720                1 1032899.8
## 966  Apr 2015 2015-04-01             4    2.731392                1 1032899.8
## 967  Apr 2015 2015-04-01             4    2.571429                1 1032899.8
## 968  Apr 2015 2015-04-01             4    2.547401                1 1032899.8
## 969  Apr 2015 2015-04-01             4    2.674051                1 1032899.8
## 970  Apr 2015 2015-04-01             4    2.574307                1 1032899.8
## 971  Apr 2015 2015-04-01             4    2.690554                1 1032899.8
## 972  Apr 2015 2015-04-01             4    2.636628                1 1032899.8
## 973  Apr 2015 2015-04-01             4    2.550152                1 1032899.8
## 974  Apr 2015 2015-04-01             4    2.934708                1 1032899.8
## 975  Apr 2015 2015-04-01             4    2.639394                1 1032899.8
## 976  Apr 2015 2015-04-01             4    2.433584                1 1032899.8
## 977  Apr 2015 2015-04-01             4    2.636667                1 1032899.8
## 978  Apr 2015 2015-04-01             4    2.668449                1 1032899.8
## 979  Apr 2015 2015-04-01             4    2.737430                1 1032899.8
## 980  Apr 2015 2015-04-01             4    2.689944                1 1032899.8
## 981  Apr 2015 2015-04-01             4    2.467456                1 1032899.8
## 982  Apr 2015 2015-04-01             4    2.681063                1 1032899.8
## 983  Apr 2015 2015-04-01             4    2.571429                1 1032899.8
## 984  Apr 2015 2015-04-01             4    2.573427                1 1032899.8
## 985  Apr 2015 2015-04-01             4    2.620130                1 1032899.8
## 986  Apr 2015 2015-04-01             4    2.705015                1 1032899.8
## 987  Apr 2015 2015-04-01             4    2.755556                1 1032899.8
## 988  Apr 2015 2015-04-01             4    2.946023                1 1032899.8
## 989  Apr 2015 2015-04-01             4    2.664634                1 1032899.8
## 990  Apr 2015 2015-04-01             4    2.616438                1 1032899.8
## 991  Apr 2015 2015-04-01             4    2.704762                1 1032899.8
## 992  Apr 2015 2015-04-01             4    2.731629                1 1032899.8
## 993  Apr 2015 2015-04-01             4    2.731861                1 1032899.8
## 994  Apr 2015 2015-04-01             4    2.667732                1 1032899.8
## 995  Apr 2015 2015-04-01             4    2.604222                1 1032899.8
## 996  Apr 2015 2015-04-01             4    2.664894                1 1032899.8
## 997  Apr 2015 2015-04-01             4    2.693151                1 1032899.8
## 998  Apr 2015 2015-04-01             4    2.656338                1 1032899.8
## 999  Apr 2015 2015-04-01             4    2.656250                1 1032899.8
## 1000 Apr 2015 2015-04-01             4    2.666667                1 1032899.8
## 1001 Apr 2015 2015-04-01             4    2.552910                1 1032899.8
## 1002 Apr 2015 2015-04-01             4    2.661442                1 1032899.8
## 1003 Apr 2015 2015-04-01             4    2.659375                1 1032899.8
## 1004 Apr 2015 2015-04-01             4    2.736842                1 1032899.8
## 1005 Apr 2015 2015-04-01             4    2.638418                1 1032899.8
## 1006 Apr 2015 2015-04-01             4    2.717105                1 1032899.8
## 1007 Apr 2015 2015-04-01             4    2.645604                1 1032899.8
## 1008 Apr 2015 2015-04-01             4    2.788690                1 1032899.8
## 1009 Apr 2015 2015-04-01             4    2.541796                1 1032899.8
## 1010 Apr 2015 2015-04-01             4    2.605333                1 1032899.8
## 1011 Apr 2015 2015-04-01             4    2.746835                1 1032899.8
## 1012 Apr 2015 2015-04-01             4    2.661376                1 1032899.8
## 1013 Apr 2015 2015-04-01             4    2.730061                1 1032899.8
## 1014 Apr 2015 2015-04-01             4    2.753247                1 1032899.8
## 1015 Apr 2015 2015-04-01             4    2.887052                1 1032899.8
## 1016 Apr 2015 2015-04-01             4    2.516575                1 1000240.8
## 1017 Apr 2015 2015-04-01             4    2.796825                1 1000240.8
## 1018 Apr 2015 2015-04-01             4    2.737003                1 1000240.8
## 1019 Apr 2015 2015-04-01             4    2.763231                1 1000240.8
## 1020 Apr 2015 2015-04-01             4    3.021148                1 1000240.8
## 1021 Apr 2015 2015-04-01             4    2.567657                1 1000240.8
## 1022 Apr 2015 2015-04-01             4    2.728395                1 1000240.8
## 1023 Apr 2015 2015-04-01             4    2.841935                1 1000240.8
## 1024 Apr 2015 2015-04-01             4    2.926421                1 1000240.8
## 1025 Apr 2015 2015-04-01             4    2.556410                1 1000240.8
## 1026 Apr 2015 2015-04-01             4    1.821538                0 1000240.8
## 1027 Apr 2015 2015-04-01             4    2.914089                1 1000240.8
## 1028 Apr 2015 2015-04-01             4    2.798658                1 1000240.8
## 1029 Apr 2015 2015-04-01             4    2.813725                1 1000240.8
## 1030 Apr 2015 2015-04-01             4    2.693182                1 1000240.8
## 1031 Apr 2015 2015-04-01             4    2.874214                1 1000240.8
## 1032 Apr 2015 2015-04-01             4    2.828070                1 1000240.8
## 1033 Apr 2015 2015-04-01             4    2.755486                1 1000240.8
## 1034 Apr 2015 2015-04-01             4    2.764120                1 1000240.8
## 1035 Apr 2015 2015-04-01             4    2.563187                1 1000240.8
## 1036 Apr 2015 2015-04-01             4    2.581921                1 1000240.8
## 1037 Apr 2015 2015-04-01             4    2.813253                1 1000240.8
## 1038 Apr 2015 2015-04-01             4    2.781538                1 1000240.8
## 1039 Apr 2015 2015-04-01             4    2.651297                1 1000240.8
## 1040 Apr 2015 2015-04-01             4    2.723776                1 1000240.8
## 1041 Apr 2015 2015-04-01             4    2.027778                0 1000240.8
## 1042 Apr 2015 2015-04-01             4    2.736232                1 1000240.8
## 1043 Apr 2015 2015-04-01             4    2.581267                1 1000240.8
## 1044 Apr 2015 2015-04-01             4    2.250689                1 1000240.8
## 1045 Apr 2015 2015-04-01             4    2.750000                1 1000240.8
## 1046 Apr 2015 2015-04-01             4    2.660714                1 1000240.8
## 1047 Apr 2015 2015-04-01             4    2.818815                1 1000240.8
## 1048 Apr 2015 2015-04-01             4    1.715328                0 1000240.8
## 1049 Apr 2015 2015-04-01             4    3.048544                1 1000240.8
## 1050 Apr 2015 2015-04-01             4    2.744262                1 1000240.8
## 1051 Apr 2015 2015-04-01             4    2.594771                1 1000240.8
## 1052 Apr 2015 2015-04-01             4    1.689320                0 1150184.3
## 1053 Apr 2015 2015-04-01             4    2.682635                1 1150184.3
## 1054 Apr 2015 2015-04-01             4    1.601974                0 1150184.3
## 1055 Apr 2015 2015-04-01             4    1.732143                0 1150184.3
## 1056 Apr 2015 2015-04-01             4    2.544262                1 1150184.3
## 1057 Apr 2015 2015-04-01             4    2.509485                1 1150184.3
## 1058 Apr 2015 2015-04-01             4    2.679894                1 1150184.3
## 1059 Apr 2015 2015-04-01             4    1.631769                0 1150184.3
## 1060 Apr 2015 2015-04-01             4    2.600575                1 1150184.3
## 1061 Apr 2015 2015-04-01             4    2.591592                1 1150184.3
## 1062 Apr 2015 2015-04-01             4    1.474048                0 1150184.3
## 1063 Apr 2015 2015-04-01             4    2.589888                1 1150184.3
## 1064 Dec 2016 2016-12-01            12    2.564417                1  949182.1
## 1065 Dec 2016 2016-12-01            12    2.743516                1  949182.1
## 1066 Dec 2016 2016-12-01            12    3.006472                1  949182.1
## 1067 Dec 2016 2016-12-01            12    2.691030                1  949182.1
## 1068 Dec 2016 2016-12-01            12    2.844444                1  949182.1
## 1069 Dec 2016 2016-12-01            12    2.539846                1  949182.1
## 1070 Dec 2016 2016-12-01            12    2.575198                1  949182.1
## 1071 Dec 2016 2016-12-01            12    2.654494                1  949182.1
## 1072 Dec 2016 2016-12-01            12    2.626741                1  949182.1
## 1073 Dec 2016 2016-12-01            12    2.635097                1  949182.1
## 1074 Dec 2016 2016-12-01            12    2.662207                1  949182.1
## 1075 Dec 2016 2016-12-01            12    2.742297                1  949182.1
## 1076 Dec 2016 2016-12-01            12    2.728395                1  949182.1
## 1077 Dec 2016 2016-12-01            12    2.710692                1  949182.1
## 1078 Dec 2016 2016-12-01            12    2.726994                1  949182.1
## 1079 Dec 2016 2016-12-01            12    2.808451                1  949182.1
## 1080 Dec 2016 2016-12-01            12    2.672535                1  949182.1
## 1081 Dec 2016 2016-12-01            12    2.609290                1  949182.1
## 1082 Dec 2016 2016-12-01            12    2.587432                1  949182.1
## 1083 Dec 2016 2016-12-01            12    2.699659                1  949182.1
## 1084 Dec 2016 2016-12-01            12    2.756545                1  949182.1
## 1085 Dec 2016 2016-12-01            12    2.749296                1  949182.1
## 1086 Dec 2016 2016-12-01            12    2.716463                1  949182.1
## 1087 Dec 2016 2016-12-01            12    2.673653                1  949182.1
## 1088 Dec 2016 2016-12-01            12    2.604502                1  949182.1
## 1089 Dec 2016 2016-12-01            12    2.528024                1  949182.1
## 1090 Dec 2016 2016-12-01            12    2.694006                1  949182.1
## 1091 Dec 2016 2016-12-01            12    2.722380                1  949182.1
## 1092 Dec 2016 2016-12-01            12    2.584615                1  949182.1
## 1093 Dec 2016 2016-12-01            12    2.687117                1  949182.1
## 1094 Dec 2016 2016-12-01            12    2.648936                1  949182.1
## 1095 Dec 2016 2016-12-01            12    2.677419                1  949182.1
## 1096 Dec 2016 2016-12-01            12    2.487261                1  949182.1
## 1097 Dec 2016 2016-12-01            12    2.639205                1  949182.1
## 1098 Dec 2016 2016-12-01            12    2.108911                0  949182.1
## 1099 Dec 2016 2016-12-01            12    2.600000                1  949182.1
## 1100 Dec 2016 2016-12-01            12    2.657343                1  949182.1
## 1101 Dec 2016 2016-12-01            12    2.632708                1  949182.1
## 1102 Dec 2016 2016-12-01            12    2.811502                1  949182.1
## 1103 Dec 2016 2016-12-01            12    2.605714                1  949182.1
## 1104 Dec 2016 2016-12-01            12    2.786408                1  949182.1
## 1105 Dec 2016 2016-12-01            12    2.640483                1  949182.1
## 1106 Dec 2016 2016-12-01            12    2.669697                1  949182.1
## 1107 Dec 2016 2016-12-01            12    1.603279                0  949182.1
## 1108 Dec 2016 2016-12-01            12    2.785340                1  949182.1
## 1109 Dec 2016 2016-12-01            12    2.794872                1  949182.1
## 1110 Dec 2016 2016-12-01            12    2.299611                0  949182.1
## 1111 Dec 2016 2016-12-01            12    2.700326                1  949182.1
## 1112 Dec 2016 2016-12-01            12    2.719444                1  949182.1
## 1113 Dec 2016 2016-12-01            12    2.573099                1  949182.1
## 1114 Dec 2016 2016-12-01            12    2.530405                0  949182.1
## 1115 Dec 2016 2016-12-01            12    3.076412                1  949182.1
## 1116 Dec 2016 2016-12-01            12    2.856688                1  949182.1
## 1117 Dec 2016 2016-12-01            12    2.886667                1  949182.1
## 1118 Dec 2016 2016-12-01            12    2.721739                1  949182.1
## 1119 Dec 2016 2016-12-01            12    2.726496                1  949182.1
## 1120 Dec 2016 2016-12-01            12    2.743056                1  949182.1
## 1121 Dec 2016 2016-12-01            12    2.800000                1 1155594.4
## 1122 Dec 2016 2016-12-01            12    1.616725                0 1155594.4
## 1123 Dec 2016 2016-12-01            12    1.702422                0 1155594.4
## 1124 Dec 2016 2016-12-01            12    2.661585                1 1155594.4
## 1125 Dec 2016 2016-12-01            12    2.750760                1 1155594.4
## 1126 Dec 2016 2016-12-01            12    1.666667                0 1155594.4
## 1127 Dec 2016 2016-12-01            12    2.789617                1 1155594.4
## 1128 Dec 2016 2016-12-01            12    2.752542                1 1155594.4
## 1129 Dec 2016 2016-12-01            12    1.663158                0 1155594.4
## 1130 Dec 2016 2016-12-01            12    2.729299                1 1155594.4
## 1131 Dec 2016 2016-12-01            12    2.889241                1 1155594.4
## 1132 Dec 2016 2016-12-01            12    2.818750                1 1155594.4
## 1133 Dec 2016 2016-12-01            12    2.733746                1 1155594.4
## 1134 Dec 2016 2016-12-01            12    2.641096                1 1174715.3
## 1135 Dec 2016 2016-12-01            12    2.601719                1 1174715.3
## 1136 Dec 2016 2016-12-01            12    2.660969                1 1174715.3
## 1137 Dec 2016 2016-12-01            12    1.731884                0 1174715.3
## 1138 Dec 2016 2016-12-01            12    2.787162                1 1174715.3
## 1139 Dec 2016 2016-12-01            12    1.850000                0 1174715.3
## 1140 Dec 2016 2016-12-01            12    2.780405                1 1174715.3
## 1141 Dec 2016 2016-12-01            12    2.550409                1 1174715.3
## 1142 Dec 2016 2016-12-01            12    2.721264                1 1174715.3
## 1143 Dec 2016 2016-12-01            12    2.410494                1 1174715.3
## 1144 Dec 2016 2016-12-01            12    2.571066                1 1174715.3
## 1145 Dec 2016 2016-12-01            12    1.847973                0 1174715.3
## 1146 Dec 2016 2016-12-01            12    2.262774                0 1174715.3
## 1147 Dec 2016 2016-12-01            12    2.814286                1 1174715.3
## 1148 Dec 2016 2016-12-01            12    2.527950                1 1174715.3
## 1149 Dec 2016 2016-12-01            12    2.610778                1 1174715.3
## 1150 Dec 2016 2016-12-01            12    2.713826                1 1174715.3
## 1151 Dec 2016 2016-12-01            12    2.580000                1 1174715.3
## 1152 Dec 2016 2016-12-01            12    2.662921                1 1174715.3
## 1153 Dec 2016 2016-12-01            12    2.539735                1 1174715.3
## 1154 Dec 2016 2016-12-01            12    2.716511                1 1174715.3
## 1155 Dec 2016 2016-12-01            12    1.653846                0 1174715.3
## 1156 Dec 2016 2016-12-01            12    2.370370                1 1174715.3
## 1157 Dec 2016 2016-12-01            12    1.694006                0 1174715.3
## 1158 Dec 2016 2016-12-01            12    2.665706                1 1174715.3
## 1159 Dec 2016 2016-12-01            12    2.014286                0 1174715.3
## 1160 Dec 2016 2016-12-01            12    2.473545                1 1174715.3
## 1161 Dec 2016 2016-12-01            12    2.557065                1 1174715.3
## 1162 Dec 2016 2016-12-01            12    2.678808                1 1174715.3
## 1163 Dec 2016 2016-12-01            12    2.638889                1 1174715.3
## 1164 Dec 2016 2016-12-01            12    2.495601                1 1174715.3
## 1165 Dec 2016 2016-12-01            12    2.510511                1 1174715.3
## 1166 Dec 2016 2016-12-01            12    2.539326                1 1174715.3
## 1167 Dec 2016 2016-12-01            12    2.652778                1 1174715.3
## 1168 Dec 2016 2016-12-01            12    1.706320                0 1174715.3
## 1169 Dec 2016 2016-12-01            12    2.787781                1 1174715.3
## 1170 Dec 2016 2016-12-01            12    1.702422                0 1174715.3
## 1171 Dec 2016 2016-12-01            12    2.232558                0 1174715.3
## 1172 Dec 2016 2016-12-01            12    1.682692                0 1174715.3
## 1173 Dec 2016 2016-12-01            12    2.584098                1 1174715.3
## 1174 Dec 2016 2016-12-01            12    2.593315                1 1174715.3
## 1175 Dec 2016 2016-12-01            12    2.187879                0 1174715.3
## 1176 Dec 2016 2016-12-01            12    2.638806                1 1174715.3
## 1177 Dec 2016 2016-12-01            12    2.484419                1 1174715.3
## 1178 Dec 2016 2016-12-01            12    2.652308                1 1174715.3
## 1179 Dec 2016 2016-12-01            12    1.693662                0 1174715.3
## 1180 Dec 2016 2016-12-01            12    2.790123                1 1174715.3
## 1181 Dec 2016 2016-12-01            12    2.195122                0 1174715.3
## 1182 Dec 2016 2016-12-01            12    2.481928                1 1174715.3
## 1183 Dec 2016 2016-12-01            12    2.688581                1 1174715.3
## 1184 Dec 2016 2016-12-01            12    2.665595                1 1174715.3
## 1185 Dec 2016 2016-12-01            12    2.703571                1 1174715.3
## 1186 Dec 2016 2016-12-01            12    2.607717                1 1174715.3
## 1187 Dec 2016 2016-12-01            12    2.368564                1 1164740.8
## 1188 Dec 2016 2016-12-01            12    2.776271                1 1164740.8
## 1189 Dec 2016 2016-12-01            12    2.613333                1 1164740.8
## 1190 Dec 2016 2016-12-01            12    2.036424                0 1164740.8
## 1191 Dec 2016 2016-12-01            12    2.460568                1 1164740.8
## 1192 Dec 2016 2016-12-01            12    2.615836                1 1164740.8
## 1193 Dec 2016 2016-12-01            12    2.161376                0 1164740.8
## 1194 Dec 2016 2016-12-01            12    2.660870                1 1164740.8
## 1195 Dec 2016 2016-12-01            12    2.140541                0 1164740.8
## 1196 Dec 2016 2016-12-01            12    2.545455                1 1164740.8
## 1197 Dec 2016 2016-12-01            12    2.682243                1 1164740.8
## 1198 Dec 2016 2016-12-01            12    2.718182                1 1034251.3
## 1199 Dec 2016 2016-12-01            12    2.581818                1 1034251.3
## 1200 Dec 2016 2016-12-01            12    2.777385                1 1034251.3
## 1201 Dec 2016 2016-12-01            12    2.850932                1 1034251.3
## 1202 Dec 2016 2016-12-01            12    2.882143                1 1034251.3
## 1203 Dec 2016 2016-12-01            12    2.688103                1 1034251.3
## 1204 Dec 2016 2016-12-01            12    2.742029                1 1034251.3
## 1205 Dec 2016 2016-12-01            12    1.873199                0 1034251.3
## 1206 Dec 2016 2016-12-01            12    2.744479                1 1034251.3
## 1207 Dec 2016 2016-12-01            12    2.833333                1 1034251.3
## 1208 Dec 2016 2016-12-01            12    2.651376                1 1034251.3
## 1209 Dec 2016 2016-12-01            12    2.786232                1 1034251.3
## 1210 Dec 2016 2016-12-01            12    2.807309                1 1034251.3
## 1211 Dec 2016 2016-12-01            12    2.821053                1 1034251.3
## 1212 Dec 2016 2016-12-01            12    2.755172                1 1034251.3
## 1213 Dec 2016 2016-12-01            12    2.761610                1  999804.3
## 1214 Dec 2016 2016-12-01            12    2.893175                1  999804.3
## 1215 Dec 2016 2016-12-01            12    2.675676                1  999804.3
## 1216 Dec 2016 2016-12-01            12    2.914894                1  999804.3
## 1217 Dec 2016 2016-12-01            12    2.766272                1  999804.3
## 1218 Dec 2016 2016-12-01            12    2.790698                1  999804.3
## 1219 Dec 2016 2016-12-01            12    3.007407                1  999804.3
## 1220 Dec 2016 2016-12-01            12    2.840116                1  999804.3
## 1221 Dec 2016 2016-12-01            12    2.909408                1  999804.3
## 1222 Dec 2016 2016-12-01            12    2.959707                1  999804.3
## 1223 Dec 2016 2016-12-01            12    2.837748                1  999804.3
## 1224 Dec 2016 2016-12-01            12    2.809689                1  999804.3
## 1225 Dec 2016 2016-12-01            12    2.833333                1  999804.3
## 1226 Dec 2016 2016-12-01            12    3.000000                1  999804.3
## 1227 Dec 2016 2016-12-01            12    2.919614                1  999804.3
## 1228 Dec 2016 2016-12-01            12    3.127907                1  999804.3
## 1229 Dec 2016 2016-12-01            12    2.866450                1  999804.3
## 1230 Dec 2016 2016-12-01            12    2.710843                1  999804.3
## 1231 Dec 2016 2016-12-01            12    2.729373                1  999804.3
## 1232 Dec 2016 2016-12-01            12    3.000000                1  999804.3
## 1233 Dec 2016 2016-12-01            12    2.466667                1 1000240.8
## 1234 Dec 2016 2016-12-01            12    2.776836                1 1000240.8
## 1235 Dec 2016 2016-12-01            12    2.611594                1 1000240.8
## 1236 Dec 2016 2016-12-01            12    2.530055                1 1000240.8
## 1237 Dec 2016 2016-12-01            12    2.603352                1 1000240.8
## 1238 Dec 2016 2016-12-01            12    2.797101                1 1000240.8
## 1239 Dec 2016 2016-12-01            12    2.744792                1 1000240.8
## 1240 Dec 2016 2016-12-01            12    2.895082                1 1000240.8
## 1241 Dec 2016 2016-12-01            12    2.718841                1 1000240.8
## 1242 Dec 2016 2016-12-01            12    2.845455                1 1000240.8
## 1243 Dec 2016 2016-12-01            12    2.702941                1 1000240.8
## 1244 Dec 2016 2016-12-01            12    1.792049                0 1000240.8
## 1245 Dec 2016 2016-12-01            12    2.533537                1 1000240.8
## 1246 Dec 2016 2016-12-01            12    2.832168                1 1000240.8
## 1247 Dec 2016 2016-12-01            12    2.760736                1 1000240.8
## 1248 Dec 2016 2016-12-01            12    2.766892                1 1000240.8
## 1249 Dec 2016 2016-12-01            12    2.558065                1 1000240.8
## 1250 Dec 2016 2016-12-01            12    2.672414                1 1000240.8
## 1251 Dec 2016 2016-12-01            12    2.674931                1 1000240.8
## 1252 Dec 2016 2016-12-01            12    2.974843                1 1000240.8
## 1253 Dec 2016 2016-12-01            12          NA                1 1000240.8
## 1254 Dec 2016 2016-12-01            12    2.501538                1 1000240.8
## 1255 Dec 2016 2016-12-01            12    2.822485                1 1000240.8
## 1256 Dec 2016 2016-12-01            12    2.656642                1 1000240.8
## 1257 Dec 2016 2016-12-01            12    2.693662                1 1000240.8
## 1258 Dec 2016 2016-12-01            12    2.518519                1 1000240.8
## 1259 Dec 2016 2016-12-01            12    2.678161                1 1000240.8
## 1260 Dec 2016 2016-12-01            12    2.821326                1 1000240.8
## 1261 Dec 2016 2016-12-01            12    2.629179                1 1000240.8
## 1262 Dec 2016 2016-12-01            12    2.535897                1 1000240.8
## 1263 Dec 2016 2016-12-01            12    2.595679                1 1000240.8
## 1264 Dec 2016 2016-12-01            12    2.737542                1 1000240.8
## 1265 Dec 2016 2016-12-01            12    2.739255                1 1000240.8
## 1266 Dec 2016 2016-12-01            12    2.729032                1 1000240.8
## 1267 Dec 2016 2016-12-01            12    2.686007                1 1000240.8
## 1268 Dec 2016 2016-12-01            12    2.738889                1 1000240.8
## 1269 Dec 2016 2016-12-01            12    2.632312                1 1000240.8
## 1270 Dec 2016 2016-12-01            12    2.779264                1 1000240.8
## 1271 Dec 2016 2016-12-01            12    2.689024                1 1000240.8
## 1272 Dec 2016 2016-12-01            12    2.678808                1 1000240.8
## 1273 Dec 2016 2016-12-01            12    2.781350                1 1000240.8
## 1274 Dec 2016 2016-12-01            12    2.888179                1 1000240.8
## 1275 Dec 2016 2016-12-01            12    2.642405                1 1000240.8
## 1276 Dec 2016 2016-12-01            12    2.731629                1 1000240.8
## 1277 Dec 2016 2016-12-01            12    2.710963                1 1000240.8
## 1278 Dec 2016 2016-12-01            12    2.027778                0 1152004.7
## 1279 Dec 2016 2016-12-01            12    2.716612                1 1152004.7
## 1280 Dec 2016 2016-12-01            12    2.931271                1 1152004.7
## 1281 Dec 2016 2016-12-01            12    1.671587                0 1152004.7
## 1282 Dec 2016 2016-12-01            12    2.699422                1 1152004.7
## 1283 Dec 2016 2016-12-01            12    2.739550                1 1152004.7
## 1284 Dec 2016 2016-12-01            12    1.798635                0 1152004.7
## 1285 Dec 2016 2016-12-01            12    2.790036                1 1152004.7
## 1286 Dec 2016 2016-12-01            12    2.607843                1 1152004.7
## 1287 Dec 2016 2016-12-01            12    1.745704                0 1152004.7
## 1288 Dec 2016 2016-12-01            12    2.733974                1 1152004.7
## 1289 Dec 2016 2016-12-01            12    1.828947                0 1152004.7
## 1290 Dec 2016 2016-12-01            12    1.579505                0 1152004.7
## 1291 Dec 2016 2016-12-01            12    1.807692                0 1152004.7
## 1292 Dec 2016 2016-12-01            12    1.827476                0 1152004.7
## 1293 Dec 2016 2016-12-01            12    2.663580                1 1152004.7
## 1294 Dec 2016 2016-12-01            12    2.389439                1 1152004.7
## 1295 Dec 2016 2016-12-01            12    2.694215                1 1152004.7
## 1296 Dec 2016 2016-12-01            12    2.922360                1 1152004.7
## 1297 Dec 2016 2016-12-01            12    2.792244                1 1152004.7
## 1298 Dec 2016 2016-12-01            12    1.532915                0 1152004.7
## 1299 Dec 2016 2016-12-01            12    1.740614                0 1152004.7
## 1300 Dec 2016 2016-12-01            12    2.900709                1 1152004.7
## 1301 Dec 2016 2016-12-01            12    2.184375                0 1152004.7
## 1302 Dec 2016 2016-12-01            12    1.716912                0 1152004.7
## 1303 Dec 2016 2016-12-01            12    2.728302                1 1152004.7
## 1304 Dec 2016 2016-12-01            12    2.580858                1 1152004.7
## 1305 Dec 2016 2016-12-01            12    2.071429                0 1152004.7
## 1306 Dec 2016 2016-12-01            12    2.678788                1 1152004.7
## 1307 Dec 2016 2016-12-01            12    2.635452                1 1152004.7
## 1308 Dec 2016 2016-12-01            12    2.605797                1 1152004.7
## 1309 Dec 2016 2016-12-01            12    2.613383                1 1152004.7
## 1310 Dec 2016 2016-12-01            12    2.722222                1 1152004.7
## 1311 Dec 2016 2016-12-01            12    2.646465                1 1152004.7
## 1312 Dec 2016 2016-12-01            12    1.655022                0 1152004.7
## 1313 Dec 2016 2016-12-01            12    1.635762                0 1152004.7
## 1314 Dec 2016 2016-12-01            12    2.619377                1 1152004.7
## 1315 Aug 2017 2017-08-01             8    2.769481                1  949670.6
## 1316 Aug 2017 2017-08-01             8    2.755034                1  949670.6
## 1317 Aug 2017 2017-08-01             8    2.607843                1  949670.6
## 1318 Aug 2017 2017-08-01             8    2.299663                0  949670.6
## 1319 Aug 2017 2017-08-01             8    2.816129                1  949670.6
## 1320 Aug 2017 2017-08-01             8    2.779026                1  949670.6
## 1321 Aug 2017 2017-08-01             8    2.225806                0  949670.6
## 1322 Aug 2017 2017-08-01             8    2.645963                1  949670.6
## 1323 Aug 2017 2017-08-01             8    2.675900                1  949670.6
## 1324 Aug 2017 2017-08-01             8    2.757862                1  949670.6
## 1325 Aug 2017 2017-08-01             8    2.685246                1  949670.6
## 1326 Aug 2017 2017-08-01             8    2.732143                1  949670.6
## 1327 Aug 2017 2017-08-01             8    2.609610                1  949670.6
## 1328 Aug 2017 2017-08-01             8    2.663818                1  949670.6
## 1329 Aug 2017 2017-08-01             8    2.857143                1  949670.6
## 1330 Aug 2017 2017-08-01             8    2.672297                1  949670.6
## 1331 Aug 2017 2017-08-01             8    2.090301                0  949670.6
## 1332 Aug 2017 2017-08-01             8    2.578348                1  949670.6
## 1333 Aug 2017 2017-08-01             8    2.525373                1  949670.6
## 1334 Aug 2017 2017-08-01             8    2.721519                1  949670.6
## 1335 Aug 2017 2017-08-01             8    2.815789                1  949670.6
## 1336 Aug 2017 2017-08-01             8    2.631737                1  949670.6
## 1337 Aug 2017 2017-08-01             8    2.807829                1  949670.6
## 1338 Aug 2017 2017-08-01             8    2.674658                1  949670.6
## 1339 Aug 2017 2017-08-01             8    2.728188                1  949670.6
## 1340 Aug 2017 2017-08-01             8    2.144876                0  949670.6
## 1341 Aug 2017 2017-08-01             8    2.702312                1  949670.6
## 1342 Aug 2017 2017-08-01             8    2.443425                1  949670.6
## 1343 Aug 2017 2017-08-01             8    2.713805                1  949670.6
## 1344 Aug 2017 2017-08-01             8    2.680251                1  949670.6
## 1345 Aug 2017 2017-08-01             8    2.681818                1  949670.6
## 1346 Aug 2017 2017-08-01             8    2.574648                1  949670.6
## 1347 Aug 2017 2017-08-01             8    2.548896                1  949670.6
## 1348 Aug 2017 2017-08-01             8    2.789474                1  949670.6
## 1349 Aug 2017 2017-08-01             8    2.737003                1  949670.6
## 1350 Aug 2017 2017-08-01             8    2.700000                1  949670.6
## 1351 Aug 2017 2017-08-01             8    2.740223                1  949670.6
## 1352 Aug 2017 2017-08-01             8    2.730435                1  949670.6
## 1353 Aug 2017 2017-08-01             8    2.762376                1  949670.6
## 1354 Aug 2017 2017-08-01             8    2.676976                1  949670.6
## 1355 Aug 2017 2017-08-01             8    2.726761                1  949670.6
## 1356 Aug 2017 2017-08-01             8    2.712991                1  949670.6
## 1357 Aug 2017 2017-08-01             8    2.725989                1  949670.6
## 1358 Aug 2017 2017-08-01             8    1.697183                0  949670.6
## 1359 Aug 2017 2017-08-01             8    2.785479                1  949670.6
## 1360 Aug 2017 2017-08-01             8    2.752778                1  949670.6
## 1361 Aug 2017 2017-08-01             8    2.818182                1  949670.6
## 1362 Aug 2017 2017-08-01             8    2.791809                1  949670.6
## 1363 Aug 2017 2017-08-01             8    2.657658                1  949670.6
## 1364 Aug 2017 2017-08-01             8    2.517483                1  949670.6
## 1365 Aug 2017 2017-08-01             8    2.735669                1  949670.6
## 1366 Aug 2017 2017-08-01             8    2.808023                1  949670.6
## 1367 Aug 2017 2017-08-01             8    2.730519                1  949670.6
## 1368 Aug 2017 2017-08-01             8    2.740845                1  949670.6
## 1369 Aug 2017 2017-08-01             8    2.601744                1  949670.6
## 1370 Aug 2017 2017-08-01             8    2.728223                1  949670.6
## 1371 Aug 2017 2017-08-01             8    2.616959                1  949670.6
## 1372 Aug 2017 2017-08-01             8    2.649573                1  949670.6
## 1373 Aug 2017 2017-08-01             8    2.873134                1  949670.6
## 1374 Aug 2017 2017-08-01             8    2.223881                0  949670.6
## 1375 Aug 2017 2017-08-01             8    2.635514                1 1153133.5
## 1376 Aug 2017 2017-08-01             8    2.072368                0 1153133.5
## 1377 Aug 2017 2017-08-01             8    2.627168                1 1153133.5
## 1378 Aug 2017 2017-08-01             8    2.638889                1 1153133.5
## 1379 Aug 2017 2017-08-01             8    1.665541                0 1153133.5
## 1380 Aug 2017 2017-08-01             8    2.696793                1 1153133.5
## 1381 Aug 2017 2017-08-01             8    2.561538                1 1153133.5
## 1382 Aug 2017 2017-08-01             8    2.511173                1 1153133.5
## 1383 Aug 2017 2017-08-01             8    2.693333                1 1153133.5
## 1384 Aug 2017 2017-08-01             8    2.860215                1 1153133.5
## 1385 Aug 2017 2017-08-01             8    2.749164                1 1153133.5
## 1386 Aug 2017 2017-08-01             8    2.695187                1 1153133.5
## 1387 Aug 2017 2017-08-01             8    2.572327                1 1153133.5
## 1388 Aug 2017 2017-08-01             8    2.601156                1 1153133.5
## 1389 Aug 2017 2017-08-01             8    2.543478                1 1153133.5
## 1390 Aug 2017 2017-08-01             8    2.710191                1 1153133.5
## 1391 Aug 2017 2017-08-01             8    2.552817                1 1153133.5
## 1392 Aug 2017 2017-08-01             8    2.701695                1 1153133.5
## 1393 Aug 2017 2017-08-01             8    1.756757                0 1153133.5
## 1394 Aug 2017 2017-08-01             8    2.590625                1 1153133.5
## 1395 Aug 2017 2017-08-01             8    2.722054                1 1153133.5
## 1396 Aug 2017 2017-08-01             8    2.722930                1 1153133.5
## 1397 Aug 2017 2017-08-01             8    2.646341                1 1153133.5
## 1398 Aug 2017 2017-08-01             8    2.714286                1 1153133.5
## 1399 Aug 2017 2017-08-01             8    2.621469                1 1153133.5
## 1400 Aug 2017 2017-08-01             8    2.583815                1 1153133.5
## 1401 Aug 2017 2017-08-01             8    2.581662                1 1153133.5
## 1402 Aug 2017 2017-08-01             8    2.554839                1 1153133.5
## 1403 Aug 2017 2017-08-01             8    1.708487                0 1153133.5
## 1404 Aug 2017 2017-08-01             8    2.820755                1 1153133.5
## 1405 Aug 2017 2017-08-01             8    2.787356                1 1153133.5
## 1406 Aug 2017 2017-08-01             8    2.397059                1 1153133.5
## 1407 Aug 2017 2017-08-01             8    2.369863                1 1153133.5
## 1408 Aug 2017 2017-08-01             8    2.098540                0 1153133.5
## 1409 Aug 2017 2017-08-01             8    2.681347                1 1153133.5
## 1410 Aug 2017 2017-08-01             8    2.680233                1 1153133.5
## 1411 Aug 2017 2017-08-01             8    2.674912                1 1153133.5
## 1412 Aug 2017 2017-08-01             8    2.758410                1 1153133.5
## 1413 Aug 2017 2017-08-01             8    2.631902                1 1153133.5
## 1414 Aug 2017 2017-08-01             8    2.679083                1 1153133.5
## 1415 Aug 2017 2017-08-01             8    2.692042                1 1153133.5
## 1416 Aug 2017 2017-08-01             8    2.600515                1 1153133.5
## 1417 Aug 2017 2017-08-01             8    2.465054                1 1153133.5
## 1418 Aug 2017 2017-08-01             8    1.588652                0 1153133.5
## 1419 Aug 2017 2017-08-01             8    2.725979                1 1153133.5
## 1420 Aug 2017 2017-08-01             8    2.790909                1 1153133.5
## 1421 Aug 2017 2017-08-01             8    2.628169                1 1153133.5
## 1422 Aug 2017 2017-08-01             8    2.549488                1 1153133.5
## 1423 Aug 2017 2017-08-01             8    2.748588                1 1153133.5
## 1424 Aug 2017 2017-08-01             8    2.686275                1 1153133.5
## 1425 Aug 2017 2017-08-01             8    2.757764                1 1153133.5
## 1426 Aug 2017 2017-08-01             8    2.837758                1 1153133.5
## 1427 Aug 2017 2017-08-01             8    2.706070                1 1153133.5
## 1428 Aug 2017 2017-08-01             8    2.661808                1 1153133.5
## 1429 Aug 2017 2017-08-01             8    2.648101                1 1153133.5
## 1430 Aug 2017 2017-08-01             8    2.549575                1 1153133.5
## 1431 Aug 2017 2017-08-01             8    2.707831                1 1153133.5
## 1432 Aug 2017 2017-08-01             8    2.766026                1 1153133.5
## 1433 Aug 2017 2017-08-01             8    2.784264                1 1153133.5
## 1434 Aug 2017 2017-08-01             8    2.602041                1 1153133.5
## 1435 Aug 2017 2017-08-01             8    2.713924                1 1153133.5
## 1436 Aug 2017 2017-08-01             8    2.750000                1 1153133.5
## 1437 Aug 2017 2017-08-01             8    2.649852                1 1153133.5
## 1438 Aug 2017 2017-08-01             8    2.621891                1 1153133.5
## 1439 Aug 2017 2017-08-01             8    2.754839                1 1153133.5
## 1440 Aug 2017 2017-08-01             8    2.742331                1 1153133.5
## 1441 Aug 2017 2017-08-01             8    2.763077                1 1153133.5
## 1442 Aug 2017 2017-08-01             8    2.598784                1 1153133.5
## 1443 Aug 2017 2017-08-01             8    2.825243                1 1153133.5
## 1444 Aug 2017 2017-08-01             8    2.762058                1 1153133.5
## 1445 Aug 2017 2017-08-01             8    2.544794                1 1153133.5
## 1446 Aug 2017 2017-08-01             8    2.745407                1 1153133.5
## 1447 Aug 2017 2017-08-01             8    2.617162                1 1153133.5
## 1448 Aug 2017 2017-08-01             8    2.763407                1 1153133.5
## 1449 Aug 2017 2017-08-01             8    2.693671                1 1153133.5
## 1450 Aug 2017 2017-08-01             8    2.757009                1 1153133.5
## 1451 Aug 2017 2017-08-01             8    2.932394                1 1153133.5
## 1452 Aug 2017 2017-08-01             8    2.712121                1 1153133.5
## 1453 Aug 2017 2017-08-01             8    2.659459                1 1153133.5
## 1454 Aug 2017 2017-08-01             8    2.857143                1 1153133.5
## 1455 Aug 2017 2017-08-01             8    2.651376                1 1153133.5
## 1456 Aug 2017 2017-08-01             8    2.739247                1 1153133.5
## 1457 Aug 2017 2017-08-01             8    2.671779                1 1153133.5
## 1458 Aug 2017 2017-08-01             8    2.694268                1 1153133.5
## 1459 Aug 2017 2017-08-01             8    2.559113                1 1153133.5
## 1460 Aug 2017 2017-08-01             8    2.729050                1 1153133.5
## 1461 Aug 2017 2017-08-01             8    2.698361                1 1153133.5
## 1462 Aug 2017 2017-08-01             8    2.688347                1 1153133.5
## 1463 Aug 2017 2017-08-01             8    2.707602                1 1153133.5
## 1464 Aug 2017 2017-08-01             8    2.666667                1 1153133.5
## 1465 Aug 2017 2017-08-01             8    2.652893                1 1153133.5
## 1466 Aug 2017 2017-08-01             8    2.711688                1 1153133.5
## 1467 Aug 2017 2017-08-01             8    2.814404                1 1153133.5
## 1468 Aug 2017 2017-08-01             8    2.704969                1 1153133.5
## 1469 Aug 2017 2017-08-01             8    2.692090                1 1153133.5
## 1470 Aug 2017 2017-08-01             8    2.803175                1 1153133.5
## 1471 Aug 2017 2017-08-01             8    2.820144                1 1153133.5
## 1472 Aug 2017 2017-08-01             8    2.753846                1 1153133.5
## 1473 Aug 2017 2017-08-01             8    2.506112                1 1153133.5
## 1474 Aug 2017 2017-08-01             8    2.653333                1 1153133.5
## 1475 Aug 2017 2017-08-01             8    2.577259                1 1153133.5
## 1476 Aug 2017 2017-08-01             8    2.669492                1 1153133.5
## 1477 Aug 2017 2017-08-01             8    2.672872                1 1153133.5
## 1478 Aug 2017 2017-08-01             8    2.582210                1 1153133.5
## 1479 Aug 2017 2017-08-01             8    2.622283                1 1153133.5
## 1480 Aug 2017 2017-08-01             8    2.615183                1 1153133.5
## 1481 Aug 2017 2017-08-01             8    2.645963                1 1153133.5
## 1482 Aug 2017 2017-08-01             8    2.663317                1 1153133.5
## 1483 Aug 2017 2017-08-01             8    2.597884                1 1153133.5
## 1484 Aug 2017 2017-08-01             8    2.806548                1 1153133.5
## 1485 Aug 2017 2017-08-01             8    2.721180                1 1153133.5
## 1486 Aug 2017 2017-08-01             8    2.664935                1 1153133.5
## 1487 Aug 2017 2017-08-01             8    2.784247                1 1153133.5
## 1488 Aug 2017 2017-08-01             8    2.752294                1 1153133.5
## 1489 Aug 2017 2017-08-01             8    2.761610                1 1153133.5
## 1490 Aug 2017 2017-08-01             8    2.768730                1 1153133.5
## 1491 Aug 2017 2017-08-01             8    2.691131                1 1153133.5
## 1492 Aug 2017 2017-08-01             8    2.711656                1 1153133.5
## 1493 Aug 2017 2017-08-01             8    2.726519                1 1153133.5
## 1494 Aug 2017 2017-08-01             8    2.698413                1 1153133.5
## 1495 Aug 2017 2017-08-01             8    2.815013                1 1153133.5
## 1496 Aug 2017 2017-08-01             8    2.835484                1 1153133.5
## 1497 Aug 2017 2017-08-01             8    2.726727                1 1153133.5
## 1498 Aug 2017 2017-08-01             8    2.624339                1 1153133.5
## 1499 Aug 2017 2017-08-01             8    2.728435                1 1153133.5
## 1500 Aug 2017 2017-08-01             8    2.803681                1 1153133.5
## 1501 Aug 2017 2017-08-01             8    2.969697                1 1153133.5
## 1502 Aug 2017 2017-08-01             8    2.580110                1 1165445.0
## 1503 Aug 2017 2017-08-01             8    2.757475                1 1165445.0
## 1504 Aug 2017 2017-08-01             8    2.882759                1 1165445.0
## 1505 Aug 2017 2017-08-01             8    1.789474                0 1165445.0
## 1506 Aug 2017 2017-08-01             8    2.769231                1 1165445.0
## 1507 Aug 2017 2017-08-01             8    2.600000                1 1165445.0
## 1508 Aug 2017 2017-08-01             8    2.748175                1 1165445.0
## 1509 Aug 2017 2017-08-01             8    2.687273                1 1165445.0
## 1510 Aug 2017 2017-08-01             8    2.691643                1 1165445.0
## 1511 Aug 2017 2017-08-01             8    2.598639                1 1165445.0
## 1512 Aug 2017 2017-08-01             8    2.754491                1 1165445.0
## 1513 Aug 2017 2017-08-01             8    1.756458                0 1165445.0
## 1514 Aug 2017 2017-08-01             8    2.651466                1 1165445.0
## 1515 Aug 2017 2017-08-01             8    2.596721                1 1165445.0
## 1516 Aug 2017 2017-08-01             8    2.813149                1 1165445.0
## 1517 Aug 2017 2017-08-01             8    2.481928                1 1165445.0
## 1518 Aug 2017 2017-08-01             8    2.577419                1 1165445.0
## 1519 Aug 2017 2017-08-01             8    2.785714                1 1165442.5
## 1520 Aug 2017 2017-08-01             8    2.630814                1 1165442.5
## 1521 Aug 2017 2017-08-01             8    2.540541                1 1165442.5
## 1522 Aug 2017 2017-08-01             8    2.618076                1 1165442.5
## 1523 Aug 2017 2017-08-01             8    2.593923                1 1165442.5
## 1524 Aug 2017 2017-08-01             8    1.810811                0 1165442.5
## 1525 Aug 2017 2017-08-01             8    1.785714                0 1165442.5
## 1526 Aug 2017 2017-08-01             8    2.894737                1 1165442.5
## 1527 Aug 2017 2017-08-01             8    2.768392                1 1165442.5
## 1528 Aug 2017 2017-08-01             8    2.588785                1 1165442.5
## 1529 Aug 2017 2017-08-01             8    2.581749                1 1165442.5
## 1530 Aug 2017 2017-08-01             8    2.713896                1 1165442.5
## 1531 Aug 2017 2017-08-01             8    2.697740                1 1165442.5
## 1532 Aug 2017 2017-08-01             8    2.631068                1 1165442.5
## 1533 Aug 2017 2017-08-01             8    2.695971                1 1165442.5
## 1534 Aug 2017 2017-08-01             8    2.741135                1 1165442.5
## 1535 Aug 2017 2017-08-01             8    1.948718                0 1165442.5
## 1536 Aug 2017 2017-08-01             8    2.743056                1 1165442.5
## 1537 Aug 2017 2017-08-01             8    2.700000                1 1165438.4
## 1538 Aug 2017 2017-08-01             8    2.614943                1 1165438.4
## 1539 Aug 2017 2017-08-01             8    2.646865                1 1165438.4
## 1540 Aug 2017 2017-08-01             8    2.642651                1 1165438.4
## 1541 Aug 2017 2017-08-01             8    1.815094                0 1165438.4
## 1542 Aug 2017 2017-08-01             8    2.751534                1 1165438.4
## 1543 Aug 2017 2017-08-01             8    2.698413                1 1165438.4
## 1544 Aug 2017 2017-08-01             8    2.678344                1 1165438.4
## 1545 Aug 2017 2017-08-01             8    1.745520                0 1165438.4
## 1546 Aug 2017 2017-08-01             8    1.693103                0 1165438.4
## 1547 Aug 2017 2017-08-01             8    2.492401                1 1165438.4
## 1548 Aug 2017 2017-08-01             8    2.663793                1 1165438.4
## 1549 Aug 2017 2017-08-01             8    1.734982                0 1165438.4
## 1550 Aug 2017 2017-08-01             8    2.792763                1 1165438.4
## 1551 Aug 2017 2017-08-01             8    1.893701                0 1165438.4
## 1552 Aug 2017 2017-08-01             8    1.894737                0 1165438.4
## 1553 Aug 2017 2017-08-01             8    2.673973                1 1165438.4
## 1554 Aug 2017 2017-08-01             8    2.924342                1 1165438.4
## 1555 Aug 2017 2017-08-01             8    1.699659                0 1165438.4
## 1556 Aug 2017 2017-08-01             8    2.622074                1 1165438.4
## 1557 Aug 2017 2017-08-01             8    2.720430                1 1165438.4
## 1558 Aug 2017 2017-08-01             8    2.588972                1 1165438.4
## 1559 Aug 2017 2017-08-01             8    2.796667                1 1165438.4
## 1560 Aug 2017 2017-08-01             8    1.757679                0 1165438.4
## 1561 Aug 2017 2017-08-01             8    2.766871                1 1165438.4
## 1562 Aug 2017 2017-08-01             8    1.866412                0 1165438.4
## 1563 Aug 2017 2017-08-01             8    1.715517                0 1165438.4
## 1564 Aug 2017 2017-08-01             8    1.858369                0 1165438.4
## 1565 Aug 2017 2017-08-01             8    1.750000                0 1165438.4
## 1566 Aug 2017 2017-08-01             8    1.690196                0 1165438.4
## 1567 Aug 2017 2017-08-01             8    1.937888                0 1165438.4
## 1568 Aug 2017 2017-08-01             8    2.814394                1 1165438.4
## 1569 Aug 2017 2017-08-01             8    1.704380                0 1165438.4
## 1570 Aug 2017 2017-08-01             8    2.749129                1 1165438.4
## 1571 Aug 2017 2017-08-01             8    2.271605                0 1165438.4
## 1572 Aug 2017 2017-08-01             8    1.824561                0 1165438.4
## 1573 Aug 2017 2017-08-01             8    2.737542                1 1165438.4
## 1574 Aug 2017 2017-08-01             8    2.444744                1 1174719.0
## 1575 Aug 2017 2017-08-01             8    2.763736                1 1174719.0
## 1576 Aug 2017 2017-08-01             8    2.674699                1 1174719.0
## 1577 Aug 2017 2017-08-01             8    2.968858                1 1174719.0
## 1578 Aug 2017 2017-08-01             8    2.748485                1 1174719.0
## 1579 Aug 2017 2017-08-01             8    2.770308                1 1174719.0
## 1580 Aug 2017 2017-08-01             8    2.707006                1 1174719.0
## 1581 Aug 2017 2017-08-01             8    2.649547                1 1174719.0
## 1582 Aug 2017 2017-08-01             8    2.541219                1 1174719.0
## 1583 Aug 2017 2017-08-01             8    2.776536                1 1174719.0
## 1584 Aug 2017 2017-08-01             8    3.048860                1 1174719.0
## 1585 Aug 2017 2017-08-01             8    2.679310                1 1174719.0
## 1586 Aug 2017 2017-08-01             8    1.787149                0 1174719.0
## 1587 Aug 2017 2017-08-01             8    2.806584                1 1174719.0
## 1588 Aug 2017 2017-08-01             8    1.778656                0 1174719.0
## 1589 Aug 2017 2017-08-01             8    2.601852                1 1174719.0
## 1590 Aug 2017 2017-08-01             8    2.741818                1 1174719.0
## 1591 Aug 2017 2017-08-01             8    2.839879                1 1174719.0
## 1592 Aug 2017 2017-08-01             8    2.660000                1 1174719.0
## 1593 Aug 2017 2017-08-01             8    1.854839                0 1174719.0
## 1594 Aug 2017 2017-08-01             8    2.831715                1 1034256.3
## 1595 Aug 2017 2017-08-01             8    2.596306                1 1034256.3
## 1596 Aug 2017 2017-08-01             8    2.702703                1 1034256.3
## 1597 Aug 2017 2017-08-01             8    2.647841                1 1034256.3
## 1598 Aug 2017 2017-08-01             8    2.663690                1 1034256.3
## 1599 Aug 2017 2017-08-01             8    2.664516                1 1034256.3
## 1600 Aug 2017 2017-08-01             8    2.779070                1 1034256.3
## 1601 Aug 2017 2017-08-01             8    2.696078                1 1034256.3
## 1602 Aug 2017 2017-08-01             8    2.650273                1 1034256.3
## 1603 Aug 2017 2017-08-01             8    2.850365                1 1034256.3
## 1604 Aug 2017 2017-08-01             8    2.766551                1 1034256.3
## 1605 Aug 2017 2017-08-01             8    2.779605                1 1034256.3
## 1606 Aug 2017 2017-08-01             8    2.678571                1 1034256.3
## 1607 Aug 2017 2017-08-01             8    2.660057                1 1034256.3
## 1608 Aug 2017 2017-08-01             8    2.612069                1 1034256.3
## 1609 Aug 2017 2017-08-01             8    1.834586                0 1034256.3
## 1610 Aug 2017 2017-08-01             8    2.644699                1 1034256.3
## 1611 Aug 2017 2017-08-01             8    1.775801                0 1034256.3
## 1612 Aug 2017 2017-08-01             8    2.546980                1 1034256.3
## 1613 Aug 2017 2017-08-01             8    2.731988                1 1034256.3
## 1614 Aug 2017 2017-08-01             8    2.645963                1 1034256.3
## 1615 Aug 2017 2017-08-01             8    2.630573                1 1034256.3
## 1616 Aug 2017 2017-08-01             8    2.724359                1 1034256.3
## 1617 Aug 2017 2017-08-01             8    2.553719                1 1034256.3
## 1618 Aug 2017 2017-08-01             8    2.604294                1 1034256.3
## 1619 Aug 2017 2017-08-01             8    2.179577                0 1034256.3
## 1620 Aug 2017 2017-08-01             8    2.603878                1 1034256.3
## 1621 Aug 2017 2017-08-01             8    2.711806                1 1034256.3
## 1622 Aug 2017 2017-08-01             8    2.567485                1 1034256.3
## 1623 Aug 2017 2017-08-01             8    2.787986                1 1034256.3
## 1624 Aug 2017 2017-08-01             8    2.737160                1 1034256.3
## 1625 Aug 2017 2017-08-01             8    2.675758                1 1034256.3
## 1626 Aug 2017 2017-08-01             8    2.716216                1 1034256.4
## 1627 Aug 2017 2017-08-01             8    2.728188                1 1034256.4
## 1628 Aug 2017 2017-08-01             8    2.126761                0 1034256.4
## 1629 Aug 2017 2017-08-01             8    2.223301                0 1034256.4
## 1630 Aug 2017 2017-08-01             8    2.813291                1 1034256.4
## 1631 Aug 2017 2017-08-01             8    2.584046                1 1034256.4
## 1632 Aug 2017 2017-08-01             8          NA                1 1034256.4
## 1633 Aug 2017 2017-08-01             8    2.030189                0 1034256.4
## 1634 Aug 2017 2017-08-01             8    1.725275                0 1034256.4
## 1635 Aug 2017 2017-08-01             8    2.812500                1 1034256.4
## 1636 Aug 2017 2017-08-01             8    2.676101                1 1034256.4
## 1637 Aug 2017 2017-08-01             8    2.027875                0 1034256.4
## 1638 Aug 2017 2017-08-01             8    1.934483                0 1034256.4
## 1639 Aug 2017 2017-08-01             8    2.828383                1 1034256.4
## 1640 Aug 2017 2017-08-01             8    1.892000                0 1034256.4
## 1641 Aug 2017 2017-08-01             8    2.119691                0 1034256.4
## 1642 Aug 2017 2017-08-01             8    2.715762                1 1034256.4
## 1643 Aug 2017 2017-08-01             8    2.151125                0 1034256.4
## 1644 Aug 2017 2017-08-01             8    2.755700                1 1034256.4
## 1645 Aug 2017 2017-08-01             8    1.939623                0 1034256.4
## 1646 Aug 2017 2017-08-01             8    2.582418                1 1034256.4
## 1647 Aug 2017 2017-08-01             8    2.879870                1 1034256.4
## 1648 Aug 2017 2017-08-01             8    2.114907                0 1034256.4
## 1649 Aug 2017 2017-08-01             8    2.841317                1 1034256.4
## 1650 Aug 2017 2017-08-01             8    2.755486                1 1034256.4
## 1651 Aug 2017 2017-08-01             8    1.880952                0 1034256.4
## 1652 Aug 2017 2017-08-01             8    2.879880                1 1034256.4
## 1653 Aug 2017 2017-08-01             8    2.413174                1 1034256.4
## 1654 Aug 2017 2017-08-01             8    1.814961                0 1034256.4
## 1655 Aug 2017 2017-08-01             8    2.527132                1 1034256.4
## 1656 Aug 2017 2017-08-01             8    2.091667                0 1034256.4
## 1657 Aug 2017 2017-08-01             8    1.727915                0 1034256.4
## 1658 Aug 2017 2017-08-01             8    1.966667                0 1034256.4
## 1659 Aug 2017 2017-08-01             8    2.144231                0 1034256.4
## 1660 Aug 2017 2017-08-01             8    2.694915                1 1034256.4
## 1661 Aug 2017 2017-08-01             8    2.198758                0 1034256.4
## 1662 Aug 2017 2017-08-01             8    2.854305                1 1034256.4
## 1663 Aug 2017 2017-08-01             8    2.735294                1 1034256.4
## 1664 Aug 2017 2017-08-01             8    2.624138                1 1034256.4
## 1665 Aug 2017 2017-08-01             8    2.714286                1 1034256.4
## 1666 Aug 2017 2017-08-01             8    2.714744                1 1034256.4
## 1667 Aug 2017 2017-08-01             8    1.986301                0 1034256.4
## 1668 Aug 2017 2017-08-01             8    1.816327                0 1034256.4
## 1669 Aug 2017 2017-08-01             8    2.668675                1 1034256.4
## 1670 Aug 2017 2017-08-01             8    1.956989                0 1034256.4
## 1671 Aug 2017 2017-08-01             8    1.694737                0 1034256.4
## 1672 Aug 2017 2017-08-01             8    1.793358                0 1034256.4
## 1673 Aug 2017 2017-08-01             8          NA                1 1034256.4
## 1674 Aug 2017 2017-08-01             8    1.826389                0 1034256.4
## 1675 Aug 2017 2017-08-01             8    2.684015                1 1034256.4
## 1676 Aug 2017 2017-08-01             8    1.978571                0 1034256.4
## 1677 Aug 2017 2017-08-01             8    2.307971                0 1034256.4
## 1678 Aug 2017 2017-08-01             8    2.292776                0 1034256.4
## 1679 Aug 2017 2017-08-01             8    1.937269                0 1034256.4
## 1680 Aug 2017 2017-08-01             8    2.603960                1 1034256.4
## 1681 Aug 2017 2017-08-01             8    1.795380                0 1034256.4
## 1682 Aug 2017 2017-08-01             8    2.811912                1 1034256.4
## 1683 Aug 2017 2017-08-01             8    2.429134                1 1034256.4
## 1684 Aug 2017 2017-08-01             8    2.193277                0 1034256.4
## 1685 Aug 2017 2017-08-01             8    2.868852                1  999797.9
## 1686 Aug 2017 2017-08-01             8    2.750760                1  999797.9
## 1687 Aug 2017 2017-08-01             8    1.785256                0  999797.9
## 1688 Aug 2017 2017-08-01             8    1.754098                0  999797.9
## 1689 Aug 2017 2017-08-01             8    1.721190                0  999797.9
## 1690 Aug 2017 2017-08-01             8    2.641104                1  999797.9
## 1691 Aug 2017 2017-08-01             8    2.853125                1  999797.9
## 1692 Aug 2017 2017-08-01             8    2.853147                1  999797.9
## 1693 Aug 2017 2017-08-01             8    2.730104                1  999797.9
## 1694 Aug 2017 2017-08-01             8    1.843373                0  999797.9
## 1695 Aug 2017 2017-08-01             8    2.753571                1  999797.9
## 1696 Aug 2017 2017-08-01             8    2.675393                1  999797.9
## 1697 Aug 2017 2017-08-01             8    2.685792                1  999797.9
## 1698 Aug 2017 2017-08-01             8    2.799242                1  999797.9
## 1699 Aug 2017 2017-08-01             8    1.964539                0  999797.9
## 1700 Aug 2017 2017-08-01             8    2.189474                0  999797.9
## 1701 Aug 2017 2017-08-01             8    2.787356                1  999797.9
## 1702 Aug 2017 2017-08-01             8    1.916350                0  999797.9
## 1703 Aug 2017 2017-08-01             8    2.643243                1  999797.9
## 1704 Aug 2017 2017-08-01             8    2.837838                1  999797.9
## 1705 Aug 2017 2017-08-01             8    2.726667                1  999797.9
## 1706 Aug 2017 2017-08-01             8    2.729537                1  999797.9
## 1707 Aug 2017 2017-08-01             8    2.738971                1  999797.9
## 1708 Aug 2017 2017-08-01             8    2.173516                0  999797.9
## 1709 Aug 2017 2017-08-01             8    2.854545                1  999797.9
## 1710 Aug 2017 2017-08-01             8    2.732938                1  999797.9
## 1711 Aug 2017 2017-08-01             8    1.903346                0  999797.9
## 1712 Aug 2017 2017-08-01             8    2.957295                1  999797.9
## 1713 Aug 2017 2017-08-01             8    2.704762                1  999797.9
## 1714 Aug 2017 2017-08-01             8    2.777027                1  999797.9
## 1715 Aug 2017 2017-08-01             8    2.733333                1  999797.9
## 1716 Aug 2017 2017-08-01             8    2.690544                1  999797.9
## 1717 Aug 2017 2017-08-01             8    2.778502                1  999797.9
## 1718 Aug 2017 2017-08-01             8    1.966667                0  999797.9
## 1719 Aug 2017 2017-08-01             8    2.126712                0  999797.9
## 1720 Aug 2017 2017-08-01             8    2.886792                1  999797.9
## 1721 Aug 2017 2017-08-01             8    2.815331                1  999797.9
## 1722 Aug 2017 2017-08-01             8    2.015873                0  999797.9
## 1723 Aug 2017 2017-08-01             8    2.612676                1  999797.9
## 1724 Aug 2017 2017-08-01             8    2.824926                1  999797.9
## 1725 Aug 2017 2017-08-01             8    2.118577                0  999797.9
## 1726 Aug 2017 2017-08-01             8    2.850174                1  999797.9
## 1727 Aug 2017 2017-08-01             8    2.775510                1  999797.9
## 1728 Aug 2017 2017-08-01             8    2.720497                1  999797.9
## 1729 Aug 2017 2017-08-01             8    1.761905                0  999797.9
## 1730 Aug 2017 2017-08-01             8    1.649123                0  999797.9
## 1731 Aug 2017 2017-08-01             8    2.883212                1  999797.9
## 1732 Aug 2017 2017-08-01             8    2.764479                1  999797.9
## 1733 Aug 2017 2017-08-01             8    2.559871                1  999797.9
## 1734 Aug 2017 2017-08-01             8    2.209125                0  999797.9
## 1735 Aug 2017 2017-08-01             8    1.820225                0  999797.9
## 1736 Aug 2017 2017-08-01             8    1.824427                0  999797.9
## 1737 Aug 2017 2017-08-01             8    2.317647                0  999797.9
## 1738 Aug 2017 2017-08-01             8    1.792157                0  999797.9
## 1739 Aug 2017 2017-08-01             8    1.811715                0  999797.9
## 1740 Aug 2017 2017-08-01             8    1.832685                0  999797.9
## 1741 Aug 2017 2017-08-01             8    2.708197                1  999797.9
## 1742 Aug 2017 2017-08-01             8    1.680556                0  999797.9
## 1743 Sep 2018 2018-09-01             9    2.779783                1  949529.7
## 1744 Sep 2018 2018-09-01             9    2.916955                1  949529.7
## 1745 Sep 2018 2018-09-01             9    2.907285                1  949529.7
## 1746 Sep 2018 2018-09-01             9    2.664935                1  949529.7
## 1747 Sep 2018 2018-09-01             9    2.666667                1  949529.7
## 1748 Sep 2018 2018-09-01             9    2.770677                1  949529.7
## 1749 Sep 2018 2018-09-01             9    2.859873                1  949529.7
## 1750 Sep 2018 2018-09-01             9    2.760606                1  949529.7
## 1751 Sep 2018 2018-09-01             9    2.747059                1  949529.7
## 1752 Sep 2018 2018-09-01             9    2.849315                1  949529.7
## 1753 Sep 2018 2018-09-01             9    2.735385                1  949529.7
## 1754 Sep 2018 2018-09-01             9    2.740845                1  949529.7
## 1755 Sep 2018 2018-09-01             9    2.857143                1  949529.7
## 1756 Sep 2018 2018-09-01             9    2.813754                1  949529.7
## 1757 Sep 2018 2018-09-01             9    2.894410                1  949529.7
## 1758 Sep 2018 2018-09-01             9    2.691429                1  949529.7
## 1759 Sep 2018 2018-09-01             9    1.728571                0  949529.7
## 1760 Sep 2018 2018-09-01             9    2.874150                1  949529.7
## 1761 Sep 2018 2018-09-01             9    2.828947                1  949529.7
## 1762 Sep 2018 2018-09-01             9    2.911864                1  949529.7
## 1763 Sep 2018 2018-09-01             9    2.758503                1  949529.7
## 1764 Sep 2018 2018-09-01             9    2.622150                1  949529.7
## 1765 Sep 2018 2018-09-01             9    2.650307                1  949529.7
## 1766 Sep 2018 2018-09-01             9    2.881533                1  949529.7
## 1767 Sep 2018 2018-09-01             9    2.668588                1  949529.7
## 1768 Sep 2018 2018-09-01             9    2.717868                1  949529.7
## 1769 Sep 2018 2018-09-01             9    2.892593                1  949529.7
## 1770 Sep 2018 2018-09-01             9    2.855219                1  949529.7
## 1771 Sep 2018 2018-09-01             9    2.723183                1  949529.7
## 1772 Sep 2018 2018-09-01             9    2.594595                1  949529.7
## 1773 Sep 2018 2018-09-01             9    2.846386                1  949529.7
## 1774 Sep 2018 2018-09-01             9    2.630058                1  949529.7
## 1775 Sep 2018 2018-09-01             9    2.596257                1  949529.7
## 1776 Sep 2018 2018-09-01             9    2.989247                1  949529.7
## 1777 Sep 2018 2018-09-01             9    2.694444                1  949529.7
## 1778 Sep 2018 2018-09-01             9    2.841424                1  949529.7
## 1779 Sep 2018 2018-09-01             9    2.790769                1  949529.7
## 1780 Sep 2018 2018-09-01             9    2.822581                1  949529.7
## 1781 Sep 2018 2018-09-01             9    2.677054                1  949529.7
## 1782 Sep 2018 2018-09-01             9    2.785978                1  949529.7
## 1783 Sep 2018 2018-09-01             9    2.743590                1  949529.7
## 1784 Sep 2018 2018-09-01             9    2.725543                1  949529.7
## 1785 Sep 2018 2018-09-01             9    2.766129                1  949529.7
## 1786 Sep 2018 2018-09-01             9    2.905797                1  949529.7
## 1787 Sep 2018 2018-09-01             9    2.741611                1  949529.7
## 1788 Sep 2018 2018-09-01             9    2.778098                1  949529.7
## 1789 Sep 2018 2018-09-01             9    2.849462                1  949529.7
## 1790 Sep 2018 2018-09-01             9    2.698305                1  949529.7
## 1791 Sep 2018 2018-09-01             9    2.767442                1  949529.7
## 1792 Sep 2018 2018-09-01             9    2.797059                1  949529.7
## 1793 Sep 2018 2018-09-01             9    2.921136                1  949529.7
## 1794 Sep 2018 2018-09-01             9    2.928144                1  949529.7
## 1795 Sep 2018 2018-09-01             9    2.825083                1  949529.7
## 1796 Sep 2018 2018-09-01             9    2.761194                1  949529.7
## 1797 Sep 2018 2018-09-01             9    2.678063                1  949529.7
## 1798 Sep 2018 2018-09-01             9    1.760456                0  949529.7
## 1799 Sep 2018 2018-09-01             9    2.649390                1  949529.7
## 1800 Sep 2018 2018-09-01             9    2.679412                1  949529.7
## 1801 Sep 2018 2018-09-01             9    2.782918                1  949529.7
## 1802 Sep 2018 2018-09-01             9    2.910299                1  949529.7
## 1803 Sep 2018 2018-09-01             9    1.719844                0  949529.7
## 1804 Sep 2018 2018-09-01             9    2.739726                1  949529.7
## 1805 Sep 2018 2018-09-01             9    2.593220                1  949529.7
## 1806 Sep 2018 2018-09-01             9    2.867797                1  949529.7
## 1807 Sep 2018 2018-09-01             9    2.796774                1 1171362.4
## 1808 Sep 2018 2018-09-01             9    2.655172                1 1171362.4
## 1809 Sep 2018 2018-09-01             9    2.822695                1 1171362.4
## 1810 Sep 2018 2018-09-01             9    2.598007                1 1171362.4
## 1811 Sep 2018 2018-09-01             9    1.747573                0 1171362.4
## 1812 Sep 2018 2018-09-01             9    1.921642                0 1171362.4
## 1813 Sep 2018 2018-09-01             9    2.041176                0 1171362.4
## 1814 Sep 2018 2018-09-01             9    2.102167                0 1171362.4
## 1815 Sep 2018 2018-09-01             9    2.576316                1 1171362.4
## 1816 Sep 2018 2018-09-01             9    1.747036                0 1171362.4
## 1817 Sep 2018 2018-09-01             9    1.773810                0 1171362.4
## 1818 Sep 2018 2018-09-01             9    2.754448                1 1171362.4
## 1819 Sep 2018 2018-09-01             9    1.672662                0 1171362.4
## 1820 Sep 2018 2018-09-01             9    1.589286                0 1171362.4
## 1821 Sep 2018 2018-09-01             9    2.717857                1 1171362.4
## 1822 Sep 2018 2018-09-01             9    1.875969                0 1171362.4
## 1823 Sep 2018 2018-09-01             9    2.715100                1 1171362.4
## 1824 Sep 2018 2018-09-01             9    2.065476                0 1171362.4
## 1825 Sep 2018 2018-09-01             9    2.449367                1 1171362.4
## 1826 Sep 2018 2018-09-01             9    2.730159                1 1171362.4
## 1827 Sep 2018 2018-09-01             9    2.785016                1 1171362.4
## 1828 Sep 2018 2018-09-01             9    1.644269                0 1171362.4
## 1829 Sep 2018 2018-09-01             9    1.783439                0 1171362.4
## 1830 Sep 2018 2018-09-01             9    2.601719                1 1171362.4
## 1831 Sep 2018 2018-09-01             9    1.863158                0 1171362.4
## 1832 Sep 2018 2018-09-01             9    2.711111                1 1171362.4
## 1833 Sep 2018 2018-09-01             9    2.677019                1 1171362.4
## 1834 Sep 2018 2018-09-01             9    1.661654                0 1171362.4
## 1835 Sep 2018 2018-09-01             9    1.753799                0 1171362.4
## 1836 Sep 2018 2018-09-01             9    2.007380                0 1171362.4
## 1837 Sep 2018 2018-09-01             9    2.816901                1 1171362.4
## 1838 Sep 2018 2018-09-01             9    1.690554                0 1171362.4
## 1839 Sep 2018 2018-09-01             9    2.732852                1 1171362.4
## 1840 Sep 2018 2018-09-01             9    2.520408                1 1171362.4
## 1841 Sep 2018 2018-09-01             9    2.493197                1 1171362.4
## 1842 Sep 2018 2018-09-01             9    1.682848                0 1171362.4
## 1843 Sep 2018 2018-09-01             9    1.722846                0 1171362.4
## 1844 Sep 2018 2018-09-01             9    1.900901                0 1171362.4
## 1845 Sep 2018 2018-09-01             9    1.710801                0 1171362.4
## 1846 Sep 2018 2018-09-01             9    1.686508                0 1171362.4
## 1847 Sep 2018 2018-09-01             9    2.661972                1 1171362.4
## 1848 Sep 2018 2018-09-01             9    1.649254                0 1171362.4
## 1849 Sep 2018 2018-09-01             9    2.641566                1 1171362.4
## 1850 Sep 2018 2018-09-01             9    2.650794                1 1171362.4
## 1851 Sep 2018 2018-09-01             9    2.543956                1 1171362.4
## 1852 Sep 2018 2018-09-01             9    1.915663                0 1171362.4
## 1853 Sep 2018 2018-09-01             9    2.758730                1 1171362.4
## 1854 Sep 2018 2018-09-01             9    2.750000                1 1171362.4
## 1855 Sep 2018 2018-09-01             9    2.735202                1 1171362.4
## 1856 Sep 2018 2018-09-01             9    2.850610                1 1171362.4
## 1857 Sep 2018 2018-09-01             9    1.585106                0 1171362.4
## 1858 Sep 2018 2018-09-01             9    1.985294                0 1171362.4
## 1859 Sep 2018 2018-09-01             9    2.567901                1 1171362.4
## 1860 Sep 2018 2018-09-01             9    2.152263                0 1171362.4
## 1861 Sep 2018 2018-09-01             9    1.755776                0 1171362.4
## 1862 Sep 2018 2018-09-01             9    2.828897                1 1171362.4
## 1863 Sep 2018 2018-09-01             9    2.675362                1 1171362.4
## 1864 Sep 2018 2018-09-01             9    1.859873                0 1171362.4
## 1865 Sep 2018 2018-09-01             9    2.968652                1 1171362.4
## 1866 Sep 2018 2018-09-01             9    1.879479                0 1171362.4
## 1867 Sep 2018 2018-09-01             9    2.858182                1 1171362.4
## 1868 Sep 2018 2018-09-01             9    1.841060                0 1171362.4
## 1869 Sep 2018 2018-09-01             9    2.633028                1 1171362.4
## 1870 Sep 2018 2018-09-01             9    1.886364                0 1171362.4
## 1871 Sep 2018 2018-09-01             9    2.903780                1 1171362.4
## 1872 Sep 2018 2018-09-01             9    1.859107                0 1171362.4
## 1873 Sep 2018 2018-09-01             9    1.850394                0 1171362.4
## 1874 Sep 2018 2018-09-01             9    1.746939                0 1171362.4
## 1875 Sep 2018 2018-09-01             9    2.778116                1 1034253.2
## 1876 Sep 2018 2018-09-01             9    2.696486                1 1034253.2
## 1877 Sep 2018 2018-09-01             9    2.684058                1 1034253.2
## 1878 Sep 2018 2018-09-01             9    2.698361                1 1034253.2
## 1879 Sep 2018 2018-09-01             9    2.884758                1 1034253.2
## 1880 Sep 2018 2018-09-01             9    2.874598                1 1034253.2
## 1881 Sep 2018 2018-09-01             9    2.907348                1 1034253.2
## 1882 Sep 2018 2018-09-01             9    1.890295                0 1034253.2
## 1883 Sep 2018 2018-09-01             9    2.705502                1 1034253.2
## 1884 Sep 2018 2018-09-01             9    2.693333                1 1034253.2
## 1885 Sep 2018 2018-09-01             9    3.016026                1 1034253.2
## 1886 Sep 2018 2018-09-01             9    2.985380                1 1034253.2
## 1887 Sep 2018 2018-09-01             9    2.779935                1 1034253.2
## 1888 Sep 2018 2018-09-01             9    2.720548                1 1034253.2
## 1889 Sep 2018 2018-09-01             9    2.795918                1 1034253.2
## 1890 Sep 2018 2018-09-01             9    2.861963                1 1034253.2
## 1891 Sep 2018 2018-09-01             9    2.677914                1 1034253.2
## 1892 Sep 2018 2018-09-01             9    2.827362                1 1034253.2
## 1893 Sep 2018 2018-09-01             9    2.766484                1 1034253.2
## 1894 Sep 2018 2018-09-01             9    2.846369                1 1034253.2
## 1895 Sep 2018 2018-09-01             9    2.733333                1 1034253.2
## 1896 Sep 2018 2018-09-01             9    2.852830                1 1034253.2
## 1897 Sep 2018 2018-09-01             9    2.661538                1 1034253.2
## 1898 Sep 2018 2018-09-01             9    2.642857                1 1034253.2
## 1899 Sep 2018 2018-09-01             9    2.758741                1 1034253.2
## 1900 Sep 2018 2018-09-01             9    1.818462                0 1034253.2
## 1901 Sep 2018 2018-09-01             9    2.856631                1 1034253.2
## 1902 Sep 2018 2018-09-01             9    2.774603                1 1034253.2
## 1903 Sep 2018 2018-09-01             9    1.914062                0 1034253.2
## 1904 Sep 2018 2018-09-01             9    2.704787                1 1034253.2
## 1905 Sep 2018 2018-09-01             9    2.769231                1 1034253.2
## 1906 Sep 2018 2018-09-01             9    2.662857                1 1034253.2
## 1907 Sep 2018 2018-09-01             9    2.834320                1 1034253.2
## 1908 Sep 2018 2018-09-01             9    2.691667                1 1034253.2
## 1909 Sep 2018 2018-09-01             9    2.771014                1 1034253.2
## 1910 Sep 2018 2018-09-01             9    2.854489                1 1034253.2
## 1911 Sep 2018 2018-09-01             9    2.696721                1 1034253.2
## 1912 Sep 2018 2018-09-01             9    2.709677                1 1034253.2
## 1913 Sep 2018 2018-09-01             9    2.638298                1 1034253.2
## 1914 Sep 2018 2018-09-01             9    2.763636                1 1034253.2
## 1915 Sep 2018 2018-09-01             9    2.724832                1  999718.1
## 1916 May 2019 2019-05-01             5    2.651163                1  949488.6
## 1917 May 2019 2019-05-01             5    2.776536                1  949488.6
## 1918 May 2019 2019-05-01             5    2.855513                1  949488.6
## 1919 May 2019 2019-05-01             5    2.715818                1  949488.6
## 1920 May 2019 2019-05-01             5    2.667674                1  949488.6
## 1921 May 2019 2019-05-01             5    1.815436                0  949488.6
## 1922 May 2019 2019-05-01             5    2.648000                1  949488.6
## 1923 May 2019 2019-05-01             5    2.600733                1  949488.6
## 1924 May 2019 2019-05-01             5    2.835664                1  949488.6
## 1925 May 2019 2019-05-01             5    2.448101                1  950511.0
## 1926 May 2019 2019-05-01             5    2.486111                1  950511.0
## 1927 May 2019 2019-05-01             5    2.750000                1  950511.0
## 1928 May 2019 2019-05-01             5    2.619597                1  950511.0
## 1929 May 2019 2019-05-01             5    2.553371                1  950511.0
## 1930 May 2019 2019-05-01             5    2.822535                1  950511.0
## 1931 May 2019 2019-05-01             5    2.493606                1  950511.0
## 1932 May 2019 2019-05-01             5    2.629944                1  950511.0
## 1933 May 2019 2019-05-01             5    2.685976                1  950511.0
## 1934 May 2019 2019-05-01             5    2.584856                1  950511.0
## 1935 May 2019 2019-05-01             5    1.845361                0  950511.0
## 1936 May 2019 2019-05-01             5    2.604730                1  950511.0
## 1937 May 2019 2019-05-01             5    2.997101                1  950511.0
## 1938 May 2019 2019-05-01             5    2.657895                1  950511.0
## 1939 May 2019 2019-05-01             5    2.464198                1  950511.0
## 1940 May 2019 2019-05-01             5    3.057047                1  950511.0
## 1941 May 2019 2019-05-01             5    2.906137                1  950511.0
## 1942 May 2019 2019-05-01             5    2.917582                1  950511.0
## 1943 May 2019 2019-05-01             5    2.486553                1  950511.0
## 1944 May 2019 2019-05-01             5    2.647230                1  950511.0
## 1945 May 2019 2019-05-01             5    2.901818                1  950511.0
## 1946 May 2019 2019-05-01             5    2.794788                1  950511.0
## 1947 May 2019 2019-05-01             5    2.752412                1  950511.0
## 1948 May 2019 2019-05-01             5    2.820652                1  950511.0
## 1949 May 2019 2019-05-01             5    2.730871                1  950511.0
## 1950 May 2019 2019-05-01             5    2.448276                1  950511.0
## 1951 May 2019 2019-05-01             5    2.723183                1  950511.0
## 1952 May 2019 2019-05-01             5    2.790378                1  950511.0
## 1953 May 2019 2019-05-01             5    2.735294                1  950511.0
## 1954 May 2019 2019-05-01             5    2.842444                1  950511.0
## 1955 May 2019 2019-05-01             5    2.645902                1  950511.0
## 1956 May 2019 2019-05-01             5    2.604592                1  950511.0
## 1957 May 2019 2019-05-01             5    2.622356                1  950511.0
## 1958 May 2019 2019-05-01             5    2.835866                1  950511.0
## 1959 May 2019 2019-05-01             5    2.671470                1  950511.0
## 1960 May 2019 2019-05-01             5    2.533923                1  950511.0
## 1961 May 2019 2019-05-01             5    2.844595                1  950511.0
## 1962 May 2019 2019-05-01             5    3.067449                1  950511.0
## 1963 May 2019 2019-05-01             5    2.792507                1  950511.0
## 1964 May 2019 2019-05-01             5    2.540625                1  950511.0
## 1965 May 2019 2019-05-01             5    1.652720                0 1155217.9
## 1966 May 2019 2019-05-01             5    2.652459                1 1155217.9
## 1967 May 2019 2019-05-01             5    1.830040                1 1155217.9
## 1968 May 2019 2019-05-01             5    2.468750                1 1155217.9
## 1969 May 2019 2019-05-01             5    2.720149                1 1155217.9
## 1970 May 2019 2019-05-01             5    2.775920                1 1155217.9
## 1971 May 2019 2019-05-01             5    1.655870                0 1155217.9
## 1972 May 2019 2019-05-01             5    1.907336                1 1155217.9
## 1973 May 2019 2019-05-01             5    2.022222                1 1155217.9
## 1974 May 2019 2019-05-01             5    2.031008                0 1155217.9
## 1975 May 2019 2019-05-01             5    1.539855                0 1155217.9
## 1976 May 2019 2019-05-01             5    1.745833                0 1155217.9
## 1977 May 2019 2019-05-01             5    2.562500                1 1155217.9
## 1978 May 2019 2019-05-01             5    1.739669                0 1155217.9
## 1979 May 2019 2019-05-01             5    1.658730                0 1155217.9
## 1980 May 2019 2019-05-01             5    2.694158                1 1155217.9
## 1981 May 2019 2019-05-01             5    2.215152                1 1155217.9
## 1982 May 2019 2019-05-01             5    1.619377                0 1155217.9
## 1983 May 2019 2019-05-01             5    1.746094                0 1165494.9
## 1984 May 2019 2019-05-01             5    2.084942                0 1165494.9
## 1985 May 2019 2019-05-01             5    1.837302                0 1165494.9
## 1986 May 2019 2019-05-01             5    2.416357                1 1165494.9
## 1987 May 2019 2019-05-01             5    2.556757                1 1165494.9
## 1988 May 2019 2019-05-01             5    2.714777                1 1165494.9
## 1989 May 2019 2019-05-01             5    2.670330                1 1165494.9
## 1990 May 2019 2019-05-01             5    1.764516                0 1165494.9
## 1991 May 2019 2019-05-01             5    1.993691                0 1165494.9
## 1992 May 2019 2019-05-01             5    2.227119                0 1165494.9
## 1993 May 2019 2019-05-01             5    1.652582                0 1165494.9
## 1994 May 2019 2019-05-01             5    1.768061                0 1165494.9
## 1995 May 2019 2019-05-01             5    1.947692                0 1165494.9
## 1996 May 2019 2019-05-01             5    2.569182                1 1165494.9
## 1997 May 2019 2019-05-01             5    1.842105                0 1165494.9
## 1998 May 2019 2019-05-01             5    1.766187                0 1165494.9
## 1999 May 2019 2019-05-01             5    1.767361                0 1165494.9
## 2000 May 2019 2019-05-01             5    2.696697                1 1165494.9
## 2001 May 2019 2019-05-01             5    2.734694                1 1165494.9
## 2002 May 2019 2019-05-01             5    2.510714                1 1165494.9
## 2003 May 2019 2019-05-01             5    2.616487                1 1165494.9
## 2004 May 2019 2019-05-01             5    1.770751                0 1165494.9
## 2005 May 2019 2019-05-01             5    2.589342                1 1165494.9
## 2006 May 2019 2019-05-01             5    2.817276                1 1165494.9
## 2007 May 2019 2019-05-01             5    1.817544                0 1165494.9
## 2008 May 2019 2019-05-01             5    2.625352                1 1165494.9
## 2009 May 2019 2019-05-01             5    1.575251                0 1165494.9
## 2010 May 2019 2019-05-01             5    1.775100                0 1165494.9
## 2011 May 2019 2019-05-01             5    2.123404                0 1165494.9
## 2012 May 2019 2019-05-01             5    2.258865                0 1165494.9
## 2013 May 2019 2019-05-01             5    2.733564                1 1165494.9
## 2014 May 2019 2019-05-01             5    1.729452                0 1165494.9
## 2015 May 2019 2019-05-01             5    2.664577                1 1165494.9
## 2016 May 2019 2019-05-01             5    1.719368                0 1165494.9
## 2017 May 2019 2019-05-01             5    1.897233                0 1165494.9
## 2018 May 2019 2019-05-01             5    1.836134                0 1165494.9
## 2019 May 2019 2019-05-01             5    2.539216                1 1165494.9
## 2020 May 2019 2019-05-01             5    1.704918                0 1165494.9
## 2021 May 2019 2019-05-01             5    1.786164                0 1165494.9
## 2022 May 2019 2019-05-01             5    1.743056                0 1165494.9
## 2023 May 2019 2019-05-01             5    1.734694                0 1165494.9
## 2024 May 2019 2019-05-01             5    2.700348                1 1165494.9
## 2025 May 2019 2019-05-01             5    1.843284                0 1165494.9
## 2026 May 2019 2019-05-01             5    1.691729                0 1165494.9
## 2027 May 2019 2019-05-01             5    1.908088                0 1165494.9
## 2028 May 2019 2019-05-01             5    1.959839                0 1165494.9
## 2029 May 2019 2019-05-01             5    2.346570                1 1165494.9
## 2030 May 2019 2019-05-01             5    2.617647                1 1165494.9
## 2031 May 2019 2019-05-01             5    2.721014                1 1165494.9
## 2032 May 2019 2019-05-01             5    1.539062                0 1165494.9
## 2033 May 2019 2019-05-01             5    1.657588                0 1165494.9
## 2034 May 2019 2019-05-01             5    2.725753                1 1165494.9
## 2035 May 2019 2019-05-01             5    1.800699                0 1165494.9
## 2036 May 2019 2019-05-01             5    2.695238                1 1165494.9
## 2037 May 2019 2019-05-01             5    2.003831                0 1165494.9
## 2038 May 2019 2019-05-01             5    2.534722                1 1165494.9
## 2039 May 2019 2019-05-01             5    1.702786                0 1165494.9
## 2040 May 2019 2019-05-01             5    1.717842                0 1165494.9
## 2041 May 2019 2019-05-01             5    1.825658                0 1165494.9
## 2042 May 2019 2019-05-01             5    2.661342                1 1165494.9
## 2043 May 2019 2019-05-01             5    1.602076                0 1165494.9
## 2044 May 2019 2019-05-01             5    2.080000                0 1165494.9
## 2045 May 2019 2019-05-01             5    1.861224                0 1165494.9
## 2046 May 2019 2019-05-01             5    1.776000                0 1165494.9
## 2047 May 2019 2019-05-01             5    1.602151                0 1165494.9
## 2048 May 2019 2019-05-01             5    1.952569                0 1165494.9
## 2049 May 2019 2019-05-01             5    1.690083                0 1165494.9
## 2050 May 2019 2019-05-01             5    2.688000                1 1165494.9
## 2051 May 2019 2019-05-01             5    1.800738                0 1165494.9
## 2052 May 2019 2019-05-01             5    1.723549                0 1165494.9
## 2053 May 2019 2019-05-01             5    2.762987                1 1165494.9
## 2054 May 2019 2019-05-01             5    1.674074                0 1165494.9
## 2055 May 2019 2019-05-01             5    1.728571                0 1165494.9
## 2056 May 2019 2019-05-01             5    2.684411                1 1165494.9
## 2057 May 2019 2019-05-01             5    1.852941                0 1165494.9
## 2058 May 2019 2019-05-01             5    2.029091                0 1165494.9
## 2059 May 2019 2019-05-01             5    2.619048                1 1058006.9
## 2060 May 2019 2019-05-01             5    2.799308                1 1058006.9
## 2061 May 2019 2019-05-01             5    2.571429                1 1058006.9
## 2062 May 2019 2019-05-01             5    3.061889                1 1058006.9
## 2063 May 2019 2019-05-01             5    2.714286                1 1058006.9
## 2064 May 2019 2019-05-01             5    2.833333                1 1058006.9
## 2065 May 2019 2019-05-01             5    2.656168                1 1058006.9
## 2066 May 2019 2019-05-01             5    2.799331                1 1058006.9
## 2067 May 2019 2019-05-01             5    1.897436                0 1058006.9
## 2068 May 2019 2019-05-01             5    2.376623                1 1058006.9
## 2069 May 2019 2019-05-01             5    1.976190                0 1058006.9
## 2070 May 2019 2019-05-01             5    2.592593                1 1058006.9
## 2071 May 2019 2019-05-01             5    2.791086                0 1058006.9
## 2072 May 2019 2019-05-01             5    2.908046                1 1058006.9
## 2073 May 2019 2019-05-01             5    2.927393                1 1058006.9
## 2074 May 2019 2019-05-01             5    2.545455                1 1058006.9
## 2075 May 2019 2019-05-01             5    2.944853                1 1058006.9
## 2076 May 2019 2019-05-01             5    1.835206                0 1058006.9
## 2077 May 2019 2019-05-01             5    2.533333                1 1058006.9
## 2078 May 2019 2019-05-01             5    1.719697                0 1058006.9
## 2079 May 2019 2019-05-01             5    2.664537                1 1058006.9
## 2080 May 2019 2019-05-01             5    2.755556                1 1058006.9
## 2081 May 2019 2019-05-01             5    2.643454                1 1058006.9
## 2082 May 2019 2019-05-01             5    2.781609                1 1058006.9
## 2083 May 2019 2019-05-01             5    2.900344                1 1058006.9
## 2084 May 2019 2019-05-01             5    2.674772                1 1058006.9
## 2085 May 2019 2019-05-01             5    2.905488                1 1058006.9
## 2086 May 2019 2019-05-01             5    2.278873                1 1058006.9
## 2087 May 2019 2019-05-01             5    2.715625                1 1058006.9
## 2088 May 2019 2019-05-01             5    2.248815                1 1058006.9
## 2089 May 2019 2019-05-01             5    2.785507                1 1058006.9
## 2090 May 2019 2019-05-01             5    1.987437                1 1058006.9
## 2091 May 2019 2019-05-01             5    2.808081                1 1058006.9
## 2092 May 2019 2019-05-01             5    3.023166                1 1058006.9
## 2093 May 2019 2019-05-01             5    2.386792                1 1058006.9
## 2094 May 2019 2019-05-01             5    2.503704                1 1058006.9
## 2095 May 2019 2019-05-01             5    2.725857                1 1058006.9
## 2096 May 2019 2019-05-01             5    2.223022                1 1058006.9
## 2097 May 2019 2019-05-01             5    2.910112                1 1058006.9
## 2098 May 2019 2019-05-01             5    2.667702                1 1058006.9
## 2099 May 2019 2019-05-01             5    2.669841                1 1058006.9
## 2100 May 2019 2019-05-01             5    2.733333                1 1058006.9
## 2101 May 2019 2019-05-01             5    2.583562                1 1058006.9
## 2102 May 2019 2019-05-01             5    2.717391                1 1058006.9
## 2103 May 2019 2019-05-01             5    1.977273                0 1058006.9
## 2104 May 2019 2019-05-01             5    2.701863                1 1058006.9
## 2105 May 2019 2019-05-01             5    2.862974                1 1058006.9
## 2106 May 2019 2019-05-01             5    1.875000                0 1058006.9
## 2107 May 2019 2019-05-01             5    2.804487                1 1058006.9
## 2108 May 2019 2019-05-01             5    1.749117                0 1058006.9
## 2109 May 2019 2019-05-01             5    2.770227                1 1058006.9
## 2110 May 2019 2019-05-01             5    2.650704                1 1058006.9
## 2111 May 2019 2019-05-01             5    2.725000                1 1058006.9
## 2112 May 2019 2019-05-01             5    2.619048                1 1058006.9
## 2113 May 2019 2019-05-01             5    2.578073                1 1058006.9
## 2114 May 2019 2019-05-01             5    3.015385                1 1058006.9
## 2115 May 2019 2019-05-01             5    2.693291                1 1058006.9
## 2116 May 2019 2019-05-01             5    2.781250                1 1058006.9
## 2117 May 2019 2019-05-01             5    2.544872                1 1058006.9
## 2118 May 2019 2019-05-01             5    2.750000                1 1058006.9
## 2119 May 2019 2019-05-01             5    2.568862                1 1058006.9
## 2120 May 2019 2019-05-01             5    2.623418                1 1058006.9
## 2121 May 2019 2019-05-01             5    2.560224                1 1172906.5
## 2122 May 2019 2019-05-01             5    2.763158                1 1172906.5
## 2123 May 2019 2019-05-01             5    2.762963                1 1172906.5
## 2124 May 2019 2019-05-01             5    2.692308                1 1172906.5
## 2125 May 2019 2019-05-01             5    1.972973                0 1172906.5
## 2126 May 2019 2019-05-01             5    2.726727                1 1172906.5
## 2127 May 2019 2019-05-01             5    2.024390                0 1172906.5
## 2128 May 2019 2019-05-01             5    2.621359                1 1172906.5
## 2129 May 2019 2019-05-01             5    2.830084                1 1172906.5
## 2130 May 2019 2019-05-01             5    2.709459                1 1172906.5
## 2131 May 2019 2019-05-01             5    1.749104                0 1172906.5
## 2132 May 2019 2019-05-01             5    2.859779                1 1172906.5
## 2133 May 2019 2019-05-01             5    2.693548                1 1172906.5
## 2134 May 2019 2019-05-01             5    2.812261                1 1172906.5
## 2135 May 2019 2019-05-01             5    2.683636                1 1172906.5
## 2136 May 2019 2019-05-01             5    1.850000                0 1172906.5
## 2137 May 2019 2019-05-01             5    2.809365                1 1172906.5
## 2138 May 2019 2019-05-01             5    2.688645                1 1172906.5
## 2139 May 2019 2019-05-01             5    2.680782                1 1172906.5
## 2140 May 2019 2019-05-01             5    2.667683                1 1172906.5
## 2141 May 2019 2019-05-01             5    2.685065                1 1172906.5
## 2142 May 2019 2019-05-01             5    1.682493                0 1172906.5
## 2143 May 2019 2019-05-01             5    2.760383                1 1172906.5
## 2144 May 2019 2019-05-01             5    1.617530                0 1172906.5
## 2145 May 2019 2019-05-01             5    1.652997                0 1172906.5
## 2146 May 2019 2019-05-01             5    2.683673                1 1172906.5
## 2147 May 2019 2019-05-01             5    1.797619                0 1172906.5
## 2148 May 2019 2019-05-01             5    2.525568                1 1172906.5
## 2149 May 2019 2019-05-01             5    1.940520                0 1172906.5
## 2150 May 2019 2019-05-01             5    2.604096                1 1172906.5
## 2151 May 2019 2019-05-01             5    1.676190                0 1172906.5
## 2152 May 2019 2019-05-01             5    1.631970                0 1172906.5
## 2153 May 2019 2019-05-01             5    2.660131                1 1172906.5
## 2154 May 2019 2019-05-01             5    2.772727                1 1172906.5
## 2155 May 2019 2019-05-01             5    2.709343                1 1172906.5
## 2156 May 2019 2019-05-01             5    2.651163                1 1172906.5
## 2157 May 2019 2019-05-01             5    2.659701                1 1172906.5
## 2158 May 2019 2019-05-01             5    2.667722                1 1172906.5
## 2159 May 2019 2019-05-01             5    2.649518                1 1172906.5
## 2160 May 2019 2019-05-01             5    1.599349                0 1172906.5
## 2161 May 2019 2019-05-01             5    2.657738                1 1172906.5
## 2162 May 2019 2019-05-01             5    2.720149                1 1172906.5
## 2163 May 2019 2019-05-01             5    1.507937                0 1172906.5
## 2164 May 2019 2019-05-01             5    1.642105                0 1171368.7
## 2165 May 2019 2019-05-01             5    2.482650                1 1171368.7
## 2166 May 2019 2019-05-01             5    2.671975                1 1171368.7
## 2167 May 2019 2019-05-01             5    2.539773                1 1171368.7
## 2168 May 2019 2019-05-01             5    2.757143                1 1171368.7
## 2169 May 2019 2019-05-01             5    1.723735                0 1171368.7
## 2170 May 2019 2019-05-01             5    2.692308                1 1171368.7
## 2171 May 2019 2019-05-01             5    2.796935                1 1171368.7
## 2172 May 2019 2019-05-01             5    1.743119                0 1171368.7
## 2173 May 2019 2019-05-01             5    2.891386                1 1171368.7
## 2174 May 2019 2019-05-01             5    1.800000                0 1171368.7
## 2175 May 2019 2019-05-01             5    2.603675                1 1171368.7
## 2176 May 2019 2019-05-01             5    2.703833                1 1171368.7
## 2177 May 2019 2019-05-01             5    2.573883                1 1171368.7
## 2178 May 2019 2019-05-01             5    1.720280                0 1171368.7
## 2179 May 2019 2019-05-01             5    1.673913                0 1171368.7
## 2180 May 2019 2019-05-01             5    1.918605                0 1171368.7
## 2181 May 2019 2019-05-01             5    2.068841                0 1171368.7
## 2182 May 2019 2019-05-01             5    1.646048                0 1171368.7
## 2183 May 2019 2019-05-01             5    1.692884                0 1171368.7
## 2184 May 2019 2019-05-01             5    2.536517                1 1171368.7
## 2185 May 2019 2019-05-01             5    2.663082                1 1171368.7
## 2186 May 2019 2019-05-01             5    2.060510                0 1171368.7
## 2187 May 2019 2019-05-01             5    2.691358                1 1171368.7
## 2188 May 2019 2019-05-01             5    2.639037                1 1171368.7
## 2189 May 2019 2019-05-01             5    2.652406                1 1171368.7
## 2190 May 2019 2019-05-01             5    2.496753                1 1171368.7
## 2191 May 2019 2019-05-01             5    1.736364                0 1171368.7
## 2192 May 2019 2019-05-01             5    2.668874                1 1171368.7
## 2193 May 2019 2019-05-01             5    1.678030                0 1171368.7
## 2194 May 2019 2019-05-01             5    1.658824                0 1171368.7
## 2195 May 2019 2019-05-01             5    2.816547                1 1171368.7
## 2196 May 2019 2019-05-01             5    2.616000                1 1171368.7
## 2197 May 2019 2019-05-01             5    1.695489                0 1171368.7
## 2198 May 2019 2019-05-01             5    2.637584                1 1171368.7
## 2199 May 2019 2019-05-01             5    2.727273                1 1171368.7
## 2200 May 2019 2019-05-01             5    1.776515                0 1171368.7
## 2201 May 2019 2019-05-01             5    2.769231                1 1171368.7
## 2202 May 2019 2019-05-01             5    1.554054                0 1171368.7
## 2203 May 2019 2019-05-01             5    2.760656                1 1171368.7
## 2204 May 2019 2019-05-01             5    1.776119                0 1171368.7
## 2205 May 2019 2019-05-01             5    1.720000                0 1171368.7
## 2206 May 2019 2019-05-01             5    2.766187                1 1171368.7
## 2207 May 2019 2019-05-01             5    2.787072                1 1171368.7
## 2208 May 2019 2019-05-01             5    2.728814                1 1171368.7
## 2209 May 2019 2019-05-01             5    1.686869                0 1171368.7
## 2210 May 2019 2019-05-01             5    1.826087                0 1171368.7
## 2211 May 2019 2019-05-01             5    2.391489                0 1171368.7
## 2212 May 2019 2019-05-01             5    1.627907                0 1171368.7
## 2213 May 2019 2019-05-01             5    1.774590                0 1171368.7
## 2214 May 2019 2019-05-01             5    2.784553                1 1171368.7
## 2215 May 2019 2019-05-01             5    1.712644                0 1171368.7
## 2216 May 2019 2019-05-01             5    1.676113                0 1171368.7
## 2217 May 2019 2019-05-01             5    2.069231                0 1171368.7
## 2218 May 2019 2019-05-01             5    1.809339                0 1171368.7
## 2219 May 2019 2019-05-01             5    2.693380                1 1171368.7
## 2220 May 2019 2019-05-01             5    1.652015                0 1171368.7
## 2221 May 2019 2019-05-01             5    1.720930                0 1171368.7
## 2222 May 2019 2019-05-01             5    1.480392                0 1169637.0
## 2223 May 2019 2019-05-01             5    2.639665                1 1169637.0
## 2224 May 2019 2019-05-01             5    2.670175                1 1169637.0
## 2225 May 2019 2019-05-01             5    1.741279                0 1169637.0
## 2226 May 2019 2019-05-01             5    2.661972                1 1169637.0
## 2227 May 2019 2019-05-01             5    1.709677                0 1169637.0
## 2228 May 2019 2019-05-01             5    1.719472                0 1169637.0
## 2229 May 2019 2019-05-01             5    1.676282                0 1169637.0
## 2230 May 2019 2019-05-01             5    1.822581                0 1169637.0
## 2231 May 2019 2019-05-01             5    1.719424                0 1169257.2
## 2232 May 2019 2019-05-01             5    1.864111                0 1169257.2
## 2233 May 2019 2019-05-01             5    2.601744                1 1169257.2
## 2234 May 2019 2019-05-01             5    2.156934                0 1169257.2
## 2235 May 2019 2019-05-01             5    1.771331                0 1169257.2
## 2236 May 2019 2019-05-01             5    2.652047                1 1169257.2
## 2237 May 2019 2019-05-01             5    2.562092                1 1169257.2
## 2238 May 2019 2019-05-01             5    1.970464                0 1169257.2
## 2239 May 2019 2019-05-01             5    2.671795                1 1169257.2
## 2240 May 2019 2019-05-01             5    2.716012                1 1169257.2
## 2241 May 2019 2019-05-01             5    1.524917                0 1169257.2
## 2242 May 2019 2019-05-01             5    1.916409                0 1169257.2
## 2243 May 2019 2019-05-01             5    2.573099                1 1169257.2
## 2244 May 2019 2019-05-01             5    2.709571                1 1169257.2
## 2245 May 2019 2019-05-01             5    2.654434                1 1169257.2
## 2246 May 2019 2019-05-01             5    2.549598                1 1169257.2
## 2247 May 2019 2019-05-01             5    2.764075                1 1169257.2
## 2248 May 2019 2019-05-01             5    1.703822                0 1169257.2
## 2249 May 2019 2019-05-01             5    2.607717                1 1169257.2
## 2250 May 2019 2019-05-01             5    1.802817                0 1169257.2
## 2251 May 2019 2019-05-01             5    2.524540                1 1169257.2
## 2252 May 2019 2019-05-01             5    1.921384                0 1169257.2
## 2253 May 2019 2019-05-01             5    1.847909                0 1169257.2
## 2254 May 2019 2019-05-01             5    2.342183                1 1169257.2
## 2255 May 2019 2019-05-01             5    1.719231                0 1169257.2
## 2256 May 2019 2019-05-01             5    1.690909                0 1169257.2
## 2257 May 2019 2019-05-01             5    1.556338                0 1169257.2
## 2258 May 2019 2019-05-01             5    1.621908                0 1169257.2
## 2259 May 2019 2019-05-01             5    1.736111                0 1169257.2
## 2260 May 2019 2019-05-01             5    1.926357                0 1169257.2
## 2261 May 2019 2019-05-01             5    1.897010                0 1169257.2
## 2262 May 2019 2019-05-01             5    1.717857                0 1169257.2
## 2263 May 2019 2019-05-01             5    2.636066                1 1169257.2
## 2264 May 2019 2019-05-01             5    2.684385                1 1169257.2
## 2265 May 2019 2019-05-01             5    2.548571                1 1169257.2
## 2266 May 2019 2019-05-01             5    2.443590                1 1169257.2
## 2267 May 2019 2019-05-01             5    1.741573                0 1169257.2
## 2268 May 2019 2019-05-01             5    2.623656                1 1169257.2
## 2269 May 2019 2019-05-01             5    2.587131                1 1169257.2
## 2270 May 2019 2019-05-01             5    2.501377                1 1169257.2
## 2271 May 2019 2019-05-01             5    2.841379                1 1169257.2
## 2272 May 2019 2019-05-01             5    2.833333                1 1169257.2
## 2273 May 2019 2019-05-01             5    1.817121                0 1169257.2
## 2274 May 2019 2019-05-01             5    2.608187                1 1169257.2
## 2275 May 2019 2019-05-01             5    1.716312                0 1169257.2
## 2276 May 2019 2019-05-01             5    1.673203                0 1169257.2
## 2277 May 2019 2019-05-01             5    2.648649                1 1169257.2
## 2278 May 2019 2019-05-01             5    1.674497                0 1169257.2
## 2279 May 2019 2019-05-01             5    2.754098                1 1169257.2
## 2280 May 2019 2019-05-01             5    1.744604                0 1169257.2
## 2281 May 2019 2019-05-01             5    2.743590                1 1169257.2
## 2282 May 2019 2019-05-01             5    1.830189                0 1169257.2
## 2283 May 2019 2019-05-01             5    1.825581                0 1169257.2
## 2284 May 2019 2019-05-01             5    1.858209                0 1169257.2
## 2285 May 2019 2019-05-01             5    2.666667                1 1169257.2
## 2286 May 2019 2019-05-01             5    2.688889                1 1169257.2
## 2287 May 2019 2019-05-01             5    1.728395                0 1169257.2
## 2288 May 2019 2019-05-01             5    2.719178                1 1169257.2
## 2289 May 2019 2019-05-01             5    1.617241                0 1169257.2
## 2290 May 2019 2019-05-01             5    2.671010                1 1169257.2
## 2291 May 2019 2019-05-01             5    2.567901                1 1169257.2
## 2292 May 2019 2019-05-01             5    2.569892                1 1169257.2
## 2293 May 2019 2019-05-01             5    2.549724                1 1169257.2
## 2294 May 2019 2019-05-01             5    2.509383                1 1169257.2
## 2295 May 2019 2019-05-01             5    1.686508                0 1169257.2
## 2296 May 2019 2019-05-01             5    1.529940                0 1169257.2
## 2297 May 2019 2019-05-01             5    2.715625                1 1169257.2
## 2298 May 2019 2019-05-01             5    1.738806                0 1169257.2
## 2299 May 2019 2019-05-01             5    1.682836                0 1169257.2
## 2300 May 2019 2019-05-01             5    1.687307                0 1169257.2
## 2301 May 2019 2019-05-01             5    1.765343                0 1169257.2
## 2302 May 2019 2019-05-01             5    2.538874                1 1169257.2
## 2303 May 2019 2019-05-01             5    1.900709                0 1169257.2
## 2304 May 2019 2019-05-01             5    2.509589                1 1169257.2
## 2305 May 2019 2019-05-01             5    1.821293                0 1169257.2
## 2306 May 2019 2019-05-01             5    1.623239                0 1169257.2
## 2307 May 2019 2019-05-01             5    1.854406                0 1169257.2
## 2308 May 2019 2019-05-01             5    2.838488                1 1169257.2
## 2309 May 2019 2019-05-01             5    1.669456                0 1169257.2
## 2310 May 2019 2019-05-01             5    2.896552                1 1169257.2
## 2311 May 2019 2019-05-01             5    2.722034                1 1169257.2
## 2312 May 2019 2019-05-01             5    2.545775                1 1169257.2
## 2313 May 2019 2019-05-01             5    2.641096                1 1169257.2
## 2314 May 2019 2019-05-01             5    1.988806                0 1169257.2
## 2315 May 2019 2019-05-01             5    1.572881                0 1169257.2
## 2316 May 2019 2019-05-01             5    2.612676                1 1169257.2
## 2317 May 2019 2019-05-01             5    1.690566                0 1169257.2
## 2318 May 2019 2019-05-01             5    1.893204                0 1169257.2
## 2319 May 2019 2019-05-01             5    2.055556                0 1169257.2
## 2320 May 2019 2019-05-01             5    1.841699                0 1169257.2
## 2321 May 2019 2019-05-01             5    2.690625                1 1169257.2
## 2322 May 2019 2019-05-01             5    1.673152                0 1169257.2
## 2323 May 2019 2019-05-01             5    1.669091                0 1169257.2
## 2324 May 2019 2019-05-01             5    1.619772                0 1169257.2
## 2325 May 2019 2019-05-01             5    1.665272                0 1169257.2
## 2326 May 2019 2019-05-01             5    1.745536                0 1169257.2
## 2327 May 2019 2019-05-01             5    1.729614                0 1169257.2
## 2328 May 2019 2019-05-01             5    2.705479                1 1169257.2
## 2329 May 2019 2019-05-01             5    1.727273                0 1169257.2
## 2330 May 2019 2019-05-01             5    1.790441                0 1169257.2
## 2331 May 2019 2019-05-01             5    1.560606                0 1169257.2
## 2332 May 2019 2019-05-01             5    1.602996                0 1169257.2
## 2333 May 2019 2019-05-01             5    2.666667                1 1175142.2
## 2334 May 2019 2019-05-01             5    2.440860                1 1175142.2
## 2335 May 2019 2019-05-01             5    2.607629                1 1175142.2
## 2336 May 2019 2019-05-01             5    2.485342                1 1175142.2
## 2337 May 2019 2019-05-01             5    2.832335                1 1175142.2
## 2338 May 2019 2019-05-01             5    1.897436                0 1175142.2
## 2339 May 2019 2019-05-01             5    2.697161                1 1175142.2
## 2340 May 2019 2019-05-01             5    2.666667                1 1175142.2
## 2341 May 2019 2019-05-01             5    2.647230                1 1175142.2
## 2342 May 2019 2019-05-01             5    2.781768                1 1175142.2
## 2343 May 2019 2019-05-01             5    2.651652                1 1175142.2
## 2344 May 2019 2019-05-01             5    2.772242                1 1175142.2
## 2345 May 2019 2019-05-01             5    2.640110                1 1175142.2
## 2346 May 2019 2019-05-01             5    2.715686                1 1175142.2
## 2347 May 2019 2019-05-01             5    2.630189                1 1175142.2
## 2348 May 2019 2019-05-01             5    2.600619                1 1175142.2
## 2349 May 2019 2019-05-01             5    2.674576                1 1175142.2
## 2350 May 2019 2019-05-01             5    2.778169                1 1175142.2
## 2351 May 2019 2019-05-01             5    2.620419                1 1175142.2
## 2352 May 2019 2019-05-01             5    3.040404                1 1175142.2
## 2353 May 2019 2019-05-01             5    2.638418                1 1175142.2
## 2354 May 2019 2019-05-01             5    2.649351                1 1175142.2
## 2355 May 2019 2019-05-01             5    1.616858                0 1175142.2
## 2356 May 2019 2019-05-01             5    2.654501                1 1175142.2
## 2357 May 2019 2019-05-01             5    2.590759                1 1175142.2
## 2358 May 2019 2019-05-01             5    2.546053                1 1175142.2
## 2359 May 2019 2019-05-01             5    2.705674                1 1175142.2
## 2360 May 2019 2019-05-01             5    1.920455                0 1175142.2
## 2361 May 2019 2019-05-01             5    2.582456                1 1175142.2
## 2362 May 2019 2019-05-01             5    2.610119                1 1176436.8
## 2363 May 2019 2019-05-01             5    2.614035                1 1176436.8
## 2364 May 2019 2019-05-01             5    2.679083                1 1176436.8
## 2365 May 2019 2019-05-01             5    1.747634                0 1176436.8
## 2366 May 2019 2019-05-01             5    2.637462                1 1176436.8
## 2367 May 2019 2019-05-01             5    2.150538                0 1176436.8
## 2368 May 2019 2019-05-01             5    1.593168                0 1176436.8
## 2369 May 2019 2019-05-01             5    1.622711                0 1150184.3
## 2370 May 2019 2019-05-01             5    2.740310                1 1150184.3
## 2371 May 2019 2019-05-01             5    1.533040                0 1150184.3
## 2372 May 2019 2019-05-01             5    2.708075                1 1150184.3
## 2373 May 2019 2019-05-01             5    2.536508                1 1150184.3
## 2374 May 2019 2019-05-01             5    2.579946                1 1150184.3
## 2375 May 2019 2019-05-01             5    1.824841                0 1150184.3
## 2376 May 2019 2019-05-01             5    1.655870                0 1150184.3
## 2377 May 2019 2019-05-01             5    1.783217                0 1150184.3
## 2378 May 2019 2019-05-01             5    1.688581                0 1150184.3
## 2379 May 2019 2019-05-01             5    1.817844                0 1150184.3
## 2380 May 2019 2019-05-01             5    2.780405                1 1150184.3
## 2381 May 2019 2019-05-01             5    1.599190                0 1150184.3
## 2382 May 2019 2019-05-01             5    1.811245                0 1150184.3
## 2383 May 2019 2019-05-01             5    1.604167                0 1150184.3
## 2384 May 2019 2019-05-01             5    1.642623                0 1150184.3
## 2385 May 2019 2019-05-01             5    1.603279                0 1150184.3
## 2386 May 2019 2019-05-01             5    1.837004                0 1150184.3
## 2387 May 2019 2019-05-01             5    1.642570                0 1150184.3
## 2388 May 2019 2019-05-01             5    2.683824                1 1150184.3
## 2389 May 2019 2019-05-01             5    1.855513                0 1150184.3
## 2390 May 2019 2019-05-01             5    2.668919                1 1150184.3
## 2391 May 2019 2019-05-01             5    2.624573                1 1150184.3
## 2392 May 2019 2019-05-01             5    1.799320                0 1150184.3
## 2393 May 2019 2019-05-01             5    1.543726                0 1150184.3
## 2394 May 2019 2019-05-01             5    2.524430                1 1150184.3
## 2395 May 2019 2019-05-01             5    2.654354                1 1150184.3
## 2396 May 2019 2019-05-01             5    1.674157                0 1150184.3
## 2397 May 2019 2019-05-01             5    1.578182                0 1150184.3
## 2398 May 2019 2019-05-01             5    1.539007                0 1150184.3
## 2399 May 2019 2019-05-01             5    1.654545                0 1150184.3
## 2400 May 2019 2019-05-01             5    2.666667                1 1150184.3
## 2401 May 2019 2019-05-01             5    1.770492                0 1150184.3
## 2402 May 2019 2019-05-01             5    1.733591                0 1150184.3
## 2403 Oct 2019 2019-10-01            10    2.673184                1  950518.7
## 2404 Oct 2019 2019-10-01            10    2.657738                1  950518.7
## 2405 Oct 2019 2019-10-01            10    2.606250                1  950518.7
## 2406 Oct 2019 2019-10-01            10    2.735376                1  950518.7
## 2407 Oct 2019 2019-10-01            10    2.897436                1  950518.7
## 2408 Oct 2019 2019-10-01            10    2.580292                1  950518.7
## 2409 Oct 2019 2019-10-01            10    2.795455                1  950518.7
## 2410 Oct 2019 2019-10-01            10    2.551515                1  950518.7
## 2411 Oct 2019 2019-10-01            10    2.682390                1  950518.7
## 2412 Oct 2019 2019-10-01            10    2.692308                1  950518.7
## 2413 Oct 2019 2019-10-01            10    2.778462                1  950518.7
## 2414 Oct 2019 2019-10-01            10    2.724518                1  950518.7
## 2415 Oct 2019 2019-10-01            10    1.582524                0  950518.7
## 2416 Oct 2019 2019-10-01            10    1.811847                0  950518.7
## 2417 Oct 2019 2019-10-01            10    2.771513                1  950518.7
## 2418 Oct 2019 2019-10-01            10    2.712610                1  950518.7
## 2419 Oct 2019 2019-10-01            10    2.673716                1 1155617.4
## 2420 Oct 2019 2019-10-01            10    2.741333                1 1155617.4
## 2421 Oct 2019 2019-10-01            10    2.657321                1 1155617.4
## 2422 Oct 2019 2019-10-01            10    2.730408                1 1155617.4
## 2423 Oct 2019 2019-10-01            10    2.689474                1 1155617.4
## 2424 Oct 2019 2019-10-01            10    2.806452                1 1155617.4
## 2425 Oct 2019 2019-10-01            10    2.570025                1 1155617.4
## 2426 Oct 2019 2019-10-01            10    2.933993                1 1155617.4
## 2427 Oct 2019 2019-10-01            10    2.774603                1 1155617.4
## 2428 Oct 2019 2019-10-01            10    2.682451                1 1155617.4
## 2429 Oct 2019 2019-10-01            10    2.769231                1 1155617.4
## 2430 Oct 2019 2019-10-01            10    2.672087                1 1155617.4
## 2431 Oct 2019 2019-10-01            10    2.486631                1 1155617.4
## 2432 Oct 2019 2019-10-01            10    2.724796                1 1155617.4
## 2433 Oct 2019 2019-10-01            10    2.795082                1 1155617.4
## 2434 Oct 2019 2019-10-01            10    1.824427                0 1155617.4
## 2435 Oct 2019 2019-10-01            10    2.740000                1 1155617.4
## 2436 Oct 2019 2019-10-01            10    2.730159                1 1155617.4
## 2437 Oct 2019 2019-10-01            10    2.885449                1 1155617.4
## 2438 Oct 2019 2019-10-01            10    2.718033                1 1155617.4
## 2439 Oct 2019 2019-10-01            10    2.774603                1 1155617.4
## 2440 Oct 2019 2019-10-01            10    2.740132                1 1155617.4
## 2441 Oct 2019 2019-10-01            10    2.643963                1 1155617.4
## 2442 Oct 2019 2019-10-01            10    2.803681                1 1155617.4
## 2443 Oct 2019 2019-10-01            10    2.674772                1 1155617.4
## 2444 Oct 2019 2019-10-01            10    2.827586                1 1155617.4
## 2445 Oct 2019 2019-10-01            10    2.654867                1 1155617.4
## 2446 Oct 2019 2019-10-01            10    2.668990                1 1155617.4
## 2447 Oct 2019 2019-10-01            10    2.747405                1 1155617.4
## 2448 Oct 2019 2019-10-01            10    2.729904                1 1155617.4
## 2449 Oct 2019 2019-10-01            10    2.552430                1 1155617.4
## 2450 Oct 2019 2019-10-01            10    2.722892                1 1155617.4
## 2451 Oct 2019 2019-10-01            10    2.674051                1 1155617.4
## 2452 Oct 2019 2019-10-01            10    2.719653                1 1155617.4
## 2453 Oct 2019 2019-10-01            10    2.860465                1 1155617.4
## 2454 Oct 2019 2019-10-01            10    2.632075                1 1165438.4
## 2455 Oct 2019 2019-10-01            10    2.563953                1 1165438.4
## 2456 Oct 2019 2019-10-01            10    1.663043                0 1165438.4
## 2457 Oct 2019 2019-10-01            10    2.489305                1 1165438.4
## 2458 Oct 2019 2019-10-01            10    2.563518                1 1165438.4
## 2459 Oct 2019 2019-10-01            10    2.569014                1 1165438.4
## 2460 Oct 2019 2019-10-01            10    2.870871                0 1165438.4
## 2461 Oct 2019 2019-10-01            10    2.572700                1 1165438.4
## 2462 Oct 2019 2019-10-01            10    2.559459                1 1165438.4
## 2463 Oct 2019 2019-10-01            10    3.008439                1 1165438.4
## 2464 Oct 2019 2019-10-01            10    2.664336                1 1165438.4
## 2465 Oct 2019 2019-10-01            10    2.557841                1 1165438.4
## 2466 Oct 2019 2019-10-01            10    2.425656                1 1165438.4
## 2467 Oct 2019 2019-10-01            10    2.551084                1 1165438.4
## 2468 Oct 2019 2019-10-01            10    2.581538                1 1165438.4
## 2469 Oct 2019 2019-10-01            10    2.517028                1 1165438.4
## 2470 Oct 2019 2019-10-01            10    2.718354                1 1058006.9
## 2471 Oct 2019 2019-10-01            10    2.603226                1 1058006.9
## 2472 Oct 2019 2019-10-01            10    2.688889                1 1058006.9
## 2473 Oct 2019 2019-10-01            10    2.774834                1 1058006.9
## 2474 Oct 2019 2019-10-01            10    2.595016                1 1058006.9
## 2475 Oct 2019 2019-10-01            10    2.771978                1 1058006.9
## 2476 Oct 2019 2019-10-01            10    2.706553                1 1058006.9
## 2477 Oct 2019 2019-10-01            10    2.588384                1 1058006.9
## 2478 Oct 2019 2019-10-01            10    2.574534                1 1058006.9
## 2479 Oct 2019 2019-10-01            10    2.750685                1 1058006.9
## 2480 Oct 2019 2019-10-01            10    2.584570                1 1058006.9
## 2481 Oct 2019 2019-10-01            10    2.619195                1 1058006.9
## 2482 Oct 2019 2019-10-01            10    2.678063                1 1058006.9
## 2483 Oct 2019 2019-10-01            10    2.769663                1 1058006.9
## 2484 Oct 2019 2019-10-01            10    2.671733                1 1058006.9
## 2485 Oct 2019 2019-10-01            10    2.772414                1 1058006.9
## 2486 Oct 2019 2019-10-01            10    2.680519                1 1058006.9
## 2487 Oct 2019 2019-10-01            10    2.627119                1 1058006.9
## 2488 Oct 2019 2019-10-01            10    2.849850                1 1058006.9
## 2489 Oct 2019 2019-10-01            10    2.802676                1 1058006.9
## 2490 Oct 2019 2019-10-01            10    2.551813                1 1058006.9
## 2491 Oct 2019 2019-10-01            10    2.758410                1 1058006.9
## 2492 Oct 2019 2019-10-01            10    2.661184                1 1058006.9
## 2493 Oct 2019 2019-10-01            10    2.737805                1 1058006.9
## 2494 Oct 2019 2019-10-01            10    2.659443                1 1058006.9
## 2495 Oct 2019 2019-10-01            10    2.694969                1 1058006.9
## 2496 Oct 2019 2019-10-01            10    2.645251                1 1058006.9
## 2497 Oct 2019 2019-10-01            10    2.777429                1 1058006.9
## 2498 Oct 2019 2019-10-01            10    2.753463                1 1058006.9
## 2499 Oct 2019 2019-10-01            10    2.761745                1 1058006.9
## 2500 Oct 2019 2019-10-01            10    2.615591                1 1058006.9
## 2501 Oct 2019 2019-10-01            10    2.752294                1 1058006.9
## 2502 Oct 2019 2019-10-01            10    2.664671                1 1058006.9
## 2503 Oct 2019 2019-10-01            10    2.521994                1 1058006.9
## 2504 Oct 2019 2019-10-01            10    2.672365                1 1058006.9
## 2505 Oct 2019 2019-10-01            10    2.780980                1 1058006.9
## 2506 Oct 2019 2019-10-01            10    2.789668                1 1058006.9
## 2507 Oct 2019 2019-10-01            10    2.744526                1 1058006.9
## 2508 Oct 2019 2019-10-01            10    2.587662                1 1058006.9
## 2509 Oct 2019 2019-10-01            10    2.590214                1 1058006.9
## 2510 Oct 2019 2019-10-01            10    2.798077                1 1058006.9
## 2511 Oct 2019 2019-10-01            10    2.635179                1 1058006.9
## 2512 Oct 2019 2019-10-01            10    2.638978                1 1058006.9
## 2513 Oct 2019 2019-10-01            10    2.785507                1 1032899.7
## 2514 Oct 2019 2019-10-01            10    2.802292                1 1032899.7
## 2515 Oct 2019 2019-10-01            10    2.679045                1 1032899.7
## 2516 Oct 2019 2019-10-01            10    2.625000                1 1032899.7
## 2517 Oct 2019 2019-10-01            10    2.694370                1 1032899.7
## 2518 Oct 2019 2019-10-01            10    2.717391                1 1032899.7
## 2519 Oct 2019 2019-10-01            10    2.816216                1 1032899.7
## 2520 Oct 2019 2019-10-01            10    2.838983                1 1032899.7
## 2521 Oct 2019 2019-10-01            10    2.689320                1 1032899.7
## 2522 Oct 2019 2019-10-01            10    2.094697                1 1032899.7
## 2523 Oct 2019 2019-10-01            10    2.654088                1 1032899.7
## 2524 Oct 2019 2019-10-01            10    2.643590                1 1032899.7
## 2525 Oct 2019 2019-10-01            10    2.793750                1 1032899.7
## 2526 Oct 2019 2019-10-01            10    2.714674                1 1032899.7
## 2527 Oct 2019 2019-10-01            10    2.852507                1 1032899.7
## 2528 Oct 2019 2019-10-01            10    2.979094                1 1032899.7
## 2529 Oct 2019 2019-10-01            10    2.694631                1 1032899.7
## 2530 Oct 2019 2019-10-01            10    2.591331                1 1032899.7
## 2531 Oct 2019 2019-10-01            10    2.722513                1 1032899.7
## 2532 Oct 2019 2019-10-01            10    1.844371                0 1032899.7
## 2533 Oct 2019 2019-10-01            10    2.702265                1 1032899.7
## 2534 Oct 2019 2019-10-01            10    2.627507                1 1032899.7
## 2535 Oct 2019 2019-10-01            10    2.500000                1 1032899.7
## 2536 Oct 2019 2019-10-01            10    2.482558                1 1000147.1
## 2537 Oct 2019 2019-10-01            10    2.824798                1 1000147.1
## 2538 Oct 2019 2019-10-01            10    2.690027                1 1000147.1
## 2539 Oct 2019 2019-10-01            10    2.697406                1 1000147.1
## 2540 Oct 2019 2019-10-01            10    2.617414                1 1000147.1
## 2541 Oct 2019 2019-10-01            10    1.721569                0 1000147.1
## 2542 Oct 2019 2019-10-01            10    2.650000                1 1000147.1
## 2543 Oct 2019 2019-10-01            10    2.160142                1 1000147.1
## 2544 Oct 2019 2019-10-01            10    2.627692                1 1000147.1
## 2545 Oct 2019 2019-10-01            10    2.764706                1 1000147.1
## 2546 Oct 2019 2019-10-01            10    2.431973                1 1000147.1
## 2547 Oct 2019 2019-10-01            10    2.653846                1 1000147.1
## 2548 Oct 2019 2019-10-01            10    2.816054                1  999718.1
## 2549 Oct 2019 2019-10-01            10    2.688963                1  999718.1
## 2550 Oct 2019 2019-10-01            10    2.676364                1  999718.1
## 2551 Oct 2019 2019-10-01            10    2.609290                1  999718.1
## 2552 Oct 2019 2019-10-01            10    2.245353                1  999718.1
## 2553 Oct 2019 2019-10-01            10    2.695122                1  999718.1
## 2554 Oct 2019 2019-10-01            10    2.859599                1  999718.1
## 2555 Oct 2019 2019-10-01            10    2.698630                1  999718.1
## 2556 Oct 2019 2019-10-01            10    2.775641                1  999718.1
## 2557 Oct 2019 2019-10-01            10    2.709945                1  999718.1
## 2558 Oct 2019 2019-10-01            10    2.700767                1  999718.1
## 2559 Oct 2019 2019-10-01            10    2.672087                1  999718.1
## 2560 Oct 2019 2019-10-01            10    2.559028                1  999718.1
## 2561 Oct 2019 2019-10-01            10    2.566154                1  999718.1
## 2562 Oct 2019 2019-10-01            10    2.596491                1 1169257.2
## 2563 Oct 2019 2019-10-01            10    2.639456                1 1169257.2
## 2564 Oct 2019 2019-10-01            10    2.681698                1 1169257.2
## 2565 Oct 2019 2019-10-01            10    2.620991                1 1169257.2
## 2566 Oct 2019 2019-10-01            10    2.739414                1 1169257.2
## 2567 Oct 2019 2019-10-01            10    2.641026                1 1169257.2
## 2568 Oct 2019 2019-10-01            10    1.852201                0 1169257.2
## 2569 Oct 2019 2019-10-01            10    2.834532                1 1169257.2
## 2570 Oct 2019 2019-10-01            10    2.761246                1 1168891.6
## 2571 Oct 2019 2019-10-01            10    2.637540                1 1168891.6
## 2572 Oct 2019 2019-10-01            10    2.882943                1 1168891.6
## 2573 Oct 2019 2019-10-01            10    2.687500                1 1168891.6
## 2574 Oct 2019 2019-10-01            10    2.707746                1 1168891.6
## 2575 Oct 2019 2019-10-01            10    1.963899                0 1169637.0
## 2576 Oct 2019 2019-10-01            10    2.627451                1 1169637.0
## 2577 Oct 2019 2019-10-01            10    2.461957                1 1169637.0
## 2578 Oct 2019 2019-10-01            10    1.754864                0 1169637.0
## 2579 Oct 2019 2019-10-01            10    1.884477                0 1169637.0
## 2580 Oct 2019 2019-10-01            10    2.713816                1 1169637.0
## 2581 Oct 2019 2019-10-01            10    2.691558                1 1169637.0
## 2582 Oct 2019 2019-10-01            10    1.752443                0 1169637.0
## 2583 Oct 2019 2019-10-01            10    2.864469                1 1169637.0
## 2584 Oct 2019 2019-10-01            10    2.736667                1 1169637.0
## 2585 Oct 2019 2019-10-01            10    1.915033                0 1169637.0
## 2586 Oct 2019 2019-10-01            10    2.678261                1 1169637.0
## 2587 Oct 2019 2019-10-01            10    2.343537                1 1169637.0
## 2588 Oct 2019 2019-10-01            10    2.540925                1 1169637.0
## 2589 Oct 2019 2019-10-01            10    2.560000                1 1169637.0
## 2590 Oct 2019 2019-10-01            10    2.569733                1 1169637.0
## 2591 Oct 2019 2019-10-01            10    1.642553                0 1169637.0
## 2592 Oct 2019 2019-10-01            10    2.590164                1 1169637.0
## 2593 Oct 2019 2019-10-01            10    2.481894                1 1174589.1
## 2594 Oct 2019 2019-10-01            10    2.688356                1 1174589.1
## 2595 Oct 2019 2019-10-01            10    2.776632                1 1174589.1
## 2596 Oct 2019 2019-10-01            10    2.645570                1 1174589.1
## 2597 Oct 2019 2019-10-01            10    2.433584                1 1174589.1
## 2598 Oct 2019 2019-10-01            10    2.663934                1 1174589.1
## 2599 Oct 2019 2019-10-01            10    2.528190                1 1174589.1
## 2600 Oct 2019 2019-10-01            10    2.704023                1 1174589.1
## 2601 Oct 2019 2019-10-01            10    2.638177                1 1175142.2
## 2602 Oct 2019 2019-10-01            10    1.690299                0 1175142.2
## 2603 Oct 2019 2019-10-01            10    2.700272                1 1175142.2
## 2604 Oct 2019 2019-10-01            10    2.494286                1 1174494.4
## 2605 Oct 2019 2019-10-01            10    1.913846                0 1174494.4
## 2606 Oct 2019 2019-10-01            10    2.696532                1 1174494.4
## 2607 Oct 2019 2019-10-01            10    2.522667                1 1176436.8
## 2608 Oct 2019 2019-10-01            10    2.522727                1 1176436.8
## 2609 Oct 2019 2019-10-01            10    2.674194                1 1176436.8
## 2610 Oct 2019 2019-10-01            10    2.564885                1 1176436.8
## 2611 Oct 2019 2019-10-01            10    2.715356                1 1176436.8
## 2612 Oct 2019 2019-10-01            10    2.582043                1 1176436.8
## 2613 Oct 2019 2019-10-01            10    2.690323                1 1176436.8
## 2614 Oct 2019 2019-10-01            10    2.459119                1 1176436.8
## 2615 Oct 2019 2019-10-01            10    2.762058                1 1176436.8
## 2616 Oct 2019 2019-10-01            10    2.608150                1 1176436.8
## 2617 Oct 2019 2019-10-01            10    2.691803                1 1176436.8
## 2618 Oct 2019 2019-10-01            10    2.681818                1 1176436.8
## 2619 Oct 2019 2019-10-01            10    2.667732                1 1176436.8
## 2620 Oct 2019 2019-10-01            10    2.518797                1 1176436.8
## 2621 Oct 2019 2019-10-01            10    2.671827                1 1176436.8
## 2622 Oct 2019 2019-10-01            10    2.695767                1 1176436.8
## 2623 Oct 2019 2019-10-01            10    2.641337                1 1176436.8
## 2624 Oct 2019 2019-10-01            10    2.718750                1 1176436.8
## 2625 Oct 2019 2019-10-01            10    2.592593                1 1176436.8
## 2626 Oct 2019 2019-10-01            10    2.696049                1 1176436.8
## 2627 Oct 2019 2019-10-01            10    2.478916                1 1176436.8
## 2628 Oct 2019 2019-10-01            10    2.429429                1 1176436.8
## 2629 Oct 2019 2019-10-01            10    2.633218                1 1176436.8
## 2630 Oct 2019 2019-10-01            10    2.589674                1 1176436.8
## 2631 Oct 2019 2019-10-01            10    2.543860                1 1176436.8
## 2632 Oct 2019 2019-10-01            10    2.602606                1 1176436.8
## 2633 Oct 2019 2019-10-01            10    2.972318                1 1058006.9
## 2634 Oct 2019 2019-10-01            10    1.908759                0 1171365.6
## 2635 Oct 2019 2019-10-01            10    1.694340                0 1171365.6
## 2636 Oct 2019 2019-10-01            10    2.755932                1 1171365.6
## 2637 Oct 2019 2019-10-01            10    1.825000                0 1171365.6
## 2638 Oct 2019 2019-10-01            10    2.643258                1 1171365.6
## 2639 Oct 2019 2019-10-01            10    2.674699                1 1171365.6
## 2640 Oct 2019 2019-10-01            10    1.618110                0 1171365.6
## 2641 Oct 2019 2019-10-01            10    2.039683                0 1171365.6
## 2642 Oct 2019 2019-10-01            10    1.719697                0 1171365.6
## 2643 Oct 2019 2019-10-01            10    2.084084                0 1152131.0
## 2644 Oct 2019 2019-10-01            10    1.974110                0 1152131.0
## 2645 Oct 2019 2019-10-01            10    2.506812                1 1152131.0
## 2646 Oct 2019 2019-10-01            10    2.569322                1 1152131.0
## 2647 Oct 2019 2019-10-01            10    2.565657                1 1152131.0
## 2648 Oct 2019 2019-10-01            10    2.651163                1 1152131.0
## 2649 Oct 2019 2019-10-01            10    1.681992                0 1152131.0
## 2650 Oct 2019 2019-10-01            10    1.766393                0 1152131.0
## 2651 Oct 2019 2019-10-01            10    1.886364                0 1152131.0
## 2652 Oct 2019 2019-10-01            10    2.643059                1 1152131.0
## 2653 Oct 2019 2019-10-01            10    2.524096                1 1152131.0
## 2654 Oct 2019 2019-10-01            10    2.740741                1 1152131.0
## 2655 Oct 2019 2019-10-01            10    1.661479                0 1152131.0
## 2656 Oct 2019 2019-10-01            10    2.525773                1 1152131.0
## 2657 Oct 2019 2019-10-01            10    2.680135                1 1152131.0
## 2658 Feb 2020 2020-02-01             2    2.648810                1  950508.0
## 2659 Feb 2020 2020-02-01             2    2.582822                1  950508.0
## 2660 Feb 2020 2020-02-01             2    2.698361                1  950508.0
## 2661 Feb 2020 2020-02-01             2    2.737705                1  950508.0
## 2662 Feb 2020 2020-02-01             2    2.654839                1  950508.0
## 2663 Feb 2020 2020-02-01             2    2.489489                1  950508.0
## 2664 Feb 2020 2020-02-01             2    2.254839                1  950508.0
## 2665 Feb 2020 2020-02-01             2    2.670695                1  950508.0
## 2666 Feb 2020 2020-02-01             2    2.658863                1  950508.0
## 2667 Feb 2020 2020-02-01             2    2.739286                1  950508.0
## 2668 Feb 2020 2020-02-01             2    2.782609                1  950508.0
## 2669 Feb 2020 2020-02-01             2    2.797980                1  950508.0
## 2670 Feb 2020 2020-02-01             2    2.423469                1  950508.0
## 2671 Feb 2020 2020-02-01             2    2.504823                1  950508.0
## 2672 Feb 2020 2020-02-01             2    2.642857                1  950508.0
## 2673 Feb 2020 2020-02-01             2    2.564356                1  950508.0
## 2674 Feb 2020 2020-02-01             2    2.619883                1  950508.0
## 2675 Feb 2020 2020-02-01             2    2.724432                1  950508.0
## 2676 Feb 2020 2020-02-01             2    2.392405                1  950508.0
## 2677 Feb 2020 2020-02-01             2    2.375000                1  950508.0
## 2678 Feb 2020 2020-02-01             2    2.685430                1  950508.0
## 2679 Feb 2020 2020-02-01             2    2.276056                1  950508.0
## 2680 Feb 2020 2020-02-01             2    2.772414                1  950508.0
## 2681 Feb 2020 2020-02-01             2    2.410876                1  950508.0
## 2682 Feb 2020 2020-02-01             2    2.506369                1  950508.0
## 2683 Feb 2020 2020-02-01             2    2.510703                1  950508.0
## 2684 Feb 2020 2020-02-01             2    2.628975                1  950508.0
## 2685 Feb 2020 2020-02-01             2    2.309904                1  950508.0
## 2686 Feb 2020 2020-02-01             2    2.292899                1  950508.0
## 2687 Feb 2020 2020-02-01             2    2.500000                1  950508.0
## 2688 Feb 2020 2020-02-01             2    2.380240                1  950508.0
## 2689 Feb 2020 2020-02-01             2    2.471751                1  950508.0
## 2690 Feb 2020 2020-02-01             2    2.662791                1  950508.0
## 2691 Feb 2020 2020-02-01             2    2.690554                1  950508.0
## 2692 Feb 2020 2020-02-01             2    2.626582                1  950508.0
## 2693 Feb 2020 2020-02-01             2    2.688312                1  950508.0
## 2694 Feb 2020 2020-02-01             2    2.640845                1 1155600.4
## 2695 Feb 2020 2020-02-01             2    2.528796                1 1155600.4
## 2696 Feb 2020 2020-02-01             2    2.671388                1 1155600.4
## 2697 Feb 2020 2020-02-01             2    2.647458                1 1155600.4
## 2698 Feb 2020 2020-02-01             2    2.689349                1 1155600.4
## 2699 Feb 2020 2020-02-01             2    2.792727                1 1155600.4
## 2700 Feb 2020 2020-02-01             2    2.776471                1 1155600.4
## 2701 Feb 2020 2020-02-01             2    2.641176                1 1155600.4
## 2702 Feb 2020 2020-02-01             2    2.507418                1 1155600.4
## 2703 Feb 2020 2020-02-01             2    2.527273                1 1155600.4
## 2704 Feb 2020 2020-02-01             2    2.329193                1 1155600.4
## 2705 Feb 2020 2020-02-01             2    2.576208                1 1155600.4
## 2706 Feb 2020 2020-02-01             2    2.906615                1 1155600.4
## 2707 Feb 2020 2020-02-01             2    2.511450                1 1155600.4
## 2708 Feb 2020 2020-02-01             2    2.513846                1 1155600.4
## 2709 Feb 2020 2020-02-01             2    2.596825                1 1155600.4
## 2710 Feb 2020 2020-02-01             2    2.789137                1 1155600.4
## 2711 Feb 2020 2020-02-01             2    2.756863                1 1155600.4
## 2712 Feb 2020 2020-02-01             2    2.632727                1 1155600.4
## 2713 Feb 2020 2020-02-01             2    2.612698                1 1155600.4
## 2714 Feb 2020 2020-02-01             2    2.825000                1 1155600.4
## 2715 Feb 2020 2020-02-01             2    2.765957                1 1155600.4
## 2716 Feb 2020 2020-02-01             2    2.667763                1 1155600.4
## 2717 Feb 2020 2020-02-01             2    2.482759                1 1155600.4
## 2718 Feb 2020 2020-02-01             2    2.776978                1 1155600.4
## 2719 Feb 2020 2020-02-01             2    2.724528                1 1155600.4
## 2720 Feb 2020 2020-02-01             2    2.656716                1 1155600.4
## 2721 Feb 2020 2020-02-01             2    2.506024                1 1155600.4
## 2722 Feb 2020 2020-02-01             2    1.734426                0 1155600.4
## 2723 Feb 2020 2020-02-01             2    1.657718                0 1155600.4
## 2724 Feb 2020 2020-02-01             2    1.895307                0 1155600.4
## 2725 Feb 2020 2020-02-01             2    2.567474                1 1155600.4
## 2726 Feb 2020 2020-02-01             2    2.652308                1 1155600.4
## 2727 Feb 2020 2020-02-01             2    2.280769                0 1155600.4
## 2728 Feb 2020 2020-02-01             2    1.817490                0 1155600.4
## 2729 Feb 2020 2020-02-01             2    1.804781                0 1155600.4
## 2730 Feb 2020 2020-02-01             2    1.681063                0 1155600.4
## 2731 Feb 2020 2020-02-01             2    2.784314                1 1155600.4
## 2732 Feb 2020 2020-02-01             2    2.718310                1 1155600.4
## 2733 Feb 2020 2020-02-01             2    2.726974                1 1155600.4
## 2734 Feb 2020 2020-02-01             2    2.705167                1 1155600.4
## 2735 Feb 2020 2020-02-01             2    2.697749                1 1155600.4
## 2736 Feb 2020 2020-02-01             2    2.671975                1 1162614.0
## 2737 Feb 2020 2020-02-01             2    2.608808                1 1162614.0
## 2738 Feb 2020 2020-02-01             2    2.493225                1 1162614.0
## 2739 Feb 2020 2020-02-01             2    2.893382                1 1162614.0
## 2740 Feb 2020 2020-02-01             2    2.623377                1 1165438.9
## 2741 Feb 2020 2020-02-01             2    2.636637                1 1165438.9
## 2742 Feb 2020 2020-02-01             2    2.653465                1 1165438.9
## 2743 Feb 2020 2020-02-01             2    2.626263                1 1165438.9
## 2744 Feb 2020 2020-02-01             2    2.469208                1 1165438.9
## 2745 Feb 2020 2020-02-01             2    2.704735                1 1165438.9
## 2746 Feb 2020 2020-02-01             2    2.531507                1 1162614.0
## 2747 Feb 2020 2020-02-01             2    2.605505                1 1162614.0
## 2748 Feb 2020 2020-02-01             2    2.870432                1 1162614.0
## 2749 Feb 2020 2020-02-01             2    2.608150                1 1162614.0
## 2750 Feb 2020 2020-02-01             2    2.516517                1 1165438.9
## 2751 Feb 2020 2020-02-01             2    2.833887                1 1165438.9
## 2752 Feb 2020 2020-02-01             2    2.613208                1 1165438.9
## 2753 Feb 2020 2020-02-01             2    2.709459                1 1165438.9
## 2754 Feb 2020 2020-02-01             2    2.723214                1 1162614.0
## 2755 Feb 2020 2020-02-01             2    2.800664                1 1162614.0
## 2756 Feb 2020 2020-02-01             2    2.537975                1 1162614.0
## 2757 Feb 2020 2020-02-01             2    2.507003                1 1162614.0
## 2758 Feb 2020 2020-02-01             2    2.711974                1 1162614.0
## 2759 Feb 2020 2020-02-01             2    2.685619                1 1165438.9
## 2760 Feb 2020 2020-02-01             2    2.593668                1 1165438.9
## 2761 Feb 2020 2020-02-01             2    2.861842                1 1165438.9
## 2762 Feb 2020 2020-02-01             2    2.598726                1 1165438.9
## 2763 Feb 2020 2020-02-01             2    2.656766                1 1162614.0
## 2764 Feb 2020 2020-02-01             2    2.745098                1 1162614.0
## 2765 Feb 2020 2020-02-01             2    2.715232                1 1162614.0
## 2766 Feb 2020 2020-02-01             2    2.878963                1 1162614.0
## 2767 Feb 2020 2020-02-01             2    2.600649                1 1162614.0
## 2768 Feb 2020 2020-02-01             2    2.688679                1 1165438.9
## 2769 Feb 2020 2020-02-01             2    2.719033                1 1165438.9
## 2770 Feb 2020 2020-02-01             2    2.554896                1 1165438.9
## 2771 Feb 2020 2020-02-01             2    2.562300                1 1165438.9
## 2772 Feb 2020 2020-02-01             2    2.588050                1 1162614.0
## 2773 Feb 2020 2020-02-01             2    2.624615                1 1162614.0
## 2774 Feb 2020 2020-02-01             2    2.626866                1 1162614.0
## 2775 Feb 2020 2020-02-01             2    2.665635                1 1162614.0
## 2776 Feb 2020 2020-02-01             2    2.692308                1 1162614.0
## 2777 Feb 2020 2020-02-01             2    2.467857                1 1165438.9
## 2778 Feb 2020 2020-02-01             2    2.726236                1 1165438.9
## 2779 Feb 2020 2020-02-01             2    2.682927                1 1165438.9
## 2780 Feb 2020 2020-02-01             2    1.722222                0 1165438.3
## 2781 Feb 2020 2020-02-01             2    1.794118                0 1165438.3
## 2782 Feb 2020 2020-02-01             2    2.068702                0 1165438.3
## 2783 Feb 2020 2020-02-01             2    1.698842                0 1165438.3
## 2784 Feb 2020 2020-02-01             2    2.102473                0 1165438.3
## 2785 Feb 2020 2020-02-01             2    1.698842                0 1165438.3
## 2786 Feb 2020 2020-02-01             2    1.649635                0 1165438.3
## 2787 Feb 2020 2020-02-01             2    1.487805                0 1165438.3
## 2788 Feb 2020 2020-02-01             2    1.486068                0 1165438.3
## 2789 Feb 2020 2020-02-01             2    1.690000                0 1165438.3
## 2790 Feb 2020 2020-02-01             2    1.660194                0 1165438.3
## 2791 Feb 2020 2020-02-01             2    1.687943                0 1165438.3
## 2792 Feb 2020 2020-02-01             2    1.784387                0 1165438.3
## 2793 Feb 2020 2020-02-01             2    1.794521                0 1165438.3
## 2794 Feb 2020 2020-02-01             2    1.663194                0 1165438.3
## 2795 Feb 2020 2020-02-01             2    1.884000                0 1165438.3
## 2796 Feb 2020 2020-02-01             2    1.632143                0 1165438.3
## 2797 Feb 2020 2020-02-01             2    1.582031                0 1165438.3
## 2798 Feb 2020 2020-02-01             2    1.695833                0 1165438.3
## 2799 Feb 2020 2020-02-01             2    1.659574                0 1165438.3
## 2800 Feb 2020 2020-02-01             2    1.906977                0 1165438.3
## 2801 Feb 2020 2020-02-01             2    1.718750                0 1165438.3
## 2802 Feb 2020 2020-02-01             2    1.658228                0 1165438.3
## 2803 Feb 2020 2020-02-01             2    2.607345                1 1165438.3
## 2804 Feb 2020 2020-02-01             2    1.726688                0 1165438.3
## 2805 Feb 2020 2020-02-01             2    1.724528                0 1165438.3
## 2806 Feb 2020 2020-02-01             2    1.764085                0 1165438.3
## 2807 Feb 2020 2020-02-01             2    1.673993                0 1165438.3
## 2808 Feb 2020 2020-02-01             2    2.558333                1 1165438.3
## 2809 Feb 2020 2020-02-01             2    1.650847                0 1165438.3
## 2810 Feb 2020 2020-02-01             2    1.856164                1 1165438.3
## 2811 Feb 2020 2020-02-01             2    2.534591                1 1165438.3
## 2812 Feb 2020 2020-02-01             2    2.743333                1 1058006.9
## 2813 Feb 2020 2020-02-01             2    2.633423                1 1058006.9
## 2814 Feb 2020 2020-02-01             2    2.786982                1 1058006.9
## 2815 Feb 2020 2020-02-01             2    2.802013                1 1058006.9
## 2816 Feb 2020 2020-02-01             2    2.625000                1 1058006.9
## 2817 Feb 2020 2020-02-01             2    3.009375                1 1058006.9
## 2818 Feb 2020 2020-02-01             2    2.886850                1 1058006.9
## 2819 Feb 2020 2020-02-01             2    2.630058                1 1058006.9
## 2820 Feb 2020 2020-02-01             2    2.568702                1 1058006.9
## 2821 Feb 2020 2020-02-01             2    2.708824                1 1058006.9
## 2822 Feb 2020 2020-02-01             2    2.950820                1 1058006.9
## 2823 Feb 2020 2020-02-01             2    2.876972                1 1058006.9
## 2824 Feb 2020 2020-02-01             2    2.883721                1 1058006.9
## 2825 Feb 2020 2020-02-01             2    2.775920                1 1058006.9
## 2826 Feb 2020 2020-02-01             2    2.713873                1 1058006.9
## 2827 Feb 2020 2020-02-01             2    2.540070                1 1058006.9
## 2828 Feb 2020 2020-02-01             2    2.508929                1 1058006.9
## 2829 Feb 2020 2020-02-01             2    2.840580                1 1058006.9
## 2830 Feb 2020 2020-02-01             2    2.900000                1 1058006.9
## 2831 Feb 2020 2020-02-01             2    2.746479                1 1058006.9
## 2832 Feb 2020 2020-02-01             2    2.654987                1 1058006.9
## 2833 Feb 2020 2020-02-01             2    2.659722                1 1058006.9
## 2834 Feb 2020 2020-02-01             2    2.721831                1 1058006.9
## 2835 Feb 2020 2020-02-01             2    2.827893                1 1058006.9
## 2836 Feb 2020 2020-02-01             2    2.557103                1 1058006.9
## 2837 Feb 2020 2020-02-01             2    2.672297                1 1058006.9
## 2838 Feb 2020 2020-02-01             2    2.642442                1 1058006.9
## 2839 Feb 2020 2020-02-01             2    2.642857                1 1058006.9
## 2840 Feb 2020 2020-02-01             2    2.520000                1 1058006.9
## 2841 Feb 2020 2020-02-01             2    2.589831                1 1058006.9
## 2842 Feb 2020 2020-02-01             2    2.786667                1 1058006.9
## 2843 Feb 2020 2020-02-01             2    2.506711                1 1058006.9
## 2844 Feb 2020 2020-02-01             2    2.773885                1 1058006.9
## 2845 Feb 2020 2020-02-01             2    2.706485                1 1058006.9
## 2846 Feb 2020 2020-02-01             2    2.708571                1 1058006.9
## 2847 Feb 2020 2020-02-01             2    2.677193                1 1058006.9
## 2848 Feb 2020 2020-02-01             2    2.657609                1 1058006.9
## 2849 Feb 2020 2020-02-01             2    2.801471                1 1058006.9
## 2850 Feb 2020 2020-02-01             2    2.859649                1 1058006.9
## 2851 Feb 2020 2020-02-01             2    2.410256                1 1058006.9
## 2852 Feb 2020 2020-02-01             2    2.707447                1 1058006.9
## 2853 Feb 2020 2020-02-01             2    2.777409                1 1058006.9
## 2854 Feb 2020 2020-02-01             2    2.612426                1 1058006.9
## 2855 Feb 2020 2020-02-01             2    2.694631                1 1033819.8
## 2856 Feb 2020 2020-02-01             2    2.608939                1 1033819.8
## 2857 Feb 2020 2020-02-01             2    2.831034                1 1033819.8
## 2858 Feb 2020 2020-02-01             2    2.696697                1 1033819.8
## 2859 Feb 2020 2020-02-01             2    2.631098                1 1033819.8
## 2860 Feb 2020 2020-02-01             2    2.648968                1 1033819.8
## 2861 Feb 2020 2020-02-01             2    2.782477                1 1033819.8
## 2862 Feb 2020 2020-02-01             2    2.615917                1 1033819.8
## 2863 Feb 2020 2020-02-01             2    2.854478                1 1033819.8
## 2864 Feb 2020 2020-02-01             2    2.730556                1 1033819.8
## 2865 Feb 2020 2020-02-01             2    2.934307                1 1033819.8
## 2866 Feb 2020 2020-02-01             2    2.635452                1 1033819.8
## 2867 Feb 2020 2020-02-01             2    2.649852                1 1033819.8
## 2868 Feb 2020 2020-02-01             2    2.648725                1 1033819.8
## 2869 Feb 2020 2020-02-01             2    2.735905                1 1033819.8
## 2870 Feb 2020 2020-02-01             2    2.649682                1 1033819.8
## 2871 Feb 2020 2020-02-01             2    2.628289                1 1033819.8
## 2872 Feb 2020 2020-02-01             2    2.496914                1 1033819.8
## 2873 Feb 2020 2020-02-01             2    2.571429                1 1033819.8
## 2874 Feb 2020 2020-02-01             2    2.595016                1 1033819.8
## 2875 Feb 2020 2020-02-01             2    2.792388                1 1033819.8
## 2876 Feb 2020 2020-02-01             2    2.537190                1 1033819.8
## 2877 Feb 2020 2020-02-01             2    2.786207                1 1033819.8
## 2878 Feb 2020 2020-02-01             2    2.677326                1 1033819.8
## 2879 Feb 2020 2020-02-01             2    2.835125                1 1033819.8
## 2880 Feb 2020 2020-02-01             2    2.586957                1 1033819.8
## 2881 Feb 2020 2020-02-01             2    2.750000                1 1033819.8
## 2882 Feb 2020 2020-02-01             2    2.660000                1 1033819.8
## 2883 Feb 2020 2020-02-01             2    2.797753                1 1033819.8
## 2884 Feb 2020 2020-02-01             2    2.849398                1 1033819.8
## 2885 Feb 2020 2020-02-01             2    2.783537                1 1033819.8
## 2886 Feb 2020 2020-02-01             2    2.665738                1 1033819.8
## 2887 Feb 2020 2020-02-01             2    2.670175                1 1033819.8
## 2888 Feb 2020 2020-02-01             2    1.726236                0 1033819.8
## 2889 Feb 2020 2020-02-01             2    2.715170                1 1033819.8
## 2890 Feb 2020 2020-02-01             2    2.631068                1 1033819.8
## 2891 Feb 2020 2020-02-01             2    2.832787                1 1033819.8
## 2892 Feb 2020 2020-02-01             2    2.577061                1 1033819.8
## 2893 Feb 2020 2020-02-01             2    2.717262                1 1033819.8
## 2894 Feb 2020 2020-02-01             2    2.750799                1 1033819.8
## 2895 Feb 2020 2020-02-01             2    2.564972                1 1033819.8
## 2896 Feb 2020 2020-02-01             2    2.791946                1 1033819.8
## 2897 Feb 2020 2020-02-01             2    2.571429                1 1033819.8
## 2898 Feb 2020 2020-02-01             2    2.861111                1 1033819.8
## 2899 Feb 2020 2020-02-01             2    2.636111                1 1033819.8
## 2900 Feb 2020 2020-02-01             2    3.033582                1 1033819.8
## 2901 Feb 2020 2020-02-01             2    2.388060                1 1033819.8
## 2902 Feb 2020 2020-02-01             2    2.575931                1 1033819.8
## 2903 Feb 2020 2020-02-01             2    2.703947                1 1033819.8
## 2904 Feb 2020 2020-02-01             2    2.751748                1 1033819.8
## 2905 Feb 2020 2020-02-01             2    2.513605                1 1000227.9
## 2906 Feb 2020 2020-02-01             2    2.521084                1 1000227.9
## 2907 Feb 2020 2020-02-01             2    2.839858                1 1000227.9
## 2908 Feb 2020 2020-02-01             2    2.848993                1 1000227.9
## 2909 Feb 2020 2020-02-01             2    2.615385                1 1000227.9
## 2910 Feb 2020 2020-02-01             2    2.551370                1 1000227.9
## 2911 Feb 2020 2020-02-01             2    2.401639                1 1000227.9
## 2912 Feb 2020 2020-02-01             2    2.707071                1 1000227.9
## 2913 Feb 2020 2020-02-01             2    2.588406                1 1000227.9
## 2914 Feb 2020 2020-02-01             2    2.667702                1 1000227.9
## 2915 Feb 2020 2020-02-01             2    2.551471                1 1000227.9
## 2916 Feb 2020 2020-02-01             2    2.770968                1 1000227.9
## 2917 Feb 2020 2020-02-01             2    2.671429                1 1000227.9
## 2918 Feb 2020 2020-02-01             2    2.819728                1 1000227.9
## 2919 Feb 2020 2020-02-01             2    1.857664                0 1000227.9
## 2920 Feb 2020 2020-02-01             2    2.656667                1 1000227.9
## 2921 Feb 2020 2020-02-01             2    2.518405                1 1000227.9
## 2922 Feb 2020 2020-02-01             2    2.682432                1 1000227.9
## 2923 Feb 2020 2020-02-01             2    2.683386                1 1000227.9
## 2924 Feb 2020 2020-02-01             2    2.664653                1 1000227.9
## 2925 Feb 2020 2020-02-01             2    2.820069                1 1000227.9
## 2926 Feb 2020 2020-02-01             2    2.795987                1 1000227.9
## 2927 Feb 2020 2020-02-01             2    2.745665                1 1000227.9
## 2928 Feb 2020 2020-02-01             2    2.642651                1 1000227.9
## 2929 Feb 2020 2020-02-01             2    2.564516                1 1000227.9
## 2930 Feb 2020 2020-02-01             2    2.424332                1 1000227.9
## 2931 Feb 2020 2020-02-01             2    1.732639                0 1000227.9
## 2932 Feb 2020 2020-02-01             2    2.659016                1 1000227.9
## 2933 Feb 2020 2020-02-01             2    2.466216                1 1000227.9
## 2934 Feb 2020 2020-02-01             2    2.648276                1 1175161.2
## 2935 Feb 2020 2020-02-01             2    2.823129                1 1175161.2
## 2936 Feb 2020 2020-02-01             2    2.579125                1 1175161.2
## 2937 Feb 2020 2020-02-01             2    2.592593                1 1175161.2
## 2938 Feb 2020 2020-02-01             2    2.654971                1 1175161.2
## 2939 Feb 2020 2020-02-01             2    2.627907                1 1171365.6
## 2940 Feb 2020 2020-02-01             2    2.456338                1 1171365.6
## 2941 Feb 2020 2020-02-01             2    2.610345                1 1171365.6
## 2942 Feb 2020 2020-02-01             2    2.543624                1 1171365.6
## 2943 Feb 2020 2020-02-01             2    2.509202                1 1171365.6
## 2944 Feb 2020 2020-02-01             2    2.547692                1 1174577.1
## 2945 Feb 2020 2020-02-01             2    2.635593                1 1174577.1
## 2946 Feb 2020 2020-02-01             2    2.482249                1 1174577.1
## 2947 Feb 2020 2020-02-01             2    2.640000                1 1174577.1
## 2948 Feb 2020 2020-02-01             2    2.525084                1 1174577.1
## 2949 Feb 2020 2020-02-01             2    2.645161                1 1169258.9
## 2950 Feb 2020 2020-02-01             2    2.560261                1 1169258.9
## 2951 Feb 2020 2020-02-01             2    2.645390                1 1169258.9
## 2952 Feb 2020 2020-02-01             2    2.603217                1 1176431.5
## 2953 Feb 2020 2020-02-01             2    2.578313                1 1176431.5
## 2954 Feb 2020 2020-02-01             2    2.654605                1 1176431.5
## 2955 Feb 2020 2020-02-01             2    2.462644                1 1172960.7
## 2956 Feb 2020 2020-02-01             2    2.531646                1 1172960.7
## 2957 Feb 2020 2020-02-01             2    2.612795                1 1172960.7
## 2958 Feb 2020 2020-02-01             2    2.606498                1 1172960.7
## 2959 Feb 2020 2020-02-01             2    2.652308                1 1172960.7
## 2960 Feb 2020 2020-02-01             2    2.352349                1 1169689.2
## 2961 Feb 2020 2020-02-01             2    2.484950                1 1169689.2
## 2962 Feb 2020 2020-02-01             2    2.666667                1 1169689.2
## 2963 Feb 2020 2020-02-01             2    2.618012                1 1169689.2
## 2964 Feb 2020 2020-02-01             2    2.658730                1 1174577.1
## 2965 Feb 2020 2020-02-01             2    2.732877                1 1174577.1
## 2966 Feb 2020 2020-02-01             2    2.552561                1 1174577.1
## 2967 Feb 2020 2020-02-01             2    2.775510                1 1175161.2
## 2968 Feb 2020 2020-02-01             2    2.744505                1 1175161.2
## 2969 Feb 2020 2020-02-01             2    2.516216                1 1175161.2
## 2970 Feb 2020 2020-02-01             2    2.721713                1 1175161.2
## 2971 Feb 2020 2020-02-01             2    2.584337                1 1169258.9
## 2972 Feb 2020 2020-02-01             2    2.596825                1 1169258.9
## 2973 Feb 2020 2020-02-01             2    2.580442                1 1169258.9
## 2974 Feb 2020 2020-02-01             2    2.664384                1 1169258.9
## 2975 Feb 2020 2020-02-01             2    2.609164                1 1169258.9
## 2976 Feb 2020 2020-02-01             2    2.566225                1 1172960.7
## 2977 Feb 2020 2020-02-01             2    2.528986                1 1172960.7
## 2978 Feb 2020 2020-02-01             2    2.607774                1 1172960.7
## 2979 Feb 2020 2020-02-01             2    2.786207                1 1172960.7
## 2980 Feb 2020 2020-02-01             2    2.797468                1 1172960.7
## 2981 Feb 2020 2020-02-01             2    2.666667                1 1176431.5
## 2982 Feb 2020 2020-02-01             2    2.518072                1 1176431.5
## 2983 Feb 2020 2020-02-01             2    2.633245                1 1176431.5
## 2984 Feb 2020 2020-02-01             2    2.565445                1 1175161.2
## 2985 Feb 2020 2020-02-01             2    2.549020                1 1175161.2
## 2986 Feb 2020 2020-02-01             2    2.896104                1 1175161.2
## 2987 Feb 2020 2020-02-01             2    2.604096                1 1175161.2
## 2988 Feb 2020 2020-02-01             2    2.552553                1 1171365.6
## 2989 Feb 2020 2020-02-01             2    2.644654                1 1171365.6
## 2990 Feb 2020 2020-02-01             2    2.692529                1 1171365.6
## 2991 Feb 2020 2020-02-01             2    2.710884                1 1171365.6
## 2992 Feb 2020 2020-02-01             2    2.709343                1 1174577.1
## 2993 Feb 2020 2020-02-01             2    2.717532                1 1174577.1
## 2994 Feb 2020 2020-02-01             2    2.625000                1 1174577.1
## 2995 Feb 2020 2020-02-01             2    2.612299                1 1174577.1
## 2996 Feb 2020 2020-02-01             2    2.781350                1 1174577.1
## 2997 Feb 2020 2020-02-01             2    3.068966                1 1169258.9
## 2998 Feb 2020 2020-02-01             2    2.493188                1 1169258.9
## 2999 Feb 2020 2020-02-01             2    2.375451                1 1169258.9
## 3000 Feb 2020 2020-02-01             2    2.695035                1 1169258.9
## 3001 Feb 2020 2020-02-01             2    2.615625                1 1169258.9
## 3002 Feb 2020 2020-02-01             2    2.710526                1 1172960.7
## 3003 Feb 2020 2020-02-01             2    2.488571                1 1172960.7
## 3004 Feb 2020 2020-02-01             2    2.561873                1 1172960.7
## 3005 Feb 2020 2020-02-01             2    2.542955                1 1169689.2
## 3006 Feb 2020 2020-02-01             2    2.690852                1 1169689.2
## 3007 Feb 2020 2020-02-01             2    2.655949                1 1169689.2
## 3008 Feb 2020 2020-02-01             2    2.666667                1 1169689.2
## 3009 Feb 2020 2020-02-01             2    2.603960                1 1169689.2
## 3010 Feb 2020 2020-02-01             2    2.514745                1 1175161.2
## 3011 Feb 2020 2020-02-01             2    2.517341                1 1175161.2
## 3012 Feb 2020 2020-02-01             2    2.692053                1 1175161.2
## 3013 Feb 2020 2020-02-01             2    2.643750                1 1175161.2
## 3014 Feb 2020 2020-02-01             2    2.541916                1 1175161.2
## 3015 Feb 2020 2020-02-01             2    2.542500                1 1175161.2
## 3016 Feb 2020 2020-02-01             2    2.554098                1 1175161.2
## 3017 Feb 2020 2020-02-01             2    2.600567                1 1175161.2
## 3018 Feb 2020 2020-02-01             2    2.621538                1 1175161.2
## 3019 Feb 2020 2020-02-01             2    2.671429                1 1175161.2
## 3020 Feb 2020 2020-02-01             2    2.774306                1 1171365.6
## 3021 Feb 2020 2020-02-01             2    2.630662                1 1171365.6
## 3022 Feb 2020 2020-02-01             2    2.491228                1 1171365.6
## 3023 Feb 2020 2020-02-01             2    2.681416                1 1171365.6
## 3024 Feb 2020 2020-02-01             2    2.551495                1 1171365.6
## 3025 Feb 2020 2020-02-01             2    2.581662                1 1174577.1
## 3026 Feb 2020 2020-02-01             2    2.227273                1 1174577.1
## 3027 Feb 2020 2020-02-01             2    2.486239                1 1169258.9
## 3028 Feb 2020 2020-02-01             2    2.742574                1 1169258.9
## 3029 Feb 2020 2020-02-01             2    1.986755                0 1169258.9
## 3030 Feb 2020 2020-02-01             2    2.664557                1 1172960.7
## 3031 Feb 2020 2020-02-01             2    2.839041                1 1172960.7
## 3032 Feb 2020 2020-02-01             2    2.627517                1 1172960.7
## 3033 Feb 2020 2020-02-01             2    2.617940                1 1169689.2
## 3034 Feb 2020 2020-02-01             2    2.585455                1 1169689.2
## 3035 Feb 2020 2020-02-01             2    2.706422                1 1169689.2
## 3036 Feb 2020 2020-02-01             2    2.474265                1 1169689.2
## 3037 Feb 2020 2020-02-01             2    2.472789                1 1169689.2
## 3038 Feb 2020 2020-02-01             2    2.579710                1 1169689.2
## 3039 Feb 2020 2020-02-01             2    2.590580                1 1169689.2
## 3040 Feb 2020 2020-02-01             2    2.433735                1 1169689.2
## 3041 Feb 2020 2020-02-01             2    2.715909                1 1169689.2
## 3042 Feb 2020 2020-02-01             2    2.637195                1 1169689.2
## 3043 Feb 2020 2020-02-01             2    2.560403                1 1169689.2
## 3044 Feb 2020 2020-02-01             2    2.635379                1 1169689.2
## 3045 Feb 2020 2020-02-01             2    2.530675                1 1169689.2
## 3046 Feb 2020 2020-02-01             2    2.761290                1 1169689.2
## 3047 Feb 2020 2020-02-01             2    2.783333                1 1169689.2
## 3048 Feb 2020 2020-02-01             2    2.670213                1 1169689.2
## 3049 Feb 2020 2020-02-01             2    2.756014                1 1169689.2
## 3050 Feb 2020 2020-02-01             2    2.613636                1 1169689.2
## 3051 Feb 2020 2020-02-01             2    2.401961                1 1169689.2
## 3052 Feb 2020 2020-02-01             2    2.507553                1 1169689.2
## 3053 Feb 2020 2020-02-01             2    2.643123                1 1169689.2
## 3054 Feb 2020 2020-02-01             2    2.734426                1 1171365.6
## 3055 Feb 2020 2020-02-01             2    2.601375                1 1171365.6
## 3056 Feb 2020 2020-02-01             2    2.626230                1 1171365.6
## 3057 Feb 2020 2020-02-01             2    2.633094                1 1171365.6
## 3058 Feb 2020 2020-02-01             2    2.435644                1 1171365.6
## 3059 Feb 2020 2020-02-01             2    2.559871                1 1171365.6
## 3060 Feb 2020 2020-02-01             2    2.695652                1 1175161.2
## 3061 Feb 2020 2020-02-01             2    2.658784                1 1175161.2
## 3062 Feb 2020 2020-02-01             2    2.644951                1 1175161.2
## 3063 Feb 2020 2020-02-01             2    2.652174                1 1175161.2
## 3064 Feb 2020 2020-02-01             2    2.603960                1 1175161.2
## 3065 Feb 2020 2020-02-01             2    2.665672                1 1175161.2
## 3066 Feb 2020 2020-02-01             2    2.706371                1 1175161.2
## 3067 Feb 2020 2020-02-01             2    2.776978                1 1175161.2
## 3068 Feb 2020 2020-02-01             2    2.661677                1 1174577.1
## 3069 Feb 2020 2020-02-01             2    2.745704                1 1174577.1
## 3070 Feb 2020 2020-02-01             2    2.518519                1 1174577.1
## 3071 Feb 2020 2020-02-01             2    2.682759                1 1174577.1
## 3072 Feb 2020 2020-02-01             2    2.610169                1 1175161.2
## 3073 Feb 2020 2020-02-01             2    2.773973                1 1175161.2
## 3074 Feb 2020 2020-02-01             2    2.426513                1 1175161.2
## 3075 Feb 2020 2020-02-01             2    2.500000                1 1175161.2
## 3076 Feb 2020 2020-02-01             2    2.077739                0 1175161.2
## 3077 Feb 2020 2020-02-01             2    2.695652                1 1175161.2
## 3078 Feb 2020 2020-02-01             2    2.096154                0 1169689.2
## 3079 Feb 2020 2020-02-01             2    2.708609                1 1169689.2
## 3080 Feb 2020 2020-02-01             2    1.898496                0 1169689.2
## 3081 Feb 2020 2020-02-01             2    1.655172                0 1169689.2
## 3082 Feb 2020 2020-02-01             2    1.625387                0 1169689.2
## 3083 Feb 2020 2020-02-01             2    2.021818                0 1169689.2
## 3084 Feb 2020 2020-02-01             2    2.506849                1 1169689.2
## 3085 Feb 2020 2020-02-01             2    1.485816                0 1169689.2
## 3086 Feb 2020 2020-02-01             2    1.591837                0 1169689.2
## 3087 Feb 2020 2020-02-01             2    1.753906                0 1169689.2
## 3088 Feb 2020 2020-02-01             2    1.808140                0 1169689.2
## 3089 Feb 2020 2020-02-01             2    1.587629                0 1169689.2
## 3090 Feb 2020 2020-02-01             2    1.638393                0 1169689.2
## 3091 Feb 2020 2020-02-01             2    2.562937                1 1169689.2
## 3092 Feb 2020 2020-02-01             2    2.491620                1 1172960.7
## 3093 Feb 2020 2020-02-01             2    2.516667                1 1172960.7
## 3094 Feb 2020 2020-02-01             2    2.556667                1 1172960.7
## 3095 Feb 2020 2020-02-01             2    2.821561                1 1172960.7
## 3096 Feb 2020 2020-02-01             2    1.663121                0 1176431.9
## 3097 Feb 2020 2020-02-01             2    1.618729                0 1176431.9
## 3098 Feb 2020 2020-02-01             2    1.834677                0 1176431.9
## 3099 Feb 2020 2020-02-01             2    1.686792                0 1176431.9
## 3100 Feb 2020 2020-02-01             2    2.550409                1 1176431.9
## 3101 Feb 2020 2020-02-01             2    2.296407                1 1176431.9
## 3102 Feb 2020 2020-02-01             2    2.515723                1 1176431.9
## 3103 Feb 2020 2020-02-01             2    2.609756                1 1176431.9
## 3104 Feb 2020 2020-02-01             2    1.696370                0 1171365.6
## 3105 Feb 2020 2020-02-01             2    1.709677                0 1171365.6
## 3106 Feb 2020 2020-02-01             2    1.635739                0 1171365.6
## 3107 Feb 2020 2020-02-01             2    1.527273                0 1171365.6
## 3108 Feb 2020 2020-02-01             2    1.846473                0 1171365.6
## 3109 Feb 2020 2020-02-01             2    1.905263                0 1171365.6
## 3110 Feb 2020 2020-02-01             2    1.586331                0 1171365.6
## 3111 Feb 2020 2020-02-01             2    1.738971                0 1171365.6
## 3112 Feb 2020 2020-02-01             2    1.695652                0 1171365.6
## 3113 Feb 2020 2020-02-01             2    1.520492                0 1171365.6
## 3114 Feb 2020 2020-02-01             2    1.507812                0 1171365.6
## 3115 Feb 2020 2020-02-01             2    1.562264                0 1171365.6
## 3116 Feb 2020 2020-02-01             2    1.751037                0 1171365.6
## 3117 Feb 2020 2020-02-01             2    1.531381                0 1171365.6
## 3118 Feb 2020 2020-02-01             2    1.569767                0 1169258.1
## 3119 Feb 2020 2020-02-01             2    1.673981                0 1169258.1
## 3120 Feb 2020 2020-02-01             2    2.098765                0 1169258.1
## 3121 Feb 2020 2020-02-01             2    1.653137                0 1169258.1
## 3122 Feb 2020 2020-02-01             2    1.596491                0 1169258.1
## 3123 Feb 2020 2020-02-01             2    1.704050                0 1169258.1
## 3124 Feb 2020 2020-02-01             2    1.521429                0 1169258.1
## 3125 Feb 2020 2020-02-01             2    1.813187                0 1169258.1
## 3126 Feb 2020 2020-02-01             2    1.751938                0 1169258.1
## 3127 Feb 2020 2020-02-01             2    1.666667                0 1169258.1
## 3128 Feb 2020 2020-02-01             2    1.745875                0 1169258.1
## 3129 Feb 2020 2020-02-01             2    1.576052                0 1169258.1
## 3130 Feb 2020 2020-02-01             2    1.626866                0 1169258.1
## 3131 Feb 2020 2020-02-01             2    2.589189                1 1169258.1
## 3132 Feb 2020 2020-02-01             2    1.675573                0 1169258.1
## 3133 Feb 2020 2020-02-01             2    1.669492                0 1169258.1
## 3134 Feb 2020 2020-02-01             2    1.549801                0 1169258.1
## 3135 Feb 2020 2020-02-01             2    1.607914                0 1169258.1
## 3136 Feb 2020 2020-02-01             2    2.510638                1 1169258.1
## 3137 Feb 2020 2020-02-01             2    1.836177                0 1174577.1
## 3138 Feb 2020 2020-02-01             2    1.667752                0 1174577.1
## 3139 Feb 2020 2020-02-01             2    1.761566                0 1174577.1
## 3140 Feb 2020 2020-02-01             2    1.553459                0 1174577.1
## 3141 Feb 2020 2020-02-01             2    1.714286                0 1174577.1
## 3142 Feb 2020 2020-02-01             2    1.584775                0 1174577.1
## 3143 Feb 2020 2020-02-01             2    2.649231                1 1174577.1
## 3144 Feb 2020 2020-02-01             2    1.712644                0 1174577.1
## 3145 Feb 2020 2020-02-01             2    1.597270                0 1174577.1
## 3146 Feb 2020 2020-02-01             2    2.612500                1 1174577.1
## 3147 Feb 2020 2020-02-01             2    1.588435                0 1174577.1
## 3148 Feb 2020 2020-02-01             2    2.724138                1 1174577.1
## 3149 Feb 2020 2020-02-01             2    1.875000                0 1174577.1
## 3150 Feb 2020 2020-02-01             2    2.692308                1 1174577.1
## 3151 Feb 2020 2020-02-01             2    2.620779                1 1174577.1
## 3152 Feb 2020 2020-02-01             2    2.445230                1 1174577.1
## 3153 Feb 2020 2020-02-01             2    2.471751                1 1174577.1
## 3154 Feb 2020 2020-02-01             2    2.576803                1 1174577.1
## 3155 Feb 2020 2020-02-01             2    2.638365                1 1151501.0
## 3156 Feb 2020 2020-02-01             2    2.525641                1 1151501.0
## 3157 Feb 2020 2020-02-01             2    2.523810                1 1151501.0
## 3158 Feb 2020 2020-02-01             2    2.649832                1 1151501.0
## 3159 Feb 2020 2020-02-01             2    2.509036                1 1151501.0
## 3160 Feb 2020 2020-02-01             2    2.641447                1 1150191.4
## 3161 Feb 2020 2020-02-01             2    2.554945                1 1150191.4
## 3162 Feb 2020 2020-02-01             2    2.649718                1 1150191.4
## 3163 Feb 2020 2020-02-01             2    2.672566                1 1150191.4
## 3164 Feb 2020 2020-02-01             2    2.609756                1 1150191.4
## 3165 Feb 2020 2020-02-01             2    2.508152                1 1151501.0
## 3166 Feb 2020 2020-02-01             2    2.704180                1 1151501.0
## 3167 Feb 2020 2020-02-01             2    2.549575                1 1151501.0
## 3168 Feb 2020 2020-02-01             2    2.562500                1 1151501.0
## 3169 Feb 2020 2020-02-01             2    2.616822                1 1151501.0
## 3170 Feb 2020 2020-02-01             2    2.579114                1 1150191.4
## 3171 Feb 2020 2020-02-01             2    2.610224                1 1150191.4
## 3172 Feb 2020 2020-02-01             2    2.607362                1 1150191.4
## 3173 Feb 2020 2020-02-01             2    2.587744                1 1150191.4
## 3174 Feb 2020 2020-02-01             2    2.666667                1 1150191.4
## 3175 Feb 2020 2020-02-01             2    2.665574                1 1151501.0
## 3176 Feb 2020 2020-02-01             2    2.667732                1 1151501.0
## 3177 Feb 2020 2020-02-01             2    2.550898                1 1151501.0
## 3178 Feb 2020 2020-02-01             2    2.833333                1 1151501.0
## 3179 Feb 2020 2020-02-01             2    2.861486                1 1151501.0
## 3180 Feb 2020 2020-02-01             2    2.627660                1 1150191.4
## 3181 Feb 2020 2020-02-01             2    2.797203                1 1150191.4
## 3182 Feb 2020 2020-02-01             2    2.648649                1 1150191.4
## 3183 Feb 2020 2020-02-01             2    2.713043                1 1150191.4
## 3184 Feb 2020 2020-02-01             2    2.777778                1 1151501.0
## 3185 Feb 2020 2020-02-01             2    2.662500                1 1151501.0
## 3186 Feb 2020 2020-02-01             2    2.752542                1 1151501.0
## 3187 Feb 2020 2020-02-01             2    2.712025                1 1150191.4
## 3188 Feb 2020 2020-02-01             2    2.597222                1 1150191.4
## 3189 Feb 2020 2020-02-01             2    2.679412                1 1150191.4
## 3190 Feb 2020 2020-02-01             2    2.651877                1 1150191.4
## 3191 Feb 2020 2020-02-01             2    2.721088                1 1150191.4
## 3192 Feb 2020 2020-02-01             2    2.725632                1 1150191.4
## 3193 Feb 2020 2020-02-01             2    2.652568                1 1150191.4
## 3194 Feb 2020 2020-02-01             2    2.676976                1 1150191.4
## 3195 Feb 2020 2020-02-01             2    2.733333                1 1150191.4
## 3196 Feb 2020 2020-02-01             2    2.591900                1 1150191.4
## 3197 Feb 2020 2020-02-01             2    2.672026                1 1150191.4
## 3198 Feb 2020 2020-02-01             2    2.791086                1 1150191.4
## 3199 Feb 2020 2020-02-01             2    2.569697                1 1150191.4
## 3200 Feb 2020 2020-02-01             2    2.943925                1 1150191.4
## 3201 Feb 2020 2020-02-01             2    2.824627                1 1150191.4
## 3202 Feb 2020 2020-02-01             2    2.793103                1 1150191.4
## 3203 Feb 2020 2020-02-01             2    2.705696                1 1150191.4
## 3204 Feb 2020 2020-02-01             2    2.716981                1 1150191.4
## 3205 Feb 2020 2020-02-01             2    2.474916                1 1150191.4
## 3206 Feb 2020 2020-02-01             2    1.740310                0 1150191.4
## 3207 Feb 2020 2020-02-01             2    1.629482                0 1150191.4
## 3208 Feb 2020 2020-02-01             2    1.691781                0 1150191.4
## 3209 Feb 2020 2020-02-01             2    1.650190                0 1150191.4
## 3210 Feb 2020 2020-02-01             2    1.479876                0 1150191.4
## 3211 Feb 2020 2020-02-01             2    2.711712                1 1150191.4
## 3212 Feb 2020 2020-02-01             2    2.375000                1 1150191.4
## 3213 Feb 2020 2020-02-01             2    1.676692                0 1150191.4
## 3214 Feb 2020 2020-02-01             2    1.571930                0 1150191.4
## 3215 Feb 2020 2020-02-01             2    1.654709                0 1150191.4
## 3216 Feb 2020 2020-02-01             2    2.843636                1 1150191.4
## 3217 Feb 2020 2020-02-01             2    1.692810                0 1150191.4
## 3218 Feb 2020 2020-02-01             2    1.540193                0 1150191.4
## 3219 Feb 2020 2020-02-01             2    1.475758                0 1150191.4
## 3220 Feb 2020 2020-02-01             2    1.671642                0 1150191.4
## 3221 Feb 2020 2020-02-01             2    1.596000                0 1150191.4
## 3222 Feb 2020 2020-02-01             2    1.801724                0 1150191.4
## 3223 Feb 2020 2020-02-01             2    2.613990                1 1150191.4
## 3224 Feb 2020 2020-02-01             2    2.523810                1 1151501.0
## 3225 Feb 2020 2020-02-01             2    2.523196                1 1151501.0
## 3226 Oct 2019 2019-10-01            10    2.642623                1 1150191.4
## 3227 Oct 2019 2019-10-01            10    2.531447                1 1150191.4
## 3228 Oct 2019 2019-10-01            10    2.461126                1 1150191.4
## 3229 Oct 2019 2019-10-01            10    2.546547                1 1150191.4
## 3230 Oct 2019 2019-10-01            10    2.609231                1 1150191.4
## 3231 Oct 2019 2019-10-01            10    2.592262                1 1150191.4
## 3232 Oct 2019 2019-10-01            10    2.581281                1 1150191.4
## 3233 Oct 2019 2019-10-01            10    2.664360                1 1150191.4
## 3234 Oct 2019 2019-10-01            10    1.624242                0 1150191.4
## 3235 Oct 2019 2019-10-01            10    2.652778                1 1150191.4
## 3236 Oct 2019 2019-10-01            10    2.663333                1 1150191.4
## 3237 Oct 2019 2019-10-01            10    2.631399                1 1150191.4
## 3238 Oct 2019 2019-10-01            10    2.731959                1 1150191.4
## 3239 Oct 2019 2019-10-01            10    2.677316                1 1150191.4
## 3240 Oct 2019 2019-10-01            10    1.859107                0 1150191.4
## 3241 Oct 2019 2019-10-01            10    1.715789                0 1150191.4
## 3242 Oct 2019 2019-10-01            10    2.557003                1 1150191.4
## 3243 Oct 2019 2019-10-01            10    2.493188                1 1150191.4
## 3244 Oct 2019 2019-10-01            10    1.751678                0 1150191.4
## 3245 Oct 2019 2019-10-01            10    2.560773                1 1150191.4
## 3246 Oct 2019 2019-10-01            10    2.893103                1 1150191.4
## 3247 Oct 2019 2019-10-01            10    2.733788                1 1150191.4
## 3248 Oct 2019 2019-10-01            10    2.682119                1 1150191.4
## 3249 Oct 2019 2019-10-01            10    2.729345                1 1150191.4
## 3250 Oct 2019 2019-10-01            10    2.713415                1 1150191.4
## 3251 Oct 2019 2019-10-01            10    2.658462                1 1155600.4
## 3252 Oct 2019 2019-10-01            10    2.616129                1 1155600.4
## 3253 Oct 2019 2019-10-01            10    2.612466                1 1155600.4
## 3254 Oct 2019 2019-10-01            10    2.815436                1 1155600.4
## 3255 Oct 2019 2019-10-01            10    2.665746                1 1155600.4
## 3256 Oct 2019 2019-10-01            10    2.681690                1 1155600.4
## 3257 Oct 2019 2019-10-01            10    2.833333                1 1155600.4
## 3258 Oct 2019 2019-10-01            10    2.603261                1 1155600.4
## 3259 Oct 2019 2019-10-01            10    2.567123                1 1155600.4
## 3260 Oct 2019 2019-10-01            10    1.733788                0 1155600.4
## 3261 Oct 2019 2019-10-01            10    2.577181                1 1155600.4
## 3262 Oct 2019 2019-10-01            10    2.767956                1 1155600.4
## 3263 Oct 2019 2019-10-01            10    2.672727                1 1174589.1
## 3264 Oct 2019 2019-10-01            10    2.654255                1 1174589.1
## 3265 Oct 2019 2019-10-01            10    2.675439                1 1174589.1
## 3266 Oct 2019 2019-10-01            10    2.679790                1 1174589.1
## 3267 Oct 2019 2019-10-01            10    2.737952                1 1174589.1
## 3268 Oct 2019 2019-10-01            10    2.796657                1 1174589.1
## 3269 Oct 2019 2019-10-01            10    2.697885                1 1174589.1
## 3270 Oct 2019 2019-10-01            10    2.608696                1 1174589.1
## 3271 Oct 2019 2019-10-01            10    2.673854                1 1174589.1
## 3272 Oct 2019 2019-10-01            10    2.614493                1 1174589.1
## 3273 Oct 2019 2019-10-01            10    2.735294                1 1174589.1
## 3274 Oct 2019 2019-10-01            10    2.552707                1 1174589.1
## 3275 Oct 2019 2019-10-01            10    1.904255                0 1174589.1
## 3276 Oct 2019 2019-10-01            10    2.734899                1 1174589.1
## 3277 Oct 2019 2019-10-01            10    2.445652                1 1176452.7
## 3278 Oct 2019 2019-10-01            10    2.668966                1 1176452.7
## 3279 Oct 2019 2019-10-01            10    2.547945                1 1176452.7
## 3280 Oct 2019 2019-10-01            10    2.625455                1 1176452.7
## 3281 Oct 2019 2019-10-01            10    2.609756                1 1176452.7
## 3282 Oct 2019 2019-10-01            10    2.683673                1 1176452.7
## 3283 Oct 2019 2019-10-01            10    2.516304                1 1176452.7
## 3284 Oct 2019 2019-10-01            10    2.658307                1 1176452.7
## 3285 Oct 2019 2019-10-01            10    2.597633                1 1176452.7
## 3286 Oct 2019 2019-10-01            10    2.654952                1 1176452.7
## 3287 Oct 2019 2019-10-01            10    2.557377                1 1176452.7
## 3288 Oct 2019 2019-10-01            10    2.677143                1 1176452.7
## 3289 Oct 2019 2019-10-01            10    2.806950                1 1058003.6
## 3290 Oct 2019 2019-10-01            10    2.626289                1 1058003.6
## 3291 Oct 2019 2019-10-01            10    2.617241                1 1058003.6
## 3292 Oct 2019 2019-10-01            10    2.868339                1 1058003.6
## 3293 Oct 2019 2019-10-01            10    2.845070                1 1058003.6
## 3294 Oct 2019 2019-10-01            10    2.698507                1 1058003.6
## 3295 Oct 2019 2019-10-01            10    2.680912                1 1058003.6
## 3296 Oct 2019 2019-10-01            10    1.907631                0 1058003.6
## 3297 Oct 2019 2019-10-01            10    2.513678                1 1058003.6
## 3298 Oct 2019 2019-10-01            10    2.566085                1 1058003.6
## 3299 Oct 2019 2019-10-01            10    2.821086                1 1058003.6
## 3300 Oct 2019 2019-10-01            10    2.713864                1 1058003.6
## 3301 Oct 2019 2019-10-01            10    2.765568                1 1058003.6
## 3302 Oct 2019 2019-10-01            10    2.627451                1 1058003.6
## 3303 Oct 2019 2019-10-01            10    2.691824                1 1058003.6
## 3304 Oct 2019 2019-10-01            10    2.754601                1 1058003.6
## 3305 Oct 2019 2019-10-01            10    2.758427                1 1058003.6
## 3306 Oct 2019 2019-10-01            10    2.848185                1 1058003.6
## 3307 Oct 2019 2019-10-01            10    2.587940                1 1058003.6
## 3308 Oct 2019 2019-10-01            10    2.751678                1 1058003.6
## 3309 Oct 2019 2019-10-01            10    2.700000                1 1058003.6
## 3310 Oct 2019 2019-10-01            10    2.622356                1 1172960.7
## 3311 Oct 2019 2019-10-01            10    2.569322                1 1172960.7
## 3312 Oct 2019 2019-10-01            10    2.693603                1 1172960.7
## 3313 Oct 2019 2019-10-01            10    2.575563                1 1172960.7
## 3314 Dec 2016 2016-12-01            12    2.663185                1 1161803.2
## 3315 Dec 2016 2016-12-01            12    1.627907                0 1161803.2
## 3316 Dec 2016 2016-12-01            12    1.912536                0 1161803.2
## 3317 Dec 2016 2016-12-01            12    1.714286                0 1161803.2
## 3318 Oct 2019 2019-10-01            10    2.669540                1 1165438.9
## 3319 Oct 2019 2019-10-01            10    2.738739                1 1165438.9
## 3320 Oct 2019 2019-10-01            10    2.601770                1 1165438.9
## 3321 Oct 2019 2019-10-01            10    2.811688                1 1165438.9
## 3322 Oct 2019 2019-10-01            10    2.621053                1 1165438.9
## 3323 Oct 2019 2019-10-01            10    2.616519                1 1165438.9
## 3324 Oct 2019 2019-10-01            10    2.645646                1 1165438.9
## 3325 Oct 2019 2019-10-01            10    2.735016                1 1175161.2
## 3326 Oct 2019 2019-10-01            10    2.580475                1 1175161.2
## 3327 Oct 2019 2019-10-01            10    2.567976                1 1175161.2
## 3328 Oct 2019 2019-10-01            10    1.647940                0 1175161.2
## 3329 Oct 2019 2019-10-01            10    2.681818                1 1175161.2
## 3330 Oct 2019 2019-10-01            10    1.730435                0 1175161.2
## 3331 Oct 2019 2019-10-01            10    2.623794                1 1165494.9
## 3332 Oct 2019 2019-10-01            10    2.845506                1 1165494.9
## 3333 Oct 2019 2019-10-01            10    2.783088                1 1165494.9
## 3334 Oct 2019 2019-10-01            10    2.438356                1 1169547.6
## 3335 Oct 2019 2019-10-01            10    2.554913                1 1169547.6
## 3336 Oct 2019 2019-10-01            10    2.627760                1 1169547.6
## 3337 Oct 2019 2019-10-01            10    2.663073                1 1169547.6
## 3338 Oct 2019 2019-10-01            10    2.695341                1 1169547.6
## 3339 Oct 2019 2019-10-01            10    2.570571                1 1169547.6
## 3340 May 2019 2019-05-01             5    2.498592                1 1033803.4
## 3341 May 2019 2019-05-01             5    1.587459                0 1033803.4
## 3342 May 2019 2019-05-01             5    2.790123                1 1033803.4
## 3343 May 2019 2019-05-01             5    2.841499                1 1033803.4
## 3344 May 2019 2019-05-01             5    2.629213                1 1033803.4
## 3345 May 2019 2019-05-01             5    2.706897                1 1033803.4
## 3346 May 2019 2019-05-01             5    2.543974                1 1033803.4
## 3347 May 2019 2019-05-01             5    2.712281                1 1033803.4
## 3348 May 2019 2019-05-01             5    2.714789                1 1033803.4
## 3349 May 2019 2019-05-01             5    2.579937                1 1033803.4
## 3350 May 2019 2019-05-01             5    2.824561                1 1033803.4
## 3351 May 2019 2019-05-01             5    2.731250                1 1033803.4
## 3352 May 2019 2019-05-01             5    2.900662                1 1033803.4
## 3353 May 2019 2019-05-01             5    2.284884                1 1033803.4
## 3354 May 2019 2019-05-01             5    2.666667                1 1033803.4
## 3355 May 2019 2019-05-01             5    2.766154                1 1033803.4
## 3356 May 2019 2019-05-01             5    2.677165                1 1033803.4
## 3357 May 2019 2019-05-01             5    2.854545                1 1033803.4
## 3358 May 2019 2019-05-01             5    2.591503                1 1033803.4
## 3359 May 2019 2019-05-01             5    2.325228                1 1033803.4
## 3360 May 2019 2019-05-01             5    2.715596                1 1033803.4
## 3361 May 2019 2019-05-01             5    2.523962                1 1033803.4
## 3362 May 2019 2019-05-01             5    2.748344                1 1033803.4
## 3363 May 2019 2019-05-01             5    3.248227                1 1033803.4
## 3364 May 2019 2019-05-01             5    2.802985                1 1033803.4
## 3365 May 2019 2019-05-01             5    2.889213                1 1033803.4
## 3366 May 2019 2019-05-01             5    2.597911                1 1033803.4
## 3367 May 2019 2019-05-01             5    2.439898                1 1033803.4
## 3368 May 2019 2019-05-01             5    2.759791                1 1033803.4
## 3369 May 2019 2019-05-01             5    2.934426                1 1033803.4
## 3370 May 2019 2019-05-01             5    2.718579                1 1033803.4
## 3371 May 2019 2019-05-01             5    2.692771                1 1033803.4
## 3372 May 2019 2019-05-01             5    2.615873                1 1033803.4
## 3373 May 2019 2019-05-01             5    3.033784                1 1033803.4
## 3374 May 2019 2019-05-01             5    2.812698                1 1033803.4
## 3375 May 2019 2019-05-01             5    2.730650                1 1033803.4
## 3376 May 2019 2019-05-01             5    2.390909                1 1033803.4
## 3377 May 2019 2019-05-01             5    2.729642                1 1033803.4
## 3378 May 2019 2019-05-01             5    2.806878                1 1033803.4
## 3379 May 2019 2019-05-01             5    2.325581                1 1033803.4
## 3380 May 2019 2019-05-01             5    2.646875                1 1033803.4
## 3381 May 2019 2019-05-01             5    2.740053                1 1033803.4
## 3382 May 2019 2019-05-01             5    2.208000                1 1033803.4
## 3383 May 2019 2019-05-01             5    2.219917                1 1033803.4
## 3384 May 2019 2019-05-01             5    3.026012                1 1033803.4
## 3385 May 2019 2019-05-01             5    2.792793                1 1033803.4
## 3386 May 2019 2019-05-01             5    2.544000                1 1033803.4
## 3387 May 2019 2019-05-01             5    2.697128                1 1033803.4
## 3388 May 2019 2019-05-01             5    2.617021                1 1033803.4
## 3389 May 2019 2019-05-01             5    2.567164                1 1033803.4
## 3390 May 2019 2019-05-01             5    2.525316                1 1033803.4
## 3391 May 2019 2019-05-01             5    2.812689                1 1033803.4
## 3392 May 2019 2019-05-01             5    3.041045                1 1033803.4
## 3393 May 2019 2019-05-01             5    2.948387                1 1033803.4
## 3394 May 2019 2019-05-01             5    2.887755                1 1000224.2
## 3395 May 2019 2019-05-01             5    2.571816                1 1000224.2
## 3396 May 2019 2019-05-01             5    2.402367                1 1000224.2
## 3397 May 2019 2019-05-01             5    2.720745                1 1000224.2
## 3398 May 2019 2019-05-01             5    2.620000                1 1000224.2
## 3399 May 2019 2019-05-01             5    2.625407                1 1000224.2
## 3400 May 2019 2019-05-01             5    2.974522                1 1000224.2
## 3401 May 2019 2019-05-01             5    2.856061                1 1000224.2
## 3402 May 2019 2019-05-01             5    2.233645                1 1000224.2
## 3403 May 2019 2019-05-01             5    2.809816                1 1000224.2
## 3404 May 2019 2019-05-01             5    2.506083                1 1000224.2
## 3405 May 2019 2019-05-01             5    2.759076                1 1000224.2
## 3406 May 2019 2019-05-01             5    2.625330                1 1000224.2
## 3407 May 2019 2019-05-01             5    2.780576                1 1000224.2
## 3408 May 2019 2019-05-01             5    2.584000                1 1000224.2
## 3409 May 2019 2019-05-01             5    2.731788                1 1000224.2
## 3410 May 2019 2019-05-01             5    2.703583                1 1000224.2
## 3411 May 2019 2019-05-01             5    2.567647                1 1000224.2
## 3412 May 2019 2019-05-01             5    2.891374                1 1000224.2
## 3413 May 2019 2019-05-01             5    2.912621                1 1000224.2
## 3414 May 2019 2019-05-01             5    2.812298                1 1000224.2
## 3415 May 2019 2019-05-01             5    2.216667                1 1000224.2
## 3416 May 2019 2019-05-01             5    2.972892                1 1000224.2
## 3417 May 2019 2019-05-01             5    2.502890                1 1000224.2
## 3418 May 2019 2019-05-01             5    2.889273                1 1000224.2
## 3419 May 2019 2019-05-01             5    2.715084                1 1000224.2
## 3420 May 2019 2019-05-01             5    2.598662                1 1000224.2
## 3421 May 2019 2019-05-01             5    2.309783                1 1000224.2
## 3422 May 2019 2019-05-01             5    2.404624                1 1000224.2
## 3423 May 2019 2019-05-01             5    2.803636                1 1000224.2
## 3424 May 2019 2019-05-01             5    2.541547                1 1000224.2
## 3425 May 2019 2019-05-01             5    2.386010                1 1000224.2
## 3426 May 2019 2019-05-01             5    2.504505                1 1000224.2
## 3427 May 2019 2019-05-01             5    2.431877                1 1000224.2
## 3428 May 2019 2019-05-01             5    2.483283                1 1000224.2
## 3429 May 2019 2019-05-01             5    2.294737                1 1000224.2
## 3430 May 2019 2019-05-01             5    2.706522                1 1000224.2
## 3431 May 2019 2019-05-01             5    1.746094                1 1000224.2
## 3432 May 2019 2019-05-01             5    2.322767                1 1000224.2
## 3433 May 2019 2019-05-01             5    2.802395                1 1000224.2
## 3434 May 2019 2019-05-01             5    2.714744                1 1000224.2
## 3435 May 2019 2019-05-01             5    2.848943                1 1000224.2
## 3436 May 2019 2019-05-01             5    2.312155                1 1000224.2
## 3437 May 2019 2019-05-01             5    2.754601                1 1000224.2
## 3438 May 2019 2019-05-01             5    2.798780                1 1000224.2
## 3439 May 2019 2019-05-01             5    2.433526                1 1000224.2
## 3440 May 2019 2019-05-01             5    2.523810                1 1000224.2
## 3441 May 2019 2019-05-01             5    2.450151                1 1000224.2
## 3442 May 2019 2019-05-01             5    2.500000                1 1000224.2
## 3443 May 2019 2019-05-01             5    2.448718                1 1000224.2
## 3444 May 2019 2019-05-01             5    2.264935                1 1000224.2
## 3445 May 2019 2019-05-01             5    2.314149                0 1000224.2
## 3446 May 2019 2019-05-01             5    2.173469                1 1000224.2
## 3447 May 2019 2019-05-01             5    2.354930                1 1000224.2
##        Y.utm
## 1    2956134
## 2    2956134
## 3    2956134
## 4    2956134
## 5    2956134
## 6    2956134
## 7    2956134
## 8    2956134
## 9    2956134
## 10   2956134
## 11   2956134
## 12   2956134
## 13   2956134
## 14   2956134
## 15   2956134
## 16   2956134
## 17   2956134
## 18   2956134
## 19   2956134
## 20   2956134
## 21   2956134
## 22   2956134
## 23   2956134
## 24   2956134
## 25   2956134
## 26   2956134
## 27   2956134
## 28   2956134
## 29   2956134
## 30   2956134
## 31   2956134
## 32   2956134
## 33   2956134
## 34   2956134
## 35   2956134
## 36   2956134
## 37   2956134
## 38   2956134
## 39   2956134
## 40   2956134
## 41   2956134
## 42   2956134
## 43   2956134
## 44   2956134
## 45   2956134
## 46   2956134
## 47   2956134
## 48   2956134
## 49   2956134
## 50   2956134
## 51   2956134
## 52   2956134
## 53   2956134
## 54   2956134
## 55   2956134
## 56   2956134
## 57   2956134
## 58   2956134
## 59   2956134
## 60   2956134
## 61   2956134
## 62   2956134
## 63   2956134
## 64   2956134
## 65   2956134
## 66   2956134
## 67   2956134
## 68   2956134
## 69   2956134
## 70   2956134
## 71   2956134
## 72   2956134
## 73   2956134
## 74   2956134
## 75   2956134
## 76   2835483
## 77   2835483
## 78   2835483
## 79   2835483
## 80   2835483
## 81   2835483
## 82   2835483
## 83   2835483
## 84   2835483
## 85   2835483
## 86   2835483
## 87   2835483
## 88   2835483
## 89   2835483
## 90   2835483
## 91   2835483
## 92   2835483
## 93   2835483
## 94   2835483
## 95   2835483
## 96   2835483
## 97   2835483
## 98   2835483
## 99   2835483
## 100  2835483
## 101  2835483
## 102  2835483
## 103  2835483
## 104  2835483
## 105  2835483
## 106  2835483
## 107  2835483
## 108  2835483
## 109  2835483
## 110  2835483
## 111  2835483
## 112  2835483
## 113  2835483
## 114  2835483
## 115  2835483
## 116  2835483
## 117  2835483
## 118  2835483
## 119  2835483
## 120  2835483
## 121  2835483
## 122  2835483
## 123  2835483
## 124  2835483
## 125  2835483
## 126  2835483
## 127  2835483
## 128  2835483
## 129  2835483
## 130  2835483
## 131  2835483
## 132  2835483
## 133  2835483
## 134  2835483
## 135  2835483
## 136  2835483
## 137  2835483
## 138  2835483
## 139  2835483
## 140  2794842
## 141  2794842
## 142  2794842
## 143  2794842
## 144  2794842
## 145  2794842
## 146  2794842
## 147  2794842
## 148  2794842
## 149  2794842
## 150  2794842
## 151  2794842
## 152  2794842
## 153  2794842
## 154  2794842
## 155  2794842
## 156  2794842
## 157  2794842
## 158  2794842
## 159  2794842
## 160  2794842
## 161  2794842
## 162  2794842
## 163  2794842
## 164  2794842
## 165  2794842
## 166  2794842
## 167  2794842
## 168  2794842
## 169  2794842
## 170  2794842
## 171  2794842
## 172  2794842
## 173  2794842
## 174  2794842
## 175  2794842
## 176  2794842
## 177  2794842
## 178  2794842
## 179  2794842
## 180  2794842
## 181  2794842
## 182  2794842
## 183  2794842
## 184  2794842
## 185  2794842
## 186  2794842
## 187  2794842
## 188  2794842
## 189  2794842
## 190  2794842
## 191  2794842
## 192  2794842
## 193  2794842
## 194  2794842
## 195  2794842
## 196  2794842
## 197  2794842
## 198  2794842
## 199  2794842
## 200  2794842
## 201  3098294
## 202  3098294
## 203  3098294
## 204  3098294
## 205  3098294
## 206  3098294
## 207  3098294
## 208  3098294
## 209  3098294
## 210  3098294
## 211  3098294
## 212  3098294
## 213  3098294
## 214  3098294
## 215  3098294
## 216  3098294
## 217  3098294
## 218  3098294
## 219  3098294
## 220  3098294
## 221  3098294
## 222  3098294
## 223  3098294
## 224  3098294
## 225  3098294
## 226  3098294
## 227  3098294
## 228  3098294
## 229  3098294
## 230  3098294
## 231  3098294
## 232  3098294
## 233  3098294
## 234  3098294
## 235  3098294
## 236  3098294
## 237  3098294
## 238  3098294
## 239  3098294
## 240  3098294
## 241  3098294
## 242  3098294
## 243  3098294
## 244  3098294
## 245  3098294
## 246  3098294
## 247  3098294
## 248  3098294
## 249  3098294
## 250  3098294
## 251  3098294
## 252  3098294
## 253  3098294
## 254  3098294
## 255  3098294
## 256  3098294
## 257  3098294
## 258  3098294
## 259  3098294
## 260  3098294
## 261  3196176
## 262  3196176
## 263  3196176
## 264  3196176
## 265  3196176
## 266  3196176
## 267  3196176
## 268  3196176
## 269  3196176
## 270  3196176
## 271  3196176
## 272  3196176
## 273  3196176
## 274  3196176
## 275  3196176
## 276  3196176
## 277  3196176
## 278  3196176
## 279  3196176
## 280  3196176
## 281  3196176
## 282  3196176
## 283  3196176
## 284  3196176
## 285  3196176
## 286  2776463
## 287  2776463
## 288  2776463
## 289  2776463
## 290  2776463
## 291  2776463
## 292  2776463
## 293  2776463
## 294  2776463
## 295  2776463
## 296  2776463
## 297  2776463
## 298  2776463
## 299  2776463
## 300  2776463
## 301  2776463
## 302  2776463
## 303  2776463
## 304  2776463
## 305  2776463
## 306  2776463
## 307  2776463
## 308  2776463
## 309  2776463
## 310  2776463
## 311  2776463
## 312  2776463
## 313  2776463
## 314  2776463
## 315  2776463
## 316  2776463
## 317  2776463
## 318  2776463
## 319  2776463
## 320  2776463
## 321  2776463
## 322  2956134
## 323  2956134
## 324  2956134
## 325  2956134
## 326  2956134
## 327  2956134
## 328  2956134
## 329  2956134
## 330  2956134
## 331  2956134
## 332  2956134
## 333  2956134
## 334  2956134
## 335  2956134
## 336  2956134
## 337  2956134
## 338  2956134
## 339  2956134
## 340  2956134
## 341  2956134
## 342  2956134
## 343  2956134
## 344  2956134
## 345  2956134
## 346  2956134
## 347  2956134
## 348  2956134
## 349  2956134
## 350  2956134
## 351  2956134
## 352  2956134
## 353  2956134
## 354  2956134
## 355  2956134
## 356  2956134
## 357  2956134
## 358  2956134
## 359  2956134
## 360  2956134
## 361  2956134
## 362  2956134
## 363  2956134
## 364  2956134
## 365  2956134
## 366  2956134
## 367  2956134
## 368  2956134
## 369  2956134
## 370  2956134
## 371  2956134
## 372  2956134
## 373  2956134
## 374  2956134
## 375  2956134
## 376  2956134
## 377  2956134
## 378  2956134
## 379  2956134
## 380  2956134
## 381  2956134
## 382  2956134
## 383  2956134
## 384  2956134
## 385  2956134
## 386  2956134
## 387  2956134
## 388  2956134
## 389  2956134
## 390  2956134
## 391  2956134
## 392  2956134
## 393  2956134
## 394  2956134
## 395  2956134
## 396  2956134
## 397  3290538
## 398  3290538
## 399  3290538
## 400  3290538
## 401  3290538
## 402  3290538
## 403  3290538
## 404  3290538
## 405  3290538
## 406  3290538
## 407  3290538
## 408  3290538
## 409  3290538
## 410  3290538
## 411  2835483
## 412  2835483
## 413  2835483
## 414  2835483
## 415  2835483
## 416  2835483
## 417  2835483
## 418  2835483
## 419  2835483
## 420  2835483
## 421  2835483
## 422  2835483
## 423  2835483
## 424  2835483
## 425  2835483
## 426  2835483
## 427  2835483
## 428  2835483
## 429  2835483
## 430  2835483
## 431  2835483
## 432  2835483
## 433  2835483
## 434  2835483
## 435  2835483
## 436  2835483
## 437  2835483
## 438  2835483
## 439  2835483
## 440  2835483
## 441  2835483
## 442  2835483
## 443  2835483
## 444  2835483
## 445  2835483
## 446  2835483
## 447  2835483
## 448  2835483
## 449  2835483
## 450  2835483
## 451  2835483
## 452  2835483
## 453  2835483
## 454  2835483
## 455  2835483
## 456  2835483
## 457  2835483
## 458  2835483
## 459  2835483
## 460  2835483
## 461  2835483
## 462  2835483
## 463  2794842
## 464  2794842
## 465  2794842
## 466  2794842
## 467  2794842
## 468  2794842
## 469  2794842
## 470  2794842
## 471  2794842
## 472  2794842
## 473  2794842
## 474  2794842
## 475  2794842
## 476  2794842
## 477  2794842
## 478  2794842
## 479  2794842
## 480  2794842
## 481  2794842
## 482  2794842
## 483  2794842
## 484  2794842
## 485  2794842
## 486  2794842
## 487  2794842
## 488  2794842
## 489  2794842
## 490  2794842
## 491  2794842
## 492  2794842
## 493  2794842
## 494  2794842
## 495  3098294
## 496  3098294
## 497  3098294
## 498  3098294
## 499  3098294
## 500  3098294
## 501  3098294
## 502  3098294
## 503  3098294
## 504  3098294
## 505  3098294
## 506  3098294
## 507  3098294
## 508  3098294
## 509  3098294
## 510  3098294
## 511  3098294
## 512  3098294
## 513  3098294
## 514  3098294
## 515  3098294
## 516  3098294
## 517  3098294
## 518  3098294
## 519  3098294
## 520  3098294
## 521  3098294
## 522  3098294
## 523  3098294
## 524  3098294
## 525  3098294
## 526  3098294
## 527  3098294
## 528  3098294
## 529  3098294
## 530  3098294
## 531  3098294
## 532  3098294
## 533  3098294
## 534  3098294
## 535  3098294
## 536  3098294
## 537  3098294
## 538  3098294
## 539  3098294
## 540  3098294
## 541  3098294
## 542  3098294
## 543  3098294
## 544  3098294
## 545  3098294
## 546  3098294
## 547  3098294
## 548  3098294
## 549  3098294
## 550  3098294
## 551  3098294
## 552  3098294
## 553  3098294
## 554  3098294
## 555  3098294
## 556  3098294
## 557  3098294
## 558  3098294
## 559  3098294
## 560  3098294
## 561  3098294
## 562  3098294
## 563  3098294
## 564  3098294
## 565  3098294
## 566  3098294
## 567  3098294
## 568  3098294
## 569  3098294
## 570  3098294
## 571  3098294
## 572  3098294
## 573  3098294
## 574  3098294
## 575  3098294
## 576  3098294
## 577  3098294
## 578  3098294
## 579  3196176
## 580  3196176
## 581  3196176
## 582  3196176
## 583  3196176
## 584  3196176
## 585  3196176
## 586  3196176
## 587  3196176
## 588  3196176
## 589  3196176
## 590  3196176
## 591  3196176
## 592  3196176
## 593  3196176
## 594  3196176
## 595  3196176
## 596  3196176
## 597  3196176
## 598  3196176
## 599  3196176
## 600  3196176
## 601  3196176
## 602  3196176
## 603  3196176
## 604  3196176
## 605  3196176
## 606  3196176
## 607  3196176
## 608  3196176
## 609  3196176
## 610  3196176
## 611  3196176
## 612  3196176
## 613  3196176
## 614  3196176
## 615  3196176
## 616  3196176
## 617  3196176
## 618  3196176
## 619  3196176
## 620  3196176
## 621  3196176
## 622  3196176
## 623  3196176
## 624  3196176
## 625  3196176
## 626  3196176
## 627  3196176
## 628  3196176
## 629  3196176
## 630  3196176
## 631  3196176
## 632  3196176
## 633  3196176
## 634  3196176
## 635  3196176
## 636  3196176
## 637  3196176
## 638  3196176
## 639  3196176
## 640  3196176
## 641  3196176
## 642  3196176
## 643  3196176
## 644  3196176
## 645  3196176
## 646  3196176
## 647  3196176
## 648  3196176
## 649  3196176
## 650  3196176
## 651  3196176
## 652  3196176
## 653  3196176
## 654  3196176
## 655  3196176
## 656  3196176
## 657  3196176
## 658  3196176
## 659  3196176
## 660  3196176
## 661  3196176
## 662  3196176
## 663  3196176
## 664  3196176
## 665  3196176
## 666  3196176
## 667  3196176
## 668  3196176
## 669  3196176
## 670  2776463
## 671  2776463
## 672  2776463
## 673  2776463
## 674  2776463
## 675  2776463
## 676  2776463
## 677  2776463
## 678  2776463
## 679  2776463
## 680  2776463
## 681  2776463
## 682  2776463
## 683  2776463
## 684  2776463
## 685  2776463
## 686  2776463
## 687  2776463
## 688  2776463
## 689  2776463
## 690  2776463
## 691  2776463
## 692  2776463
## 693  2776463
## 694  2776463
## 695  2776463
## 696  2776463
## 697  2776463
## 698  2776463
## 699  2776463
## 700  2776463
## 701  2776463
## 702  2776463
## 703  2776463
## 704  2776463
## 705  3290538
## 706  3290538
## 707  3290538
## 708  3290538
## 709  3290538
## 710  3290538
## 711  3290538
## 712  3290538
## 713  3290538
## 714  3290538
## 715  3290538
## 716  3290538
## 717  3290538
## 718  3290538
## 719  3290538
## 720  3290538
## 721  3290538
## 722  3290538
## 723  3290538
## 724  3290538
## 725  3290538
## 726  3290538
## 727  3290538
## 728  3290538
## 729  3290538
## 730  3290538
## 731  3290538
## 732  3290538
## 733  3290538
## 734  3290538
## 735  3290538
## 736  3290538
## 737  3290538
## 738  3290538
## 739  3290538
## 740  3290538
## 741  3290538
## 742  3290538
## 743  3290538
## 744  3290538
## 745  3290538
## 746  3290538
## 747  3290538
## 748  3290538
## 749  3290538
## 750  3290538
## 751  3290538
## 752  3290538
## 753  2835483
## 754  2835483
## 755  2835483
## 756  2835483
## 757  2835483
## 758  2835483
## 759  2835483
## 760  2835483
## 761  2835483
## 762  2835483
## 763  2835483
## 764  2835483
## 765  2835483
## 766  2835483
## 767  2835483
## 768  2835483
## 769  2835483
## 770  2794842
## 771  2794842
## 772  2794842
## 773  2794842
## 774  2794842
## 775  2794842
## 776  2794842
## 777  2794842
## 778  2794842
## 779  2794842
## 780  2794842
## 781  2794842
## 782  2794842
## 783  2794842
## 784  2794842
## 785  2794842
## 786  2794842
## 787  2794842
## 788  2794842
## 789  2794842
## 790  2794842
## 791  2794842
## 792  2794842
## 793  2794842
## 794  2794842
## 795  2794842
## 796  2794842
## 797  2794842
## 798  2794842
## 799  2794842
## 800  2794842
## 801  2794842
## 802  2794842
## 803  2794842
## 804  2794842
## 805  2794842
## 806  2794842
## 807  2794842
## 808  2794842
## 809  2794842
## 810  3098294
## 811  3098294
## 812  3098294
## 813  3098294
## 814  3098294
## 815  3098294
## 816  3098294
## 817  3098294
## 818  3098294
## 819  3098294
## 820  3098294
## 821  3098294
## 822  3098294
## 823  3098294
## 824  3098294
## 825  3098294
## 826  3098294
## 827  3098294
## 828  3098294
## 829  3098294
## 830  3098294
## 831  3098294
## 832  3098294
## 833  3098294
## 834  3098294
## 835  3098294
## 836  3098294
## 837  3098294
## 838  3098294
## 839  3098294
## 840  3098294
## 841  3098294
## 842  3098294
## 843  3098294
## 844  3098294
## 845  3098294
## 846  3098294
## 847  3098294
## 848  3098294
## 849  3098294
## 850  3098294
## 851  3098294
## 852  3098294
## 853  3098294
## 854  3196176
## 855  3196176
## 856  3196176
## 857  3196176
## 858  3196176
## 859  3196176
## 860  3196176
## 861  3196176
## 862  3196176
## 863  3196176
## 864  3196176
## 865  3196176
## 866  3196176
## 867  3196176
## 868  2776463
## 869  2776463
## 870  2776463
## 871  2776463
## 872  2776463
## 873  2776463
## 874  2776463
## 875  2776463
## 876  2776463
## 877  2776463
## 878  2776463
## 879  2776463
## 880  2776463
## 881  2776463
## 882  2776463
## 883  2776463
## 884  2776463
## 885  2776463
## 886  2776463
## 887  2776463
## 888  2776463
## 889  2776463
## 890  2776463
## 891  2776463
## 892  2776463
## 893  2776463
## 894  2776463
## 895  2776463
## 896  2776463
## 897  2776463
## 898  2776463
## 899  2776463
## 900  2776463
## 901  2776463
## 902  2776463
## 903  2776463
## 904  2776463
## 905  2776463
## 906  2776463
## 907  2776463
## 908  2776463
## 909  2776463
## 910  2776463
## 911  2776463
## 912  2794842
## 913  2794842
## 914  2794842
## 915  2794842
## 916  2794842
## 917  2794842
## 918  2794842
## 919  2794842
## 920  2794842
## 921  2794842
## 922  2794842
## 923  2794842
## 924  2794842
## 925  2794842
## 926  2794842
## 927  2794842
## 928  2794842
## 929  2794842
## 930  2794842
## 931  2794842
## 932  2794842
## 933  2794842
## 934  2794842
## 935  2794842
## 936  2794842
## 937  2794842
## 938  2794842
## 939  2794842
## 940  2794842
## 941  2794842
## 942  2794842
## 943  2794842
## 944  2794842
## 945  2794842
## 946  2794842
## 947  2794842
## 948  2794842
## 949  2794842
## 950  2794842
## 951  2794842
## 952  2794842
## 953  2794842
## 954  2794842
## 955  2794842
## 956  2794842
## 957  2794842
## 958  2794842
## 959  2794842
## 960  2794842
## 961  2794842
## 962  2794842
## 963  3098294
## 964  3098294
## 965  3098294
## 966  3098294
## 967  3098294
## 968  3098294
## 969  3098294
## 970  3098294
## 971  3098294
## 972  3098294
## 973  3098294
## 974  3098294
## 975  3098294
## 976  3098294
## 977  3098294
## 978  3098294
## 979  3098294
## 980  3098294
## 981  3098294
## 982  3098294
## 983  3098294
## 984  3098294
## 985  3098294
## 986  3098294
## 987  3098294
## 988  3098294
## 989  3098294
## 990  3098294
## 991  3098294
## 992  3098294
## 993  3098294
## 994  3098294
## 995  3098294
## 996  3098294
## 997  3098294
## 998  3098294
## 999  3098294
## 1000 3098294
## 1001 3098294
## 1002 3098294
## 1003 3098294
## 1004 3098294
## 1005 3098294
## 1006 3098294
## 1007 3098294
## 1008 3098294
## 1009 3098294
## 1010 3098294
## 1011 3098294
## 1012 3098294
## 1013 3098294
## 1014 3098294
## 1015 3098294
## 1016 3196176
## 1017 3196176
## 1018 3196176
## 1019 3196176
## 1020 3196176
## 1021 3196176
## 1022 3196176
## 1023 3196176
## 1024 3196176
## 1025 3196176
## 1026 3196176
## 1027 3196176
## 1028 3196176
## 1029 3196176
## 1030 3196176
## 1031 3196176
## 1032 3196176
## 1033 3196176
## 1034 3196176
## 1035 3196176
## 1036 3196176
## 1037 3196176
## 1038 3196176
## 1039 3196176
## 1040 3196176
## 1041 3196176
## 1042 3196176
## 1043 3196176
## 1044 3196176
## 1045 3196176
## 1046 3196176
## 1047 3196176
## 1048 3196176
## 1049 3196176
## 1050 3196176
## 1051 3196176
## 1052 2776463
## 1053 2776463
## 1054 2776463
## 1055 2776463
## 1056 2776463
## 1057 2776463
## 1058 2776463
## 1059 2776463
## 1060 2776463
## 1061 2776463
## 1062 2776463
## 1063 2776463
## 1064 3290538
## 1065 3290538
## 1066 3290538
## 1067 3290538
## 1068 3290538
## 1069 3290538
## 1070 3290538
## 1071 3290538
## 1072 3290538
## 1073 3290538
## 1074 3290538
## 1075 3290538
## 1076 3290538
## 1077 3290538
## 1078 3290538
## 1079 3290538
## 1080 3290538
## 1081 3290538
## 1082 3290538
## 1083 3290538
## 1084 3290538
## 1085 3290538
## 1086 3290538
## 1087 3290538
## 1088 3290538
## 1089 3290538
## 1090 3290538
## 1091 3290538
## 1092 3290538
## 1093 3290538
## 1094 3290538
## 1095 3290538
## 1096 3290538
## 1097 3290538
## 1098 3290538
## 1099 3290538
## 1100 3290538
## 1101 3290538
## 1102 3290538
## 1103 3290538
## 1104 3290538
## 1105 3290538
## 1106 3290538
## 1107 3290538
## 1108 3290538
## 1109 3290538
## 1110 3290538
## 1111 3290538
## 1112 3290538
## 1113 3290538
## 1114 3290538
## 1115 3290538
## 1116 3290538
## 1117 3290538
## 1118 3290538
## 1119 3290538
## 1120 3290538
## 1121 2835483
## 1122 2835483
## 1123 2835483
## 1124 2835483
## 1125 2835483
## 1126 2835483
## 1127 2835483
## 1128 2835483
## 1129 2835483
## 1130 2835483
## 1131 2835483
## 1132 2835483
## 1133 2835483
## 1134 2810251
## 1135 2810251
## 1136 2810251
## 1137 2810251
## 1138 2810251
## 1139 2810251
## 1140 2810251
## 1141 2810251
## 1142 2810251
## 1143 2810251
## 1144 2810251
## 1145 2810251
## 1146 2810251
## 1147 2810251
## 1148 2810251
## 1149 2810251
## 1150 2810251
## 1151 2810251
## 1152 2810251
## 1153 2810251
## 1154 2810251
## 1155 2810251
## 1156 2810251
## 1157 2810251
## 1158 2810251
## 1159 2810251
## 1160 2810251
## 1161 2810251
## 1162 2810251
## 1163 2810251
## 1164 2810251
## 1165 2810251
## 1166 2810251
## 1167 2810251
## 1168 2810251
## 1169 2810251
## 1170 2810251
## 1171 2810251
## 1172 2810251
## 1173 2810251
## 1174 2810251
## 1175 2810251
## 1176 2810251
## 1177 2810251
## 1178 2810251
## 1179 2810251
## 1180 2810251
## 1181 2810251
## 1182 2810251
## 1183 2810251
## 1184 2810251
## 1185 2810251
## 1186 2810251
## 1187 2794842
## 1188 2794842
## 1189 2794842
## 1190 2794842
## 1191 2794842
## 1192 2794842
## 1193 2794842
## 1194 2794842
## 1195 2794842
## 1196 2794842
## 1197 2794842
## 1198 3101958
## 1199 3101958
## 1200 3101958
## 1201 3101958
## 1202 3101958
## 1203 3101958
## 1204 3101958
## 1205 3101958
## 1206 3101958
## 1207 3101958
## 1208 3101958
## 1209 3101958
## 1210 3101958
## 1211 3101958
## 1212 3101958
## 1213 3197182
## 1214 3197182
## 1215 3197182
## 1216 3197182
## 1217 3197182
## 1218 3197182
## 1219 3197182
## 1220 3197182
## 1221 3197182
## 1222 3197182
## 1223 3197182
## 1224 3197182
## 1225 3197182
## 1226 3197182
## 1227 3197182
## 1228 3197182
## 1229 3197182
## 1230 3197182
## 1231 3197182
## 1232 3197182
## 1233 3196176
## 1234 3196176
## 1235 3196176
## 1236 3196176
## 1237 3196176
## 1238 3196176
## 1239 3196176
## 1240 3196176
## 1241 3196176
## 1242 3196176
## 1243 3196176
## 1244 3196176
## 1245 3196176
## 1246 3196176
## 1247 3196176
## 1248 3196176
## 1249 3196176
## 1250 3196176
## 1251 3196176
## 1252 3196176
## 1253 3196176
## 1254 3196176
## 1255 3196176
## 1256 3196176
## 1257 3196176
## 1258 3196176
## 1259 3196176
## 1260 3196176
## 1261 3196176
## 1262 3196176
## 1263 3196176
## 1264 3196176
## 1265 3196176
## 1266 3196176
## 1267 3196176
## 1268 3196176
## 1269 3196176
## 1270 3196176
## 1271 3196176
## 1272 3196176
## 1273 3196176
## 1274 3196176
## 1275 3196176
## 1276 3196176
## 1277 3196176
## 1278 2778276
## 1279 2778276
## 1280 2778276
## 1281 2778276
## 1282 2778276
## 1283 2778276
## 1284 2778276
## 1285 2778276
## 1286 2778276
## 1287 2778276
## 1288 2778276
## 1289 2778276
## 1290 2778276
## 1291 2778276
## 1292 2778276
## 1293 2778276
## 1294 2778276
## 1295 2778276
## 1296 2778276
## 1297 2778276
## 1298 2778276
## 1299 2778276
## 1300 2778276
## 1301 2778276
## 1302 2778276
## 1303 2778276
## 1304 2778276
## 1305 2778276
## 1306 2778276
## 1307 2778276
## 1308 2778276
## 1309 2778276
## 1310 2778276
## 1311 2778276
## 1312 2778276
## 1313 2778276
## 1314 2778276
## 1315 3290885
## 1316 3290885
## 1317 3290885
## 1318 3290885
## 1319 3290885
## 1320 3290885
## 1321 3290885
## 1322 3290885
## 1323 3290885
## 1324 3290885
## 1325 3290885
## 1326 3290885
## 1327 3290885
## 1328 3290885
## 1329 3290885
## 1330 3290885
## 1331 3290885
## 1332 3290885
## 1333 3290885
## 1334 3290885
## 1335 3290885
## 1336 3290885
## 1337 3290885
## 1338 3290885
## 1339 3290885
## 1340 3290885
## 1341 3290885
## 1342 3290885
## 1343 3290885
## 1344 3290885
## 1345 3290885
## 1346 3290885
## 1347 3290885
## 1348 3290885
## 1349 3290885
## 1350 3290885
## 1351 3290885
## 1352 3290885
## 1353 3290885
## 1354 3290885
## 1355 3290885
## 1356 3290885
## 1357 3290885
## 1358 3290885
## 1359 3290885
## 1360 3290885
## 1361 3290885
## 1362 3290885
## 1363 3290885
## 1364 3290885
## 1365 3290885
## 1366 3290885
## 1367 3290885
## 1368 3290885
## 1369 3290885
## 1370 3290885
## 1371 3290885
## 1372 3290885
## 1373 3290885
## 1374 3290885
## 1375 2885502
## 1376 2885502
## 1377 2885502
## 1378 2885502
## 1379 2885502
## 1380 2885502
## 1381 2885502
## 1382 2885502
## 1383 2885502
## 1384 2885502
## 1385 2885502
## 1386 2885502
## 1387 2885502
## 1388 2885502
## 1389 2885502
## 1390 2885502
## 1391 2885502
## 1392 2885502
## 1393 2885502
## 1394 2885502
## 1395 2885502
## 1396 2885502
## 1397 2885502
## 1398 2885502
## 1399 2885502
## 1400 2885502
## 1401 2885502
## 1402 2885502
## 1403 2885502
## 1404 2885502
## 1405 2885502
## 1406 2885502
## 1407 2885502
## 1408 2885502
## 1409 2885502
## 1410 2885502
## 1411 2885502
## 1412 2885502
## 1413 2885502
## 1414 2885502
## 1415 2885502
## 1416 2885502
## 1417 2885502
## 1418 2885502
## 1419 2885502
## 1420 2885502
## 1421 2885502
## 1422 2885502
## 1423 2885502
## 1424 2885502
## 1425 2885502
## 1426 2885502
## 1427 2885502
## 1428 2885502
## 1429 2885502
## 1430 2885502
## 1431 2885502
## 1432 2885502
## 1433 2885502
## 1434 2885502
## 1435 2885502
## 1436 2885502
## 1437 2885502
## 1438 2885502
## 1439 2885502
## 1440 2885502
## 1441 2885502
## 1442 2885502
## 1443 2885502
## 1444 2885502
## 1445 2885502
## 1446 2885502
## 1447 2885502
## 1448 2885502
## 1449 2885502
## 1450 2885502
## 1451 2885502
## 1452 2885502
## 1453 2885502
## 1454 2885502
## 1455 2885502
## 1456 2885502
## 1457 2885502
## 1458 2885502
## 1459 2885502
## 1460 2885502
## 1461 2885502
## 1462 2885502
## 1463 2885502
## 1464 2885502
## 1465 2885502
## 1466 2885502
## 1467 2885502
## 1468 2885502
## 1469 2885502
## 1470 2885502
## 1471 2885502
## 1472 2885502
## 1473 2885502
## 1474 2885502
## 1475 2885502
## 1476 2885502
## 1477 2885502
## 1478 2885502
## 1479 2885502
## 1480 2885502
## 1481 2885502
## 1482 2885502
## 1483 2885502
## 1484 2885502
## 1485 2885502
## 1486 2885502
## 1487 2885502
## 1488 2885502
## 1489 2885502
## 1490 2885502
## 1491 2885502
## 1492 2885502
## 1493 2885502
## 1494 2885502
## 1495 2885502
## 1496 2885502
## 1497 2885502
## 1498 2885502
## 1499 2885502
## 1500 2885502
## 1501 2885502
## 1502 2795436
## 1503 2795436
## 1504 2795436
## 1505 2795436
## 1506 2795436
## 1507 2795436
## 1508 2795436
## 1509 2795436
## 1510 2795436
## 1511 2795436
## 1512 2795436
## 1513 2795436
## 1514 2795436
## 1515 2795436
## 1516 2795436
## 1517 2795436
## 1518 2795436
## 1519 2795425
## 1520 2795425
## 1521 2795425
## 1522 2795425
## 1523 2795425
## 1524 2795425
## 1525 2795425
## 1526 2795425
## 1527 2795425
## 1528 2795425
## 1529 2795425
## 1530 2795425
## 1531 2795425
## 1532 2795425
## 1533 2795425
## 1534 2795425
## 1535 2795425
## 1536 2795425
## 1537 2795489
## 1538 2795489
## 1539 2795489
## 1540 2795489
## 1541 2795489
## 1542 2795489
## 1543 2795489
## 1544 2795489
## 1545 2795489
## 1546 2795489
## 1547 2795489
## 1548 2795489
## 1549 2795489
## 1550 2795489
## 1551 2795489
## 1552 2795489
## 1553 2795489
## 1554 2795489
## 1555 2795489
## 1556 2795489
## 1557 2795489
## 1558 2795489
## 1559 2795489
## 1560 2795489
## 1561 2795489
## 1562 2795489
## 1563 2795489
## 1564 2795489
## 1565 2795489
## 1566 2795489
## 1567 2795489
## 1568 2795489
## 1569 2795489
## 1570 2795489
## 1571 2795489
## 1572 2795489
## 1573 2795489
## 1574 2810252
## 1575 2810252
## 1576 2810252
## 1577 2810252
## 1578 2810252
## 1579 2810252
## 1580 2810252
## 1581 2810252
## 1582 2810252
## 1583 2810252
## 1584 2810252
## 1585 2810252
## 1586 2810252
## 1587 2810252
## 1588 2810252
## 1589 2810252
## 1590 2810252
## 1591 2810252
## 1592 2810252
## 1593 2810252
## 1594 3101957
## 1595 3101957
## 1596 3101957
## 1597 3101957
## 1598 3101957
## 1599 3101957
## 1600 3101957
## 1601 3101957
## 1602 3101957
## 1603 3101957
## 1604 3101957
## 1605 3101957
## 1606 3101957
## 1607 3101957
## 1608 3101957
## 1609 3101957
## 1610 3101957
## 1611 3101957
## 1612 3101957
## 1613 3101957
## 1614 3101957
## 1615 3101957
## 1616 3101957
## 1617 3101957
## 1618 3101957
## 1619 3101957
## 1620 3101957
## 1621 3101957
## 1622 3101957
## 1623 3101957
## 1624 3101957
## 1625 3101957
## 1626 3101957
## 1627 3101957
## 1628 3101957
## 1629 3101957
## 1630 3101957
## 1631 3101957
## 1632 3101957
## 1633 3101957
## 1634 3101957
## 1635 3101957
## 1636 3101957
## 1637 3101957
## 1638 3101957
## 1639 3101957
## 1640 3101957
## 1641 3101957
## 1642 3101957
## 1643 3101957
## 1644 3101957
## 1645 3101957
## 1646 3101957
## 1647 3101957
## 1648 3101957
## 1649 3101957
## 1650 3101957
## 1651 3101957
## 1652 3101957
## 1653 3101957
## 1654 3101957
## 1655 3101957
## 1656 3101957
## 1657 3101957
## 1658 3101957
## 1659 3101957
## 1660 3101957
## 1661 3101957
## 1662 3101957
## 1663 3101957
## 1664 3101957
## 1665 3101957
## 1666 3101957
## 1667 3101957
## 1668 3101957
## 1669 3101957
## 1670 3101957
## 1671 3101957
## 1672 3101957
## 1673 3101957
## 1674 3101957
## 1675 3101957
## 1676 3101957
## 1677 3101957
## 1678 3101957
## 1679 3101957
## 1680 3101957
## 1681 3101957
## 1682 3101957
## 1683 3101957
## 1684 3101957
## 1685 3197189
## 1686 3197189
## 1687 3197189
## 1688 3197189
## 1689 3197189
## 1690 3197189
## 1691 3197189
## 1692 3197189
## 1693 3197189
## 1694 3197189
## 1695 3197189
## 1696 3197189
## 1697 3197189
## 1698 3197189
## 1699 3197189
## 1700 3197189
## 1701 3197189
## 1702 3197189
## 1703 3197189
## 1704 3197189
## 1705 3197189
## 1706 3197189
## 1707 3197189
## 1708 3197189
## 1709 3197189
## 1710 3197189
## 1711 3197189
## 1712 3197189
## 1713 3197189
## 1714 3197189
## 1715 3197189
## 1716 3197189
## 1717 3197189
## 1718 3197189
## 1719 3197189
## 1720 3197189
## 1721 3197189
## 1722 3197189
## 1723 3197189
## 1724 3197189
## 1725 3197189
## 1726 3197189
## 1727 3197189
## 1728 3197189
## 1729 3197189
## 1730 3197189
## 1731 3197189
## 1732 3197189
## 1733 3197189
## 1734 3197189
## 1735 3197189
## 1736 3197189
## 1737 3197189
## 1738 3197189
## 1739 3197189
## 1740 3197189
## 1741 3197189
## 1742 3197189
## 1743 3290857
## 1744 3290857
## 1745 3290857
## 1746 3290857
## 1747 3290857
## 1748 3290857
## 1749 3290857
## 1750 3290857
## 1751 3290857
## 1752 3290857
## 1753 3290857
## 1754 3290857
## 1755 3290857
## 1756 3290857
## 1757 3290857
## 1758 3290857
## 1759 3290857
## 1760 3290857
## 1761 3290857
## 1762 3290857
## 1763 3290857
## 1764 3290857
## 1765 3290857
## 1766 3290857
## 1767 3290857
## 1768 3290857
## 1769 3290857
## 1770 3290857
## 1771 3290857
## 1772 3290857
## 1773 3290857
## 1774 3290857
## 1775 3290857
## 1776 3290857
## 1777 3290857
## 1778 3290857
## 1779 3290857
## 1780 3290857
## 1781 3290857
## 1782 3290857
## 1783 3290857
## 1784 3290857
## 1785 3290857
## 1786 3290857
## 1787 3290857
## 1788 3290857
## 1789 3290857
## 1790 3290857
## 1791 3290857
## 1792 3290857
## 1793 3290857
## 1794 3290857
## 1795 3290857
## 1796 3290857
## 1797 3290857
## 1798 3290857
## 1799 3290857
## 1800 3290857
## 1801 3290857
## 1802 3290857
## 1803 3290857
## 1804 3290857
## 1805 3290857
## 1806 3290857
## 1807 2803177
## 1808 2803177
## 1809 2803177
## 1810 2803177
## 1811 2803177
## 1812 2803177
## 1813 2803177
## 1814 2803177
## 1815 2803177
## 1816 2803177
## 1817 2803177
## 1818 2803177
## 1819 2803177
## 1820 2803177
## 1821 2803177
## 1822 2803177
## 1823 2803177
## 1824 2803177
## 1825 2803177
## 1826 2803177
## 1827 2803177
## 1828 2803177
## 1829 2803177
## 1830 2803177
## 1831 2803177
## 1832 2803177
## 1833 2803177
## 1834 2803177
## 1835 2803177
## 1836 2803177
## 1837 2803177
## 1838 2803177
## 1839 2803177
## 1840 2803177
## 1841 2803177
## 1842 2803177
## 1843 2803177
## 1844 2803177
## 1845 2803177
## 1846 2803177
## 1847 2803177
## 1848 2803177
## 1849 2803177
## 1850 2803177
## 1851 2803177
## 1852 2803177
## 1853 2803177
## 1854 2803177
## 1855 2803177
## 1856 2803177
## 1857 2803177
## 1858 2803177
## 1859 2803177
## 1860 2803177
## 1861 2803177
## 1862 2803177
## 1863 2803177
## 1864 2803177
## 1865 2803177
## 1866 2803177
## 1867 2803177
## 1868 2803177
## 1869 2803177
## 1870 2803177
## 1871 2803177
## 1872 2803177
## 1873 2803177
## 1874 2803177
## 1875 3101959
## 1876 3101959
## 1877 3101959
## 1878 3101959
## 1879 3101959
## 1880 3101959
## 1881 3101959
## 1882 3101959
## 1883 3101959
## 1884 3101959
## 1885 3101959
## 1886 3101959
## 1887 3101959
## 1888 3101959
## 1889 3101959
## 1890 3101959
## 1891 3101959
## 1892 3101959
## 1893 3101959
## 1894 3101959
## 1895 3101959
## 1896 3101959
## 1897 3101959
## 1898 3101959
## 1899 3101959
## 1900 3101959
## 1901 3101959
## 1902 3101959
## 1903 3101959
## 1904 3101959
## 1905 3101959
## 1906 3101959
## 1907 3101959
## 1908 3101959
## 1909 3101959
## 1910 3101959
## 1911 3101959
## 1912 3101959
## 1913 3101959
## 1914 3101959
## 1915 3198295
## 1916 3290890
## 1917 3290890
## 1918 3290890
## 1919 3290890
## 1920 3290890
## 1921 3290890
## 1922 3290890
## 1923 3290890
## 1924 3290890
## 1925 3290395
## 1926 3290395
## 1927 3290395
## 1928 3290395
## 1929 3290395
## 1930 3290395
## 1931 3290395
## 1932 3290395
## 1933 3290395
## 1934 3290395
## 1935 3290395
## 1936 3290395
## 1937 3290395
## 1938 3290395
## 1939 3290395
## 1940 3290395
## 1941 3290395
## 1942 3290395
## 1943 3290395
## 1944 3290395
## 1945 3290395
## 1946 3290395
## 1947 3290395
## 1948 3290395
## 1949 3290395
## 1950 3290395
## 1951 3290395
## 1952 3290395
## 1953 3290395
## 1954 3290395
## 1955 3290395
## 1956 3290395
## 1957 3290395
## 1958 3290395
## 1959 3290395
## 1960 3290395
## 1961 3290395
## 1962 3290395
## 1963 3290395
## 1964 3290395
## 1965 2835119
## 1966 2835119
## 1967 2835119
## 1968 2835119
## 1969 2835119
## 1970 2835119
## 1971 2835119
## 1972 2835119
## 1973 2835119
## 1974 2835119
## 1975 2835119
## 1976 2835119
## 1977 2835119
## 1978 2835119
## 1979 2835119
## 1980 2835119
## 1981 2835119
## 1982 2835119
## 1983 2795481
## 1984 2795481
## 1985 2795481
## 1986 2795481
## 1987 2795481
## 1988 2795481
## 1989 2795481
## 1990 2795481
## 1991 2795481
## 1992 2795481
## 1993 2795481
## 1994 2795481
## 1995 2795481
## 1996 2795481
## 1997 2795481
## 1998 2795481
## 1999 2795481
## 2000 2795481
## 2001 2795481
## 2002 2795481
## 2003 2795481
## 2004 2795481
## 2005 2795481
## 2006 2795481
## 2007 2795481
## 2008 2795481
## 2009 2795481
## 2010 2795481
## 2011 2795481
## 2012 2795481
## 2013 2795481
## 2014 2795481
## 2015 2795481
## 2016 2795481
## 2017 2795481
## 2018 2795481
## 2019 2795481
## 2020 2795481
## 2021 2795481
## 2022 2795481
## 2023 2795481
## 2024 2795481
## 2025 2795481
## 2026 2795481
## 2027 2795481
## 2028 2795481
## 2029 2795481
## 2030 2795481
## 2031 2795481
## 2032 2795481
## 2033 2795481
## 2034 2795481
## 2035 2795481
## 2036 2795481
## 2037 2795481
## 2038 2795481
## 2039 2795481
## 2040 2795481
## 2041 2795481
## 2042 2795481
## 2043 2795481
## 2044 2795481
## 2045 2795481
## 2046 2795481
## 2047 2795481
## 2048 2795481
## 2049 2795481
## 2050 2795481
## 2051 2795481
## 2052 2795481
## 2053 2795481
## 2054 2795481
## 2055 2795481
## 2056 2795481
## 2057 2795481
## 2058 2795481
## 2059 3032124
## 2060 3032124
## 2061 3032124
## 2062 3032124
## 2063 3032124
## 2064 3032124
## 2065 3032124
## 2066 3032124
## 2067 3032124
## 2068 3032124
## 2069 3032124
## 2070 3032124
## 2071 3032124
## 2072 3032124
## 2073 3032124
## 2074 3032124
## 2075 3032124
## 2076 3032124
## 2077 3032124
## 2078 3032124
## 2079 3032124
## 2080 3032124
## 2081 3032124
## 2082 3032124
## 2083 3032124
## 2084 3032124
## 2085 3032124
## 2086 3032124
## 2087 3032124
## 2088 3032124
## 2089 3032124
## 2090 3032124
## 2091 3032124
## 2092 3032124
## 2093 3032124
## 2094 3032124
## 2095 3032124
## 2096 3032124
## 2097 3032124
## 2098 3032124
## 2099 3032124
## 2100 3032124
## 2101 3032124
## 2102 3032124
## 2103 3032124
## 2104 3032124
## 2105 3032124
## 2106 3032124
## 2107 3032124
## 2108 3032124
## 2109 3032124
## 2110 3032124
## 2111 3032124
## 2112 3032124
## 2113 3032124
## 2114 3032124
## 2115 3032124
## 2116 3032124
## 2117 3032124
## 2118 3032124
## 2119 3032124
## 2120 3032124
## 2121 2806951
## 2122 2806951
## 2123 2806951
## 2124 2806951
## 2125 2806951
## 2126 2806951
## 2127 2806951
## 2128 2806951
## 2129 2806951
## 2130 2806951
## 2131 2806951
## 2132 2806951
## 2133 2806951
## 2134 2806951
## 2135 2806951
## 2136 2806951
## 2137 2806951
## 2138 2806951
## 2139 2806951
## 2140 2806951
## 2141 2806951
## 2142 2806951
## 2143 2806951
## 2144 2806951
## 2145 2806951
## 2146 2806951
## 2147 2806951
## 2148 2806951
## 2149 2806951
## 2150 2806951
## 2151 2806951
## 2152 2806951
## 2153 2806951
## 2154 2806951
## 2155 2806951
## 2156 2806951
## 2157 2806951
## 2158 2806951
## 2159 2806951
## 2160 2806951
## 2161 2806951
## 2162 2806951
## 2163 2806951
## 2164 2803168
## 2165 2803168
## 2166 2803168
## 2167 2803168
## 2168 2803168
## 2169 2803168
## 2170 2803168
## 2171 2803168
## 2172 2803168
## 2173 2803168
## 2174 2803168
## 2175 2803168
## 2176 2803168
## 2177 2803168
## 2178 2803168
## 2179 2803168
## 2180 2803168
## 2181 2803168
## 2182 2803168
## 2183 2803168
## 2184 2803168
## 2185 2803168
## 2186 2803168
## 2187 2803168
## 2188 2803168
## 2189 2803168
## 2190 2803168
## 2191 2803168
## 2192 2803168
## 2193 2803168
## 2194 2803168
## 2195 2803168
## 2196 2803168
## 2197 2803168
## 2198 2803168
## 2199 2803168
## 2200 2803168
## 2201 2803168
## 2202 2803168
## 2203 2803168
## 2204 2803168
## 2205 2803168
## 2206 2803168
## 2207 2803168
## 2208 2803168
## 2209 2803168
## 2210 2803168
## 2211 2803168
## 2212 2803168
## 2213 2803168
## 2214 2803168
## 2215 2803168
## 2216 2803168
## 2217 2803168
## 2218 2803168
## 2219 2803168
## 2220 2803168
## 2221 2803168
## 2222 2801684
## 2223 2801684
## 2224 2801684
## 2225 2801684
## 2226 2801684
## 2227 2801684
## 2228 2801684
## 2229 2801684
## 2230 2801684
## 2231 2800908
## 2232 2800908
## 2233 2800908
## 2234 2800908
## 2235 2800908
## 2236 2800908
## 2237 2800908
## 2238 2800908
## 2239 2800908
## 2240 2800908
## 2241 2800908
## 2242 2800908
## 2243 2800908
## 2244 2800908
## 2245 2800908
## 2246 2800908
## 2247 2800908
## 2248 2800908
## 2249 2800908
## 2250 2800908
## 2251 2800908
## 2252 2800908
## 2253 2800908
## 2254 2800908
## 2255 2800908
## 2256 2800908
## 2257 2800908
## 2258 2800908
## 2259 2800908
## 2260 2800908
## 2261 2800908
## 2262 2800908
## 2263 2800908
## 2264 2800908
## 2265 2800908
## 2266 2800908
## 2267 2800908
## 2268 2800908
## 2269 2800908
## 2270 2800908
## 2271 2800908
## 2272 2800908
## 2273 2800908
## 2274 2800908
## 2275 2800908
## 2276 2800908
## 2277 2800908
## 2278 2800908
## 2279 2800908
## 2280 2800908
## 2281 2800908
## 2282 2800908
## 2283 2800908
## 2284 2800908
## 2285 2800908
## 2286 2800908
## 2287 2800908
## 2288 2800908
## 2289 2800908
## 2290 2800908
## 2291 2800908
## 2292 2800908
## 2293 2800908
## 2294 2800908
## 2295 2800908
## 2296 2800908
## 2297 2800908
## 2298 2800908
## 2299 2800908
## 2300 2800908
## 2301 2800908
## 2302 2800908
## 2303 2800908
## 2304 2800908
## 2305 2800908
## 2306 2800908
## 2307 2800908
## 2308 2800908
## 2309 2800908
## 2310 2800908
## 2311 2800908
## 2312 2800908
## 2313 2800908
## 2314 2800908
## 2315 2800908
## 2316 2800908
## 2317 2800908
## 2318 2800908
## 2319 2800908
## 2320 2800908
## 2321 2800908
## 2322 2800908
## 2323 2800908
## 2324 2800908
## 2325 2800908
## 2326 2800908
## 2327 2800908
## 2328 2800908
## 2329 2800908
## 2330 2800908
## 2331 2800908
## 2332 2800908
## 2333 2812129
## 2334 2812129
## 2335 2812129
## 2336 2812129
## 2337 2812129
## 2338 2812129
## 2339 2812129
## 2340 2812129
## 2341 2812129
## 2342 2812129
## 2343 2812129
## 2344 2812129
## 2345 2812129
## 2346 2812129
## 2347 2812129
## 2348 2812129
## 2349 2812129
## 2350 2812129
## 2351 2812129
## 2352 2812129
## 2353 2812129
## 2354 2812129
## 2355 2812129
## 2356 2812129
## 2357 2812129
## 2358 2812129
## 2359 2812129
## 2360 2812129
## 2361 2812129
## 2362 2813626
## 2363 2813626
## 2364 2813626
## 2365 2813626
## 2366 2813626
## 2367 2813626
## 2368 2813626
## 2369 2776463
## 2370 2776463
## 2371 2776463
## 2372 2776463
## 2373 2776463
## 2374 2776463
## 2375 2776463
## 2376 2776463
## 2377 2776463
## 2378 2776463
## 2379 2776463
## 2380 2776463
## 2381 2776463
## 2382 2776463
## 2383 2776463
## 2384 2776463
## 2385 2776463
## 2386 2776463
## 2387 2776463
## 2388 2776463
## 2389 2776463
## 2390 2776463
## 2391 2776463
## 2392 2776463
## 2393 2776463
## 2394 2776463
## 2395 2776463
## 2396 2776463
## 2397 2776463
## 2398 2776463
## 2399 2776463
## 2400 2776463
## 2401 2776463
## 2402 2776463
## 2403 3290379
## 2404 3290379
## 2405 3290379
## 2406 3290379
## 2407 3290379
## 2408 3290379
## 2409 3290379
## 2410 3290379
## 2411 3290379
## 2412 3290379
## 2413 3290379
## 2414 3290379
## 2415 3290379
## 2416 3290379
## 2417 3290379
## 2418 3290379
## 2419 2835511
## 2420 2835511
## 2421 2835511
## 2422 2835511
## 2423 2835511
## 2424 2835511
## 2425 2835511
## 2426 2835511
## 2427 2835511
## 2428 2835511
## 2429 2835511
## 2430 2835511
## 2431 2835511
## 2432 2835511
## 2433 2835511
## 2434 2835511
## 2435 2835511
## 2436 2835511
## 2437 2835511
## 2438 2835511
## 2439 2835511
## 2440 2835511
## 2441 2835511
## 2442 2835511
## 2443 2835511
## 2444 2835511
## 2445 2835511
## 2446 2835511
## 2447 2835511
## 2448 2835511
## 2449 2835511
## 2450 2835511
## 2451 2835511
## 2452 2835511
## 2453 2835511
## 2454 2795489
## 2455 2795489
## 2456 2795489
## 2457 2795489
## 2458 2795489
## 2459 2795489
## 2460 2795489
## 2461 2795489
## 2462 2795489
## 2463 2795489
## 2464 2795489
## 2465 2795489
## 2466 2795489
## 2467 2795489
## 2468 2795489
## 2469 2795489
## 2470 3032124
## 2471 3032124
## 2472 3032124
## 2473 3032124
## 2474 3032124
## 2475 3032124
## 2476 3032124
## 2477 3032124
## 2478 3032124
## 2479 3032124
## 2480 3032124
## 2481 3032124
## 2482 3032124
## 2483 3032124
## 2484 3032124
## 2485 3032124
## 2486 3032124
## 2487 3032124
## 2488 3032124
## 2489 3032124
## 2490 3032124
## 2491 3032124
## 2492 3032124
## 2493 3032124
## 2494 3032124
## 2495 3032124
## 2496 3032124
## 2497 3032124
## 2498 3032124
## 2499 3032124
## 2500 3032124
## 2501 3032124
## 2502 3032124
## 2503 3032124
## 2504 3032124
## 2505 3032124
## 2506 3032124
## 2507 3032124
## 2508 3032124
## 2509 3032124
## 2510 3032124
## 2511 3032124
## 2512 3032124
## 2513 3098293
## 2514 3098293
## 2515 3098293
## 2516 3098293
## 2517 3098293
## 2518 3098293
## 2519 3098293
## 2520 3098293
## 2521 3098293
## 2522 3098293
## 2523 3098293
## 2524 3098293
## 2525 3098293
## 2526 3098293
## 2527 3098293
## 2528 3098293
## 2529 3098293
## 2530 3098293
## 2531 3098293
## 2532 3098293
## 2533 3098293
## 2534 3098293
## 2535 3098293
## 2536 3198059
## 2537 3198059
## 2538 3198059
## 2539 3198059
## 2540 3198059
## 2541 3198059
## 2542 3198059
## 2543 3198059
## 2544 3198059
## 2545 3198059
## 2546 3198059
## 2547 3198059
## 2548 3198295
## 2549 3198295
## 2550 3198295
## 2551 3198295
## 2552 3198295
## 2553 3198295
## 2554 3198295
## 2555 3198295
## 2556 3198295
## 2557 3198295
## 2558 3198295
## 2559 3198295
## 2560 3198295
## 2561 3198295
## 2562 2800908
## 2563 2800908
## 2564 2800908
## 2565 2800908
## 2566 2800908
## 2567 2800908
## 2568 2800908
## 2569 2800908
## 2570 2800688
## 2571 2800688
## 2572 2800688
## 2573 2800688
## 2574 2800688
## 2575 2801684
## 2576 2801684
## 2577 2801684
## 2578 2801684
## 2579 2801684
## 2580 2801684
## 2581 2801684
## 2582 2801684
## 2583 2801684
## 2584 2801684
## 2585 2801684
## 2586 2801684
## 2587 2801684
## 2588 2801684
## 2589 2801684
## 2590 2801684
## 2591 2801684
## 2592 2801684
## 2593 2810201
## 2594 2810201
## 2595 2810201
## 2596 2810201
## 2597 2810201
## 2598 2810201
## 2599 2810201
## 2600 2810201
## 2601 2812129
## 2602 2812129
## 2603 2812129
## 2604 2809791
## 2605 2809791
## 2606 2809791
## 2607 2813626
## 2608 2813626
## 2609 2813626
## 2610 2813626
## 2611 2813626
## 2612 2813626
## 2613 2813626
## 2614 2813626
## 2615 2813626
## 2616 2813626
## 2617 2813626
## 2618 2813626
## 2619 2813626
## 2620 2813626
## 2621 2813626
## 2622 2813626
## 2623 2813626
## 2624 2813626
## 2625 2813626
## 2626 2813626
## 2627 2813626
## 2628 2813626
## 2629 2813626
## 2630 2813626
## 2631 2813626
## 2632 2813626
## 2633 3032124
## 2634 2803203
## 2635 2803203
## 2636 2803203
## 2637 2803203
## 2638 2803203
## 2639 2803203
## 2640 2803203
## 2641 2803203
## 2642 2803203
## 2643 2778862
## 2644 2778862
## 2645 2778862
## 2646 2778862
## 2647 2778862
## 2648 2778862
## 2649 2778862
## 2650 2778862
## 2651 2778862
## 2652 2778862
## 2653 2778862
## 2654 2778862
## 2655 2778862
## 2656 2778862
## 2657 2778862
## 2658 3290398
## 2659 3290398
## 2660 3290398
## 2661 3290398
## 2662 3290398
## 2663 3290398
## 2664 3290398
## 2665 3290398
## 2666 3290398
## 2667 3290398
## 2668 3290398
## 2669 3290398
## 2670 3290398
## 2671 3290398
## 2672 3290398
## 2673 3290398
## 2674 3290398
## 2675 3290401
## 2676 3290401
## 2677 3290401
## 2678 3290401
## 2679 3290401
## 2680 3290401
## 2681 3290401
## 2682 3290401
## 2683 3290401
## 2684 3290401
## 2685 3290401
## 2686 3290401
## 2687 3290401
## 2688 3290401
## 2689 3290401
## 2690 3290401
## 2691 3290401
## 2692 3290401
## 2693 3290401
## 2694 2835443
## 2695 2835443
## 2696 2835443
## 2697 2835443
## 2698 2835443
## 2699 2835443
## 2700 2835443
## 2701 2835443
## 2702 2835443
## 2703 2835443
## 2704 2835443
## 2705 2835443
## 2706 2835443
## 2707 2835443
## 2708 2835443
## 2709 2835443
## 2710 2835443
## 2711 2835443
## 2712 2835443
## 2713 2835443
## 2714 2835443
## 2715 2835443
## 2716 2835443
## 2717 2835443
## 2718 2835443
## 2719 2835443
## 2720 2835443
## 2721 2835443
## 2722 2835443
## 2723 2835443
## 2724 2835443
## 2725 2835443
## 2726 2835443
## 2727 2835443
## 2728 2835443
## 2729 2835443
## 2730 2835443
## 2731 2835443
## 2732 2835443
## 2733 2835443
## 2734 2835443
## 2735 2835443
## 2736 2792167
## 2737 2792167
## 2738 2792167
## 2739 2792167
## 2740 2795475
## 2741 2795475
## 2742 2795475
## 2743 2795475
## 2744 2795475
## 2745 2795475
## 2746 2792167
## 2747 2792167
## 2748 2792167
## 2749 2792167
## 2750 2795475
## 2751 2795475
## 2752 2795475
## 2753 2795475
## 2754 2792167
## 2755 2792167
## 2756 2792167
## 2757 2792167
## 2758 2792167
## 2759 2795475
## 2760 2795475
## 2761 2795475
## 2762 2795475
## 2763 2792167
## 2764 2792167
## 2765 2792167
## 2766 2792167
## 2767 2792167
## 2768 2795475
## 2769 2795475
## 2770 2795475
## 2771 2795475
## 2772 2792167
## 2773 2792167
## 2774 2792167
## 2775 2792167
## 2776 2792167
## 2777 2795475
## 2778 2795475
## 2779 2795475
## 2780 2795489
## 2781 2795489
## 2782 2795489
## 2783 2795489
## 2784 2795489
## 2785 2795489
## 2786 2795489
## 2787 2795489
## 2788 2795489
## 2789 2795489
## 2790 2795489
## 2791 2795489
## 2792 2795489
## 2793 2795489
## 2794 2795489
## 2795 2795489
## 2796 2795489
## 2797 2795489
## 2798 2795489
## 2799 2795489
## 2800 2795489
## 2801 2795489
## 2802 2795489
## 2803 2795489
## 2804 2795489
## 2805 2795489
## 2806 2795489
## 2807 2795489
## 2808 2795489
## 2809 2795489
## 2810 2795489
## 2811 2795489
## 2812 3032124
## 2813 3032124
## 2814 3032124
## 2815 3032124
## 2816 3032124
## 2817 3032124
## 2818 3032124
## 2819 3032124
## 2820 3032124
## 2821 3032124
## 2822 3032124
## 2823 3032124
## 2824 3032124
## 2825 3032124
## 2826 3032124
## 2827 3032124
## 2828 3032124
## 2829 3032124
## 2830 3032124
## 2831 3032124
## 2832 3032124
## 2833 3032124
## 2834 3032124
## 2835 3032124
## 2836 3032124
## 2837 3032124
## 2838 3032124
## 2839 3032124
## 2840 3032124
## 2841 3032124
## 2842 3032124
## 2843 3032124
## 2844 3032124
## 2845 3032124
## 2846 3032124
## 2847 3032124
## 2848 3032124
## 2849 3032124
## 2850 3032124
## 2851 3032124
## 2852 3032124
## 2853 3032124
## 2854 3032124
## 2855 3097599
## 2856 3097599
## 2857 3097599
## 2858 3097599
## 2859 3097599
## 2860 3097599
## 2861 3097599
## 2862 3097599
## 2863 3097599
## 2864 3097599
## 2865 3097599
## 2866 3097599
## 2867 3097599
## 2868 3097599
## 2869 3097599
## 2870 3097599
## 2871 3097599
## 2872 3097599
## 2873 3097599
## 2874 3097599
## 2875 3097599
## 2876 3097599
## 2877 3097599
## 2878 3097599
## 2879 3097599
## 2880 3097599
## 2881 3097599
## 2882 3097599
## 2883 3097599
## 2884 3097599
## 2885 3097599
## 2886 3097599
## 2887 3097599
## 2888 3097599
## 2889 3097599
## 2890 3097599
## 2891 3097599
## 2892 3097599
## 2893 3097599
## 2894 3097599
## 2895 3097599
## 2896 3097599
## 2897 3097599
## 2898 3097599
## 2899 3097599
## 2900 3097599
## 2901 3097599
## 2902 3097599
## 2903 3097599
## 2904 3097599
## 2905 3196212
## 2906 3196212
## 2907 3196212
## 2908 3196212
## 2909 3196212
## 2910 3196212
## 2911 3196212
## 2912 3196212
## 2913 3196212
## 2914 3196212
## 2915 3196212
## 2916 3196212
## 2917 3196212
## 2918 3196212
## 2919 3196212
## 2920 3196212
## 2921 3196212
## 2922 3196212
## 2923 3196212
## 2924 3196212
## 2925 3196212
## 2926 3196212
## 2927 3196212
## 2928 3196212
## 2929 3196212
## 2930 3196212
## 2931 3196212
## 2932 3196212
## 2933 3196212
## 2934 2812126
## 2935 2812126
## 2936 2812126
## 2937 2812126
## 2938 2812126
## 2939 2803203
## 2940 2803203
## 2941 2803203
## 2942 2803203
## 2943 2803203
## 2944 2810210
## 2945 2810210
## 2946 2810210
## 2947 2810210
## 2948 2810210
## 2949 2800915
## 2950 2800915
## 2951 2800915
## 2952 2813653
## 2953 2813653
## 2954 2813653
## 2955 2806891
## 2956 2806891
## 2957 2806891
## 2958 2806891
## 2959 2806891
## 2960 2801664
## 2961 2801664
## 2962 2801664
## 2963 2801664
## 2964 2810210
## 2965 2810210
## 2966 2810210
## 2967 2812126
## 2968 2812126
## 2969 2812126
## 2970 2812126
## 2971 2800915
## 2972 2800915
## 2973 2800915
## 2974 2800915
## 2975 2800915
## 2976 2806891
## 2977 2806891
## 2978 2806891
## 2979 2806891
## 2980 2806891
## 2981 2813653
## 2982 2813653
## 2983 2813653
## 2984 2812126
## 2985 2812126
## 2986 2812126
## 2987 2812126
## 2988 2803203
## 2989 2803203
## 2990 2803203
## 2991 2803203
## 2992 2810210
## 2993 2810210
## 2994 2810210
## 2995 2810210
## 2996 2810210
## 2997 2800915
## 2998 2800915
## 2999 2800915
## 3000 2800915
## 3001 2800915
## 3002 2806891
## 3003 2806891
## 3004 2806891
## 3005 2801664
## 3006 2801664
## 3007 2801664
## 3008 2801664
## 3009 2801664
## 3010 2812126
## 3011 2812126
## 3012 2812126
## 3013 2812126
## 3014 2812126
## 3015 2812126
## 3016 2812126
## 3017 2812126
## 3018 2812126
## 3019 2812126
## 3020 2803203
## 3021 2803203
## 3022 2803203
## 3023 2803203
## 3024 2803203
## 3025 2810210
## 3026 2810210
## 3027 2800915
## 3028 2800915
## 3029 2800915
## 3030 2806891
## 3031 2806891
## 3032 2806891
## 3033 2801664
## 3034 2801664
## 3035 2801664
## 3036 2801664
## 3037 2801664
## 3038 2801664
## 3039 2801664
## 3040 2801664
## 3041 2801664
## 3042 2801664
## 3043 2801664
## 3044 2801664
## 3045 2801664
## 3046 2801664
## 3047 2801664
## 3048 2801664
## 3049 2801664
## 3050 2801664
## 3051 2801664
## 3052 2801664
## 3053 2801664
## 3054 2803203
## 3055 2803203
## 3056 2803203
## 3057 2803203
## 3058 2803203
## 3059 2803203
## 3060 2812126
## 3061 2812126
## 3062 2812126
## 3063 2812126
## 3064 2812126
## 3065 2812126
## 3066 2812126
## 3067 2812126
## 3068 2810210
## 3069 2810210
## 3070 2810210
## 3071 2810210
## 3072 2812126
## 3073 2812126
## 3074 2812126
## 3075 2812126
## 3076 2812126
## 3077 2812126
## 3078 2801664
## 3079 2801664
## 3080 2801664
## 3081 2801664
## 3082 2801664
## 3083 2801664
## 3084 2801664
## 3085 2801664
## 3086 2801664
## 3087 2801664
## 3088 2801664
## 3089 2801664
## 3090 2801664
## 3091 2801664
## 3092 2806891
## 3093 2806891
## 3094 2806891
## 3095 2806891
## 3096 2813653
## 3097 2813653
## 3098 2813653
## 3099 2813653
## 3100 2813653
## 3101 2813653
## 3102 2813653
## 3103 2813653
## 3104 2803203
## 3105 2803203
## 3106 2803203
## 3107 2803203
## 3108 2803203
## 3109 2803203
## 3110 2803203
## 3111 2803203
## 3112 2803203
## 3113 2803203
## 3114 2803203
## 3115 2803203
## 3116 2803203
## 3117 2803203
## 3118 2800915
## 3119 2800915
## 3120 2800915
## 3121 2800915
## 3122 2800915
## 3123 2800915
## 3124 2800915
## 3125 2800915
## 3126 2800915
## 3127 2800915
## 3128 2800915
## 3129 2800915
## 3130 2800915
## 3131 2800915
## 3132 2800915
## 3133 2800915
## 3134 2800915
## 3135 2800915
## 3136 2800915
## 3137 2810210
## 3138 2810210
## 3139 2810210
## 3140 2810210
## 3141 2810210
## 3142 2810210
## 3143 2810210
## 3144 2810210
## 3145 2810210
## 3146 2810210
## 3147 2810210
## 3148 2810210
## 3149 2810210
## 3150 2810210
## 3151 2810210
## 3152 2810210
## 3153 2810210
## 3154 2810210
## 3155 2777539
## 3156 2777539
## 3157 2777539
## 3158 2777539
## 3159 2777539
## 3160 2776436
## 3161 2776436
## 3162 2776436
## 3163 2776436
## 3164 2776436
## 3165 2777539
## 3166 2777539
## 3167 2777539
## 3168 2777539
## 3169 2777539
## 3170 2776436
## 3171 2776436
## 3172 2776436
## 3173 2776436
## 3174 2776436
## 3175 2777539
## 3176 2777539
## 3177 2777539
## 3178 2777539
## 3179 2777539
## 3180 2776436
## 3181 2776436
## 3182 2776436
## 3183 2776436
## 3184 2777539
## 3185 2777539
## 3186 2777539
## 3187 2776436
## 3188 2776436
## 3189 2776436
## 3190 2776436
## 3191 2776436
## 3192 2776436
## 3193 2776436
## 3194 2776436
## 3195 2776436
## 3196 2776436
## 3197 2776436
## 3198 2776436
## 3199 2776436
## 3200 2776436
## 3201 2776436
## 3202 2776436
## 3203 2776436
## 3204 2776436
## 3205 2776436
## 3206 2776436
## 3207 2776436
## 3208 2776436
## 3209 2776436
## 3210 2776436
## 3211 2776436
## 3212 2776436
## 3213 2776436
## 3214 2776436
## 3215 2776436
## 3216 2776436
## 3217 2776436
## 3218 2776436
## 3219 2776436
## 3220 2776436
## 3221 2776436
## 3222 2776436
## 3223 2776436
## 3224 2777539
## 3225 2777539
## 3226 2776436
## 3227 2776436
## 3228 2776436
## 3229 2776436
## 3230 2776436
## 3231 2776436
## 3232 2776436
## 3233 2776436
## 3234 2776436
## 3235 2776436
## 3236 2776436
## 3237 2776436
## 3238 2776436
## 3239 2776436
## 3240 2776436
## 3241 2776436
## 3242 2776436
## 3243 2776436
## 3244 2776436
## 3245 2776436
## 3246 2776436
## 3247 2776436
## 3248 2776436
## 3249 2776436
## 3250 2776436
## 3251 2835443
## 3252 2835443
## 3253 2835443
## 3254 2835443
## 3255 2835443
## 3256 2835443
## 3257 2835443
## 3258 2835443
## 3259 2835443
## 3260 2835443
## 3261 2835443
## 3262 2835443
## 3263 2810201
## 3264 2810201
## 3265 2810201
## 3266 2810201
## 3267 2810201
## 3268 2810201
## 3269 2810201
## 3270 2810201
## 3271 2810201
## 3272 2810201
## 3273 2810201
## 3274 2810201
## 3275 2810201
## 3276 2810201
## 3277 2813669
## 3278 2813669
## 3279 2813669
## 3280 2813669
## 3281 2813669
## 3282 2813669
## 3283 2813669
## 3284 2813669
## 3285 2813669
## 3286 2813669
## 3287 2813669
## 3288 2813669
## 3289 3032121
## 3290 3032121
## 3291 3032121
## 3292 3032121
## 3293 3032121
## 3294 3032121
## 3295 3032121
## 3296 3032121
## 3297 3032121
## 3298 3032121
## 3299 3032121
## 3300 3032121
## 3301 3032121
## 3302 3032121
## 3303 3032121
## 3304 3032121
## 3305 3032121
## 3306 3032121
## 3307 3032121
## 3308 3032121
## 3309 3032121
## 3310 2806891
## 3311 2806891
## 3312 2806891
## 3313 2806891
## 3314 2842386
## 3315 2842386
## 3316 2842386
## 3317 2842386
## 3318 2795475
## 3319 2795475
## 3320 2795475
## 3321 2795475
## 3322 2795475
## 3323 2795475
## 3324 2795475
## 3325 2812126
## 3326 2812126
## 3327 2812126
## 3328 2812126
## 3329 2812126
## 3330 2812126
## 3331 2795481
## 3332 2795481
## 3333 2795481
## 3334 2801522
## 3335 2801522
## 3336 2801522
## 3337 2801522
## 3338 2801522
## 3339 2801522
## 3340 3097587
## 3341 3097587
## 3342 3097587
## 3343 3097587
## 3344 3097587
## 3345 3097587
## 3346 3097587
## 3347 3097587
## 3348 3097587
## 3349 3097587
## 3350 3097587
## 3351 3097587
## 3352 3097587
## 3353 3097587
## 3354 3097587
## 3355 3097587
## 3356 3097587
## 3357 3097587
## 3358 3097587
## 3359 3097587
## 3360 3097587
## 3361 3097587
## 3362 3097587
## 3363 3097587
## 3364 3097587
## 3365 3097587
## 3366 3097587
## 3367 3097587
## 3368 3097587
## 3369 3097587
## 3370 3097587
## 3371 3097587
## 3372 3097587
## 3373 3097587
## 3374 3097587
## 3375 3097587
## 3376 3097587
## 3377 3097587
## 3378 3097587
## 3379 3097587
## 3380 3097587
## 3381 3097587
## 3382 3097587
## 3383 3097587
## 3384 3097587
## 3385 3097587
## 3386 3097587
## 3387 3097587
## 3388 3097587
## 3389 3097587
## 3390 3097587
## 3391 3097587
## 3392 3097587
## 3393 3097587
## 3394 3196220
## 3395 3196220
## 3396 3196220
## 3397 3196220
## 3398 3196220
## 3399 3196220
## 3400 3196220
## 3401 3196220
## 3402 3196220
## 3403 3196220
## 3404 3196220
## 3405 3196220
## 3406 3196220
## 3407 3196220
## 3408 3196220
## 3409 3196220
## 3410 3196220
## 3411 3196220
## 3412 3196220
## 3413 3196220
## 3414 3196220
## 3415 3196220
## 3416 3196220
## 3417 3196220
## 3418 3196220
## 3419 3196220
## 3420 3196220
## 3421 3196220
## 3422 3196220
## 3423 3196220
## 3424 3196220
## 3425 3196220
## 3426 3196220
## 3427 3196220
## 3428 3196220
## 3429 3196220
## 3430 3196220
## 3431 3196220
## 3432 3196220
## 3433 3196220
## 3434 3196220
## 3435 3196220
## 3436 3196220
## 3437 3196220
## 3438 3196220
## 3439 3196220
## 3440 3196220
## 3441 3196220
## 3442 3196220
## 3443 3196220
## 3444 3196220
## 3445 3196220
## 3446 3196220
## 3447 3196220

A variogram is used to display the variability between data points as a function of distance. Here, from distances 0 to 4000 m, the variability between points starts high and then decreases (the points become more similar) until it levels out because at some point the distance between data points will be great enough that the points are no longer considered to be related to each other. The variability will flatten out into a “sill”.

No spatial dependencies for wing morph.

Let’s see what impacts the long-wing morph variance:

SE = function(x){sd(x)/sqrt(length(x))}
wmorph_summary<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year, data=raw_data, FUN=mean)
wmorph_summary$se<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year, data=raw_data,
                          FUN=SE)$wing_morph_binom
wmorph_summary
##    sex_binom pophost_binom month_of_year wing_morph_binom         se
## 1         -1            -1             2        0.7477876 0.02895217
## 2          1            -1             2        0.6971831 0.03869492
## 3         -1             1             2        0.9545455 0.01819916
## 4          1             1             2        0.9411765 0.02874575
## 5         -1            -1             4        0.6546763 0.04047501
## 6          1            -1             4        0.4500000 0.03945382
## 7         -1             1             4        0.9238579 0.01894467
## 8          1             1             4        0.9184783 0.02022766
## 9         -1            -1             5        0.5023474 0.03433976
## 10         1            -1             5        0.4551724 0.04149887
## 11        -1             1             5        0.8095238 0.04986999
## 12         1             1             5        0.9540230 0.01592307
## 13        -1            -1             8        0.6727273 0.06385245
## 14         1            -1             8        0.8108108 0.06527647
## 15        -1             1             8        0.8186813 0.02863779
## 16         1             1             8        0.7727273 0.03387982
## 17        -1            -1             9        0.5357143 0.09597926
## 18         1            -1             9        0.4500000 0.07966275
## 19        -1             1             9        0.9583333 0.02914766
## 20         1             1             9        0.9298246 0.03413493
## 21        -1            -1            10        0.8163265 0.03931600
## 22         1            -1            10        0.8681319 0.03566494
## 23        -1             1            10        0.9583333 0.02050175
## 24         1             1            10        0.9625000 0.02137482
## 25        -1            -1            12        0.7849462 0.04283508
## 26         1            -1            12        0.6632653 0.04798458
## 27        -1             1            12        0.9525862 0.01398294
## 28         1             1            12        0.9302326 0.01741467
SE = function(x){sd(x)/sqrt(length(x))}
wmorph_summaryt<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year*months_since_start, data=raw_data, FUN=mean)
wmorph_summaryt$se<-aggregate(wing_morph_binom~sex_binom*pophost_binom*month_of_year*months_since_start, data=raw_data,
                          FUN=SE)$wing_morph_binom
wmorph_summaryt
##    sex_binom pophost_binom month_of_year months_since_start wing_morph_binom
## 1         -1            -1             4                  0        0.7631579
## 2          1            -1             4                  0        0.5932203
## 3         -1             1             4                  0        0.8807339
## 4          1             1             4                  0        0.9090909
## 5         -1            -1            12                  7        0.7750000
## 6          1            -1            12                  7        0.7600000
## 7         -1             1            12                  7        0.9726027
## 8          1             1            12                  7        0.9387755
## 9         -1            -1             4                 11        0.6578947
## 10         1            -1             4                 11        0.4285714
## 11        -1             1             4                 11        0.9534884
## 12         1             1             4                 11        0.9206349
## 13        -1            -1             4                 23        0.3200000
## 14         1            -1             4                 23        0.2631579
## 15        -1             1             4                 23        1.0000000
## 16         1             1             4                 23        0.9318182
## 17        -1            -1            12                 43        0.7924528
## 18         1            -1            12                 43        0.5625000
## 19        -1             1            12                 43        0.9186047
## 20         1             1            12                 43        0.9117647
## 21        -1            -1             8                 51        0.6727273
## 22         1            -1             8                 51        0.8108108
## 23        -1             1             8                 51        0.8186813
## 24         1             1             8                 51        0.7727273
## 25        -1            -1             9                 64        0.5357143
## 26         1            -1             9                 64        0.4500000
## 27        -1             1             9                 64        0.9583333
## 28         1             1             9                 64        0.9298246
## 29        -1            -1             5                 72        0.5023474
## 30         1            -1             5                 72        0.4551724
## 31        -1             1             5                 72        0.8095238
## 32         1             1             5                 72        0.9540230
## 33        -1            -1            10                 77        0.8163265
## 34         1            -1            10                 77        0.8681319
## 35        -1             1            10                 77        0.9583333
## 36         1             1            10                 77        0.9625000
## 37        -1            -1             2                 81        0.7477876
## 38         1            -1             2                 81        0.6971831
## 39        -1             1             2                 81        0.9545455
## 40         1             1             2                 81        0.9411765
##            se
## 1  0.04909147
## 2  0.06450207
## 3  0.03118666
## 4  0.03297619
## 5  0.06686669
## 6  0.06101188
## 7  0.01355618
## 8  0.01984116
## 9  0.07799329
## 10 0.06284876
## 11 0.03249480
## 12 0.03432911
## 13 0.09521905
## 14 0.07239266
## 15 0.00000000
## 16 0.03843843
## 17 0.05623976
## 18 0.07236047
## 19 0.02965887
## 20 0.03465175
## 21 0.06385245
## 22 0.06527647
## 23 0.02863779
## 24 0.03387982
## 25 0.09597926
## 26 0.07966275
## 27 0.02914766
## 28 0.03413493
## 29 0.03433976
## 30 0.04149887
## 31 0.04986999
## 32 0.01592307
## 33 0.03931600
## 34 0.03566494
## 35 0.02050175
## 36 0.02137482
## 37 0.02895217
## 38 0.03869492
## 39 0.01819916
## 40 0.02874575
data = wmorph_summaryt
data<-data.frame(R=data$se, 
                 A=data$sex_binom, 
                 B=data$pophost_binom, 
                 C=(data$month_of_year),
                 D=data$months_since_start)

model_script = paste0(source_path,"generic models-gaussian glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]       [,5]       [,6]      
## AICs   -214.5526 -212.7803 -212.6305 -211.6039  -210.9526  -210.8586 
## models 2         6         4         10         8          7         
## probs  0.3744958 0.154379  0.143242  0.08573395 0.06190446 0.05906201
## 
## m2   glm(formula = R ~ B, family = gaussian, data = data)
## m6   glm(formula = R ~ B + C, family = gaussian, data = data)
## m4   glm(formula = R ~ A + B, family = gaussian, data = data)
## m10  glm(formula = R ~ B * C, family = gaussian, data = data)
## m8   glm(formula = R ~ A * B, family = gaussian, data = data)
## m7   glm(formula = R ~ A + B + C, family = gaussian, data = data)
anova(m2, m6, test="Chisq") # Adding C does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ B
## Model 2: R ~ B + C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1        38  0.0094399                       
## 2        37  0.0093863  1 5.3574e-05   0.6458
anova(m2, m4, test="Chisq") # Adding B does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ B
## Model 2: R ~ A + B
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1        38  0.0094399                       
## 2        37  0.0094215  1 1.8368e-05   0.7883
m = glm(se ~ pophost_binom, data=wmorph_summary, family="gaussian")
tidy_regression(m, is_color=FALSE) # -1 = C.corindum
## glm se ~ pophost_binom gaussian wmorph_summary 
## AIC:  -150.5916 
## (Intercept)      coeff:  0.0373204   Pr(>|t|):  8.524448e-13 *
## pophost_binom    coeff:  -0.01225    Pr(>|t|):  0.0002565282 *

only an (-) effect of pophost, where if from GRT then have more variation vs. if from BV have less variation.

model_script = paste0(source_path,"generic models-gaussian glm 4-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]       [,3]       [,4]       [,5]      
## AICs   -217.8821 -216.5781  -216.1743  -215.9757  -215.8655 
## models 20        54         31         30         9         
## probs  0.1397546 0.07281413 0.05950149 0.05387604 0.05098831
## 
## m20  glm(formula = R ~ B * D, family = gaussian, data = data)
## m54  glm(formula = R ~ B * D + C * D, family = gaussian, data = data)
## m31  glm(formula = R ~ B * D + C, family = gaussian, data = data)
## m30  glm(formula = R ~ B * D + A, family = gaussian, data = data)
## m9   glm(formula = R ~ B + D, family = gaussian, data = data)
anova(m98, m110, test="Chisq") # adding B*D does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + A * D + B * C + C * D
## Model 2: R ~ A * B + A * D + B * C + B * D + C * D
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)  
## 1        31  0.0078670                         
## 2        30  0.0070296  1 0.00083736  0.05871 .
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
anova(m84, m98, test="Chisq") # adding A*B marginally improves fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * D + B * C + C * D
## Model 2: R ~ A * B + A * D + B * C + C * D
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1        32  0.0079426                       
## 2        31  0.0078670  1 7.5565e-05   0.5853
anova(m63, m84, test="Chisq") # Adding C*D improves fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * D + C * D + B
## Model 2: R ~ A * D + B * C + C * D
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1        33  0.0081339                       
## 2        32  0.0079426  1 0.00019131     0.38
anova(m51, m63, test="Chisq") # Adding B improves fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * D + C * D
## Model 2: R ~ A * D + C * D + B
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1        34  0.0188338                          
## 2        33  0.0081339  1   0.0107 4.437e-11 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(wing_morph_binom ~ sex_binom*months_since_start + month_of_year*months_since_start + pophost_binom*month_of_year, data=raw_data, family="binomial") # m84 top model
tidy_regression(m, is_color=FALSE)
## glm wing_morph_binom ~ sex_binom * months_since_start + month_of_year * months_since_start + pophost_binom * month_of_year binomial raw_data 
## AIC:  3153.878 
## (Intercept)                          coeff:  0.7451722   Pr(>|t|):  4.602795e-05 *
## sex_binom                            coeff:  -0.2795173  Pr(>|t|):  0.001839581 *
## months_since_start                   coeff:  0.0107375   Pr(>|t|):  0.0002693158 *
## month_of_year                        coeff:  0.0999381   Pr(>|t|):  8.330409e-05 *
## pophost_binom                        coeff:  1.1096798   Pr(>|t|):  3.856829e-22 *
## sex_binom:months_since_start         coeff:  0.0032232   Pr(>|t|):  0.031874 *
## months_since_start:month_of_year     coeff:  -0.0014745  Pr(>|t|):  0.001163954 *
## month_of_year:pophost_binom          coeff:  -0.0365335  Pr(>|t|):  0.0152444 *
  • Males are more likely to be long-winged.
  • K.elegans more likely to be long-winged.
  • (+) effect of getting later in the season (month_of_year), such that long wing morphs become increasingly likely later in the year.
  • (+) effect of months_since_start, such that long wing morphs become increasingly likely across the decade.
  • (+) effect of sex*months_since_start where if female and later in the decade then more likely to be long-winged
  • weak (-) effect of month_of_year and months_since_start where the later in the year and later in the decade, the more likely short wing morphs will be present.
  • (-) effect of month of year and pophost where if from C.corindum and later in the season, then more likely long wing morphs will be present

Model Validation

temp = raw_data %>%
  filter(!is.na(wing_morph_binom)) # filter out NA's that glm did automatically
check_spatial_dependencies(m, temp, temp$long, temp$lat, zone = 16, cutoff=10000, is_glm=TRUE)
## Warning in showSRID(uprojargs, format = "PROJ", multiline = "NO", prefer_proj
## = prefer_proj): Discarded datum Unknown based on WGS84 ellipsoid in Proj4
## definition
## Warning in proj4string(res): CRS object has comment, which is lost in output
## [1] "m"

##         pophost      population sex beak thorax  wing  body     month   year
## 1     K.elegans        Ft.Myers   M 5.24   2.86  7.98 10.92     April 2013.0
## 2     K.elegans        Ft.Myers   M 5.72   3.09  8.27 11.58     April 2013.0
## 3     K.elegans        Ft.Myers   M 5.81   3.10  8.72 11.54     April 2013.0
## 4     K.elegans        Ft.Myers   M 4.60   2.51  6.57  8.95     April 2013.0
## 5     K.elegans        Ft.Myers   M 5.75   2.97  8.38 11.38     April 2013.0
## 6     K.elegans        Ft.Myers   M 5.42   2.96  7.85 10.80     April 2013.0
## 7     K.elegans        Ft.Myers   M 5.64   2.87  8.02 10.67     April 2013.0
## 8     K.elegans        Ft.Myers   M 5.22   2.60  7.36 10.14     April 2013.0
## 9     K.elegans        Ft.Myers   M 5.17   2.87  7.81 10.42     April 2013.0
## 10    K.elegans        Ft.Myers   F 6.99   3.78  9.93 13.50     April 2013.0
## 11    K.elegans        Ft.Myers   F 7.38   3.35  9.07 12.45     April 2013.0
## 12    K.elegans        Ft.Myers   M 5.09   2.81  7.77 10.45     April 2013.0
## 13    K.elegans        Ft.Myers   M 5.55   3.19  8.57 11.57     April 2013.0
## 14    K.elegans        Ft.Myers   M 5.81   3.33  8.51 11.58     April 2013.0
## 15    K.elegans        Ft.Myers   F 6.22   3.03  5.20    NA     April 2013.0
## 16    K.elegans        Ft.Myers   M 5.73   3.05  8.09 10.73     April 2013.0
## 17    K.elegans        Ft.Myers   M 5.26   3.05  8.09 10.96     April 2013.0
## 18    K.elegans        Ft.Myers   F 6.41   3.74 10.26 13.27     April 2013.0
## 19    K.elegans        Ft.Myers   M 5.50   3.05  8.45 11.37     April 2013.0
## 20    K.elegans        Ft.Myers   F 6.12   3.16  8.73 11.83     April 2013.0
## 21    K.elegans        Ft.Myers   F 7.99   3.47 10.02 13.48     April 2013.0
## 22    K.elegans        Ft.Myers   M 5.24   3.05  7.58 10.45     April 2013.0
## 23    K.elegans        Ft.Myers   F 7.29   3.49  9.94 13.33     April 2013.0
## 24    K.elegans        Ft.Myers   M 5.66   2.83  7.67 10.51     April 2013.0
## 25    K.elegans        Ft.Myers   F 7.87   3.52  9.79 13.35     April 2013.0
## 26    K.elegans        Ft.Myers   M 5.27   2.80  7.89 10.55     April 2013.0
## 27    K.elegans        Ft.Myers   F 8.09   3.58  9.73    NA       May 2013.0
## 28    K.elegans        Ft.Myers   F 7.40   3.42  9.52    NA       May 2013.0
## 29    K.elegans        Ft.Myers   F 5.54   2.45  4.18    NA       May 2013.0
## 30    K.elegans        Ft.Myers   M 5.51   2.49  4.38    NA       May 2013.0
## 31    K.elegans        Ft.Myers   F 6.74   3.44  9.28    NA       May 2013.0
## 32    K.elegans        Ft.Myers   M 6.06   3.05  8.12    NA       May 2013.0
## 33    K.elegans        Ft.Myers   M 6.05   3.22  8.67    NA       May 2013.0
## 34    K.elegans        Ft.Myers   M 5.74   3.15  8.40    NA       May 2013.0
## 35    K.elegans        Ft.Myers   F 5.90   2.71  5.49    NA       May 2013.0
## 36    K.elegans        Ft.Myers   M 5.37   2.93  7.97    NA       May 2013.0
## 37    K.elegans        Ft.Myers   F 7.72   3.28  9.24    NA       May 2013.0
## 38    K.elegans        Ft.Myers   M 5.62   2.85  7.71    NA       May 2013.0
## 39    K.elegans        Ft.Myers   M 6.30   2.84  7.22    NA       May 2013.0
## 40    K.elegans        Ft.Myers   M 6.26   3.20  8.93    NA       May 2013.0
## 41    K.elegans        Ft.Myers   M 5.35   2.97  7.88    NA       May 2013.0
## 42    K.elegans        Ft.Myers   F 6.65   2.84  7.85    NA       May 2013.0
## 43    K.elegans        Ft.Myers   M 5.43   3.09  8.93    NA       May 2013.0
## 44    K.elegans        Ft.Myers   F 6.26   2.95  6.10    NA       May 2013.0
## 45    K.elegans        Ft.Myers   M 5.43   2.82  7.63    NA       May 2013.0
## 46    K.elegans        Ft.Myers   F 7.85   3.71  9.80    NA       May 2013.0
## 47    K.elegans        Ft.Myers   M 5.69   2.87  8.42    NA       May 2013.0
## 48    K.elegans        Ft.Myers   F 5.87   2.80  4.96    NA       May 2013.0
## 49    K.elegans        Ft.Myers   F 6.67   3.62  9.47    NA       May 2013.0
## 50    K.elegans        Ft.Myers   M 5.36   2.70  7.12    NA       May 2013.0
## 51    K.elegans        Ft.Myers   F 6.49   2.94  7.46    NA       May 2013.0
## 52    K.elegans        Ft.Myers   M 5.62   3.13  8.31    NA       May 2013.0
## 53    K.elegans        Ft.Myers   M 5.80   3.17  8.46    NA       May 2013.0
## 54    K.elegans        Ft.Myers   F 6.50   3.67  9.39    NA       May 2013.0
## 55    K.elegans        Ft.Myers   M 5.66   2.83  8.34    NA       May 2013.0
## 56    K.elegans        Ft.Myers   F 7.79   3.34  8.79    NA       May 2013.0
## 57    K.elegans        Ft.Myers   M 5.24   2.73  7.62    NA       May 2013.0
## 58    K.elegans        Ft.Myers   M 5.33   2.83  7.89    NA       May 2013.0
## 59    K.elegans        Ft.Myers   F 7.97   3.88 10.66    NA       May 2013.0
## 60    K.elegans        Ft.Myers   F 7.03   2.90  8.15    NA       May 2013.0
## 61    K.elegans        Ft.Myers   F 7.67   3.41  9.37    NA       May 2013.0
## 62    K.elegans        Ft.Myers   M 5.68   3.14  8.95    NA       May 2013.0
## 63    K.elegans        Ft.Myers   F 7.78   3.51  9.02    NA       May 2013.0
## 64    K.elegans        Ft.Myers   M 5.27   2.89  7.12    NA       May 2013.0
## 65    K.elegans        Ft.Myers   F 6.74   3.64  9.66    NA       May 2013.0
## 66    K.elegans        Ft.Myers   F 8.13   3.77  9.53    NA       May 2013.0
## 67    K.elegans        Ft.Myers   M 5.58   3.03  8.52    NA       May 2013.0
## 68    K.elegans        Ft.Myers   F 7.16   3.34  9.57    NA       May 2013.0
## 69    K.elegans        Ft.Myers   F 7.32   2.96  8.80    NA       May 2013.0
## 70    K.elegans        Ft.Myers   M 5.54   2.93  7.26    NA       May 2013.0
## 71    K.elegans        Ft.Myers   F 7.94   3.56 10.07    NA       May 2013.0
## 72    K.elegans        Ft.Myers   F 6.00   2.69  6.82    NA       May 2013.0
## 73    K.elegans        Ft.Myers   F 8.34   3.67  9.34    NA       May 2013.0
## 74    K.elegans        Ft.Myers   M 5.54   3.23  8.74    NA       May 2013.0
## 75    K.elegans        Ft.Myers   M 5.34   2.91  7.68    NA       May 2013.0
## 76   C.corindum       Homestead   F 6.54   3.05  5.20    NA     April 2013.0
## 77   C.corindum       Homestead   M 5.36   2.61  7.68    NA     April 2013.0
## 78   C.corindum       Homestead   F 7.82   3.51  9.93    NA     April 2013.0
## 79   C.corindum       Homestead   M 5.59   2.78  7.54    NA     April 2013.0
## 80   C.corindum       Homestead   F 6.87   3.18  5.43    NA     April 2013.0
## 81   C.corindum       Homestead   M 5.39   3.00  7.56    NA     April 2013.0
## 82   C.corindum       Homestead   M 5.02   2.37  4.33    NA     April 2013.0
## 83   C.corindum       Homestead   M 5.49   2.69  4.41    NA     April 2013.0
## 84   C.corindum       Homestead   F 6.92   3.27  8.19    NA     April 2013.0
## 85   C.corindum       Homestead   F 6.00   2.95  5.66    NA     April 2013.0
## 86   C.corindum       Homestead   M 5.35   2.57  4.04    NA     April 2013.0
## 87   C.corindum       Homestead   M 4.68   2.28  3.94    NA     April 2013.0
## 88   C.corindum       Homestead   M 5.20   2.53  4.55    NA     April 2013.0
## 89   C.corindum       Homestead   M 5.32   2.44  4.30    NA     April 2013.0
## 90   C.corindum       Homestead   F 5.75   2.63  4.66    NA     April 2013.0
## 91   C.corindum       Homestead   M 5.10   2.58  4.31    NA     April 2013.0
## 92   C.corindum       Homestead   M 5.38   2.57  4.92    NA     April 2013.0
## 93   C.corindum       Homestead   M 6.07   3.15  8.46    NA     April 2013.0
## 94   C.corindum       Homestead   F 7.54   3.25  9.25    NA     April 2013.0
## 95   C.corindum       Homestead   M 4.95   2.60  4.26    NA     April 2013.0
## 96   C.corindum       Homestead   F 6.89   3.70  9.35    NA     April 2013.0
## 97   C.corindum       Homestead   F 6.89   3.59  9.35    NA     April 2013.0
## 98   C.corindum       Homestead   F 6.95   3.43  8.30    NA     April 2013.0
## 99   C.corindum       Homestead   F 8.15   3.84  9.65    NA     April 2013.0
## 100  C.corindum       Homestead   F 5.86   3.03  5.05    NA     April 2013.0
## 101  C.corindum       Homestead   F 7.75   3.38  8.77    NA     April 2013.0
## 102  C.corindum       Homestead   F 7.72   3.42  8.67    NA     April 2013.0
## 103  C.corindum       Homestead   M 5.45   2.66  5.64  8.48       May 2013.0
## 104  C.corindum       Homestead   F 7.15   3.10  8.35 11.93       May 2013.0
## 105  C.corindum       Homestead   M 5.94   3.27  8.92 12.12       May 2013.0
## 106  C.corindum       Homestead   F 6.45   3.21  8.71 11.85       May 2013.0
## 107  C.corindum       Homestead   F 6.55   2.80  3.97    NA       May 2013.0
## 108  C.corindum       Homestead   F 7.51   3.16  9.01 12.33       May 2013.0
## 109  C.corindum       Homestead   M 5.83   3.22  8.59 12.39       May 2013.0
## 110  C.corindum       Homestead   M 5.08   2.90  8.13 11.20       May 2013.0
## 111  C.corindum       Homestead   M 5.61   3.19  8.76 11.72       May 2013.0
## 112  C.corindum       Homestead   M 5.38   2.58  4.84    NA       May 2013.0
## 113  C.corindum       Homestead   M 5.61   3.45  8.45 11.49       May 2013.0
## 114   K.elegans       Homestead   F 7.77   3.84  9.59    NA       May 2013.0
## 115   K.elegans       Homestead   F 8.19   3.61  9.05    NA       May 2013.0
## 116   K.elegans       Homestead   F 7.82   3.43 10.57    NA       May 2013.0
## 117   K.elegans       Homestead   F 7.97   3.51  9.91    NA       May 2013.0
## 118   K.elegans       Homestead   M 5.95   3.16  8.31    NA       May 2013.0
## 119   K.elegans       Homestead   F 7.60   3.44  9.59    NA       May 2013.0
## 120   K.elegans       Homestead   M 5.94   3.18  8.73    NA       May 2013.0
## 121   K.elegans       Homestead   F 7.73   3.73  9.94    NA       May 2013.0
## 122   K.elegans       Homestead   F 7.31   3.50  9.21    NA       May 2013.0
## 123   K.elegans       Homestead   M 5.64   2.99  7.93    NA       May 2013.0
## 124   K.elegans       Homestead   F 7.96   3.45  9.23    NA       May 2013.0
## 125   K.elegans       Homestead   M 5.56   3.00  7.86    NA       May 2013.0
## 126   K.elegans       Homestead   M 5.75   3.14  8.26    NA       May 2013.0
## 127   K.elegans       Homestead   M 5.80   3.02  8.44    NA       May 2013.0
## 128   K.elegans       Homestead   F 7.93   3.64  9.87    NA       May 2013.0
## 129   K.elegans       Homestead   M 5.70   3.19  8.57    NA       May 2013.0
## 130   K.elegans       Homestead   M 6.04   3.38  9.51    NA       May 2013.0
## 131   K.elegans       Homestead   M 5.68   3.01  8.10    NA       May 2013.0
## 132   K.elegans       Homestead   M 5.63   3.00  8.29    NA       May 2013.0
## 133   K.elegans       Homestead   F 8.40   3.68 10.02    NA       May 2013.0
## 134   K.elegans       Homestead   F 7.81   3.75 10.23    NA       May 2013.0
## 135   K.elegans       Homestead   M 6.20   3.10  9.31    NA       May 2013.0
## 136   K.elegans       Homestead   M 5.83   2.91  8.44    NA       May 2013.0
## 137   K.elegans       Homestead   F 7.85   3.58  9.90    NA       May 2013.0
## 138   K.elegans       Homestead   F 7.05   3.25  8.98    NA       May 2013.0
## 139   K.elegans       Homestead   M 6.04   3.00  8.87    NA       May 2013.0
## 140  C.corindum       Key_Largo   M 5.86   2.84  7.99 11.25     April 2013.0
## 141  C.corindum       Key_Largo   M 6.69   3.14  8.41 11.48     April 2013.0
## 142  C.corindum       Key_Largo   F 9.25   3.95  9.99 13.55     April 2013.0
## 143  C.corindum       Key_Largo   M 6.43   3.18  8.61 11.57     April 2013.0
## 144  C.corindum       Key_Largo   M 5.35   2.53  4.62    NA     April 2013.0
## 145  C.corindum       Key_Largo   M 6.77   3.41  8.70 11.63     April 2013.0
## 146  C.corindum       Key_Largo   F 7.83   3.68  9.78 13.31     April 2013.0
## 147  C.corindum       Key_Largo   M 5.98   3.16  9.40 12.50     April 2013.0
## 148  C.corindum       Key_Largo   M 6.18   2.96  8.21 10.94     April 2013.0
## 149  C.corindum       Key_Largo   M 5.46   3.25  8.74 11.76     April 2013.0
## 150  C.corindum       Key_Largo   M 5.15   2.32  4.23    NA     April 2013.0
## 151  C.corindum       Key_Largo   M 5.14   2.59  7.25  9.64     April 2013.0
## 152  C.corindum       Key_Largo   M 6.30   3.15  8.50 11.78     April 2013.0
## 153  C.corindum       Key_Largo   M 5.79   3.14  8.37    NA       May 2013.0
## 154  C.corindum       Key_Largo   F 8.09   3.40  8.61    NA       May 2013.0
## 155  C.corindum       Key_Largo   F 8.84   3.43  9.29    NA       May 2013.0
## 156  C.corindum       Key_Largo   M 6.01   3.26  9.17    NA       May 2013.0
## 157  C.corindum       Key_Largo   F 8.81   3.95  9.91    NA       May 2013.0
## 158  C.corindum       Key_Largo   M 6.35   2.98  8.22    NA       May 2013.0
## 159  C.corindum       Key_Largo   F 7.20   3.70  7.35    NA       May 2013.0
## 160  C.corindum       Key_Largo   M 6.84   3.23  8.57    NA       May 2013.0
## 161  C.corindum       Key_Largo   F 6.17   2.84  4.47    NA       May 2013.0
## 162  C.corindum       Key_Largo   F 9.18   3.69  9.62    NA       May 2013.0
## 163  C.corindum       Key_Largo   F 9.12   3.99 10.73    NA       May 2013.0
## 164  C.corindum       Key_Largo   F 9.47   3.94 10.09    NA       May 2013.0
## 165  C.corindum       Key_Largo   F 9.15   3.78 10.17    NA       May 2013.0
## 166  C.corindum       Key_Largo   M 6.24   3.21  8.74    NA       May 2013.0
## 167  C.corindum       Key_Largo   M 6.07   3.22  8.53    NA       May 2013.0
## 168  C.corindum       Key_Largo   F 9.37   3.94 10.07    NA       May 2013.0
## 169  C.corindum       Key_Largo   M 6.41   3.23  8.51    NA       May 2013.0
## 170  C.corindum       Key_Largo   M 6.13   3.22  9.02    NA       May 2013.0
## 171  C.corindum       Key_Largo   F 9.20   3.64  9.77    NA       May 2013.0
## 172  C.corindum       Key_Largo   M 6.42   3.01  8.24    NA       May 2013.0
## 173  C.corindum       Key_Largo   M 6.20   3.21  8.41    NA       May 2013.0
## 174  C.corindum       Key_Largo   M 6.30   2.92  7.93    NA       May 2013.0
## 175  C.corindum       Key_Largo   F 6.34   2.87  4.82    NA       May 2013.0
## 176  C.corindum       Key_Largo   M 6.40   3.15  8.46    NA       May 2013.0
## 177  C.corindum       Key_Largo   F 8.55   3.52  9.34    NA       May 2013.0
## 178  C.corindum       Key_Largo   M 6.74   3.40  8.45    NA       May 2013.0
## 179  C.corindum       Key_Largo   F 9.50   4.08 10.59    NA       May 2013.0
## 180  C.corindum       Key_Largo   M 5.72   3.01  8.40    NA       May 2013.0
## 181  C.corindum       Key_Largo   M 6.66   3.15  8.69    NA       May 2013.0
## 182  C.corindum       Key_Largo   F 5.53   2.43  4.21    NA       May 2013.0
## 183  C.corindum       Key_Largo   M 6.48   3.31  8.73    NA       May 2013.0
## 184  C.corindum       Key_Largo   M 5.37   2.39  4.87    NA       May 2013.0
## 185  C.corindum       Key_Largo   F 9.17   3.79  9.76    NA       May 2013.0
## 186  C.corindum       Key_Largo   M 6.28   3.27  8.96    NA       May 2013.0
## 187  C.corindum       Key_Largo   F 7.62   3.41  9.10    NA       May 2013.0
## 188  C.corindum       Key_Largo   M 6.12   3.42  8.83    NA       May 2013.0
## 189  C.corindum       Key_Largo   F 6.75   2.98  4.80    NA       May 2013.0
## 190  C.corindum       Key_Largo   F 7.15   3.28  5.33    NA       May 2013.0
## 191  C.corindum       Key_Largo   F 8.72   3.47  9.97    NA       May 2013.0
## 192  C.corindum       Key_Largo   F 7.83   2.98  8.04    NA       May 2013.0
## 193  C.corindum       Key_Largo   F 7.06   3.17  5.71    NA       May 2013.0
## 194  C.corindum       Key_Largo   M 5.83   2.77  5.47    NA       May 2013.0
## 195  C.corindum       Key_Largo   M 7.17   3.56  9.01    NA       May 2013.0
## 196  C.corindum       Key_Largo   M 6.39   3.28  9.18    NA       May 2013.0
## 197  C.corindum       Key_Largo   M 6.47   3.33  9.09    NA       May 2013.0
## 198  C.corindum       Key_Largo   M 6.49   3.38  8.78    NA       May 2013.0
## 199  C.corindum       Key_Largo   F 8.83   3.78 10.03    NA       May 2013.0
## 200  C.corindum       Key_Largo   F 7.15   3.10  8.00    NA       May 2013.0
## 201   K.elegans      Lake_Wales   M 5.42   3.11  7.96 10.93     April 2013.0
## 202   K.elegans      Lake_Wales   M 5.41   2.58  6.25  9.22     April 2013.0
## 203   K.elegans      Lake_Wales   M 5.35   3.13  8.25 11.79     April 2013.0
## 204   K.elegans      Lake_Wales   F 6.78   3.12  9.25 12.07     April 2013.0
## 205   K.elegans      Lake_Wales   M 5.32   2.71  7.66 10.66     April 2013.0
## 206   K.elegans      Lake_Wales   M 5.05   2.49  7.04  9.80     April 2013.0
## 207   K.elegans      Lake_Wales   F 7.63   3.35  9.12 12.38     April 2013.0
## 208   K.elegans      Lake_Wales   M 5.17   2.76  8.25 11.17     April 2013.0
## 209   K.elegans      Lake_Wales   M 5.48   2.51  6.23  9.12     April 2013.0
## 210   K.elegans      Lake_Wales   M 5.19   3.06  7.75 10.76     April 2013.0
## 211   K.elegans      Lake_Wales   F 6.81   3.49  9.76 13.51     April 2013.0
## 212   K.elegans      Lake_Wales   M 5.02   2.80  7.27 10.41     April 2013.0
## 213   K.elegans      Lake_Wales   F 7.56   3.20  8.07 11.65     April 2013.0
## 214   K.elegans      Lake_Wales   M 5.22   2.63  4.96    NA     April 2013.0
## 215   K.elegans      Lake_Wales   M 5.47   3.08  7.38 10.46     April 2013.0
## 216   K.elegans      Lake_Wales   M 4.80   2.35  4.63    NA     April 2013.0
## 217   K.elegans      Lake_Wales   F 6.18   2.91  7.77 11.11     April 2013.0
## 218   K.elegans      Lake_Wales   M 5.15   2.76  5.26    NA     April 2013.0
## 219   K.elegans      Lake_Wales   M 5.03   2.62  7.19  9.84     April 2013.0
## 220   K.elegans      Lake_Wales   M 5.68   2.79  7.41 10.24     April 2013.0
## 221   K.elegans      Lake_Wales   M 5.60   3.32  8.64 11.70     April 2013.0
## 222   K.elegans      Lake_Wales   M 5.28   2.98  8.16 11.12     April 2013.0
## 223   K.elegans      Lake_Wales   M 5.50   2.83  8.09 10.65     April 2013.0
## 224   K.elegans      Lake_Wales   F 6.47   3.02  8.00 11.03     April 2013.0
## 225   K.elegans      Lake_Wales   M 5.19   2.47  4.78    NA     April 2013.0
## 226   K.elegans      Lake_Wales   M 5.28   3.17  8.68 11.62     April 2013.0
## 227   K.elegans      Lake_Wales   M 5.53   3.14  8.19 11.18     April 2013.0
## 228   K.elegans      Lake_Wales   M 5.56   2.98  7.89 10.90     April 2013.0
## 229   K.elegans      Lake_Wales   M 5.15   2.74  4.56    NA     April 2013.0
## 230   K.elegans      Lake_Wales   M 5.40   2.60  7.23    NA       May 2013.0
## 231   K.elegans      Lake_Wales   M 5.31   2.97  8.10    NA       May 2013.0
## 232   K.elegans      Lake_Wales   F 6.48   3.17  8.64    NA       May 2013.0
## 233   K.elegans      Lake_Wales   F 6.59   3.27  9.18    NA       May 2013.0
## 234   K.elegans      Lake_Wales   M 5.25   2.77  7.91    NA       May 2013.0
## 235   K.elegans      Lake_Wales   M 5.37   2.88  8.09    NA       May 2013.0
## 236   K.elegans      Lake_Wales   F 7.12   3.52  9.23    NA       May 2013.0
## 237   K.elegans      Lake_Wales   F 7.22   3.30  9.01    NA       May 2013.0
## 238   K.elegans      Lake_Wales   M 5.52   2.73  8.05    NA       May 2013.0
## 239   K.elegans      Lake_Wales   F 6.40   2.90  8.01    NA       May 2013.0
## 240   K.elegans      Lake_Wales   F 6.28   2.72  7.65    NA       May 2013.0
## 241   K.elegans      Lake_Wales   M 5.13   2.68  7.03    NA       May 2013.0
## 242   K.elegans      Lake_Wales   M 4.95   2.62  4.52    NA       May 2013.0
## 243   K.elegans      Lake_Wales   F 6.51   3.51  9.02    NA       May 2013.0
## 244   K.elegans      Lake_Wales   M 5.72   3.14  8.40    NA       May 2013.0
## 245   K.elegans      Lake_Wales   F 7.69   3.29  9.71    NA       May 2013.0
## 246   K.elegans      Lake_Wales   F 6.77   3.30  9.85    NA       May 2013.0
## 247   K.elegans      Lake_Wales   F 6.60   2.93  8.70    NA       May 2013.0
## 248   K.elegans      Lake_Wales   F 6.34   3.02  8.18    NA       May 2013.0
## 249   K.elegans      Lake_Wales   F 7.35   3.20  8.75    NA       May 2013.0
## 250   K.elegans      Lake_Wales   M 5.51   3.04  8.48    NA       May 2013.0
## 251   K.elegans      Lake_Wales   M 5.15   3.04  8.22    NA       May 2013.0
## 252   K.elegans      Lake_Wales   M 5.49   2.69  7.16    NA       May 2013.0
## 253   K.elegans      Lake_Wales   M 6.51   3.04  8.23    NA       May 2013.0
## 254   K.elegans      Lake_Wales   M 5.22   2.58  6.82    NA       May 2013.0
## 255   K.elegans      Lake_Wales   M 5.11   2.48  7.28    NA       May 2013.0
## 256   K.elegans      Lake_Wales   M 5.17   2.63  7.47    NA       May 2013.0
## 257   K.elegans      Lake_Wales   F 6.73   3.53 10.06    NA       May 2013.0
## 258   K.elegans      Lake_Wales   M 5.29   2.62  5.35    NA       May 2013.0
## 259   K.elegans      Lake_Wales   F 6.94   3.70  9.88    NA       May 2013.0
## 260   K.elegans      Lake_Wales   M 5.44   2.58  7.68    NA       May 2013.0
## 261   K.elegans        Leesburg   M 5.13   2.56  5.34    NA       May 2013.0
## 262   K.elegans        Leesburg   M 5.35   2.59  5.00    NA       May 2013.0
## 263   K.elegans        Leesburg   F 6.25   3.80  9.33    NA       May 2013.0
## 264   K.elegans        Leesburg   M 5.13   2.64  4.63    NA       May 2013.0
## 265   K.elegans        Leesburg   F 6.17   2.97  7.20    NA       May 2013.0
## 266   K.elegans        Leesburg   M 4.69   2.20  4.22    NA       May 2013.0
## 267   K.elegans        Leesburg   M 5.21   2.69  7.37    NA       May 2013.0
## 268   K.elegans        Leesburg   F 6.63   3.08  8.28    NA       May 2013.0
## 269   K.elegans        Leesburg   M 6.07   3.04  8.80    NA       May 2013.0
## 270   K.elegans        Leesburg   M 5.62   2.82  8.59    NA       May 2013.0
## 271   K.elegans        Leesburg   F 7.60   3.45  9.20    NA       May 2013.0
## 272   K.elegans        Leesburg   M 5.66   2.97  8.71    NA       May 2013.0
## 273   K.elegans        Leesburg   F 6.29   3.28  8.58    NA       May 2013.0
## 274   K.elegans        Leesburg   M 5.09   2.81  5.39    NA       May 2013.0
## 275   K.elegans        Leesburg   M 5.00   2.42  7.03    NA       May 2013.0
## 276   K.elegans        Leesburg   F 7.44   3.32  8.99    NA       May 2013.0
## 277   K.elegans        Leesburg   M 5.70   2.90  7.74    NA       May 2013.0
## 278   K.elegans        Leesburg   M 5.52   2.97  8.38    NA       May 2013.0
## 279   K.elegans        Leesburg   F 7.41   3.36  9.00    NA       May 2013.0
## 280   K.elegans        Leesburg   M 5.80   3.21  8.52    NA       May 2013.0
## 281   K.elegans        Leesburg   F 6.20   3.14  5.60    NA       May 2013.0
## 282   K.elegans        Leesburg   M 6.95   3.19  8.37    NA       May 2013.0
## 283   K.elegans        Leesburg   F 7.52   3.43  8.91    NA       May 2013.0
## 284   K.elegans        Leesburg   F 5.90   2.77  5.22    NA       May 2013.0
## 285   K.elegans        Leesburg   F 5.54   2.72  6.84    NA       May 2013.0
## 286  C.corindum  Plantation_Key   M 6.31   3.13  8.50    NA       May 2013.0
## 287  C.corindum  Plantation_Key   F 6.99   3.13  5.39    NA       May 2013.0
## 288  C.corindum  Plantation_Key   M 6.03   3.10  8.85    NA       May 2013.0
## 289  C.corindum  Plantation_Key   M 5.84   3.10  8.70    NA       May 2013.0
## 290  C.corindum  Plantation_Key   M 6.41   3.15  8.88    NA       May 2013.0
## 291  C.corindum  Plantation_Key   F 8.36   3.14  8.97    NA       May 2013.0
## 292  C.corindum  Plantation_Key   M 5.19   2.98  8.59    NA       May 2013.0
## 293  C.corindum  Plantation_Key   M 5.59   2.60  4.58    NA       May 2013.0
## 294  C.corindum  Plantation_Key   M 5.82   2.85  7.65    NA       May 2013.0
## 295  C.corindum  Plantation_Key   F 7.02   3.07  6.45    NA       May 2013.0
## 296  C.corindum  Plantation_Key   F 6.56   2.83  4.45    NA       May 2013.0
## 297  C.corindum  Plantation_Key   M 5.31   2.60  4.22    NA       May 2013.0
## 298  C.corindum  Plantation_Key   M 5.72   2.69  6.65    NA       May 2013.0
## 299  C.corindum  Plantation_Key   F 6.68   2.99  5.16    NA       May 2013.0
## 300  C.corindum  Plantation_Key   M 6.55   3.24  8.89    NA       May 2013.0
## 301  C.corindum  Plantation_Key   M 5.81   2.70  7.17    NA       May 2013.0
## 302  C.corindum  Plantation_Key   M 5.53   2.83  6.99    NA       May 2013.0
## 303  C.corindum  Plantation_Key   M 5.63   2.94  7.60    NA       May 2013.0
## 304  C.corindum  Plantation_Key   M 5.90   2.73  5.33    NA       May 2013.0
## 305  C.corindum  Plantation_Key   F 8.64   3.72 10.00    NA       May 2013.0
## 306  C.corindum  Plantation_Key   M 5.95   3.07  8.13    NA       May 2013.0
## 307  C.corindum  Plantation_Key   F 6.60   2.89  5.29    NA       May 2013.0
## 308  C.corindum  Plantation_Key   F 7.03   3.44  5.56    NA       May 2013.0
## 309  C.corindum  Plantation_Key   F 8.08   3.31  8.68    NA       May 2013.0
## 310  C.corindum  Plantation_Key   F 7.87   3.29  6.48    NA       May 2013.0
## 311  C.corindum  Plantation_Key   M 5.53   2.63  5.50    NA       May 2013.0
## 312  C.corindum  Plantation_Key   F 7.15   3.20  6.29    NA       May 2013.0
## 313  C.corindum  Plantation_Key   M 5.80   2.85  7.19    NA       May 2013.0
## 314  C.corindum  Plantation_Key   M 6.31   3.23  8.61    NA       May 2013.0
## 315  C.corindum  Plantation_Key   M 6.17   3.21  8.01    NA       May 2013.0
## 316  C.corindum  Plantation_Key   F 7.64   3.46  8.75    NA       May 2013.0
## 317  C.corindum  Plantation_Key   F 7.86   3.31  6.52    NA       May 2013.0
## 318  C.corindum  Plantation_Key   F 7.56   3.11  6.08    NA       May 2013.0
## 319  C.corindum  Plantation_Key   M 6.13   2.97  8.26    NA       May 2013.0
## 320  C.corindum  Plantation_Key   F 7.55   3.35  5.47    NA       May 2013.0
## 321  C.corindum  Plantation_Key   M 6.38   2.92  7.74    NA       May 2013.0
## 322   K.elegans        Ft.Myers   M 5.61   3.27  8.21    NA  December 2013.6
## 323   K.elegans        Ft.Myers   F 7.89   3.85 10.60    NA  December 2013.6
## 324   K.elegans        Ft.Myers   F 7.00   3.93  9.80    NA  December 2013.6
## 325   K.elegans        Ft.Myers   F 6.97   3.71  9.66    NA  December 2013.6
## 326   K.elegans        Ft.Myers   F 7.78   3.68 10.01    NA  December 2013.6
## 327   K.elegans        Ft.Myers   M 5.74   3.19  8.29    NA  December 2013.6
## 328   K.elegans        Ft.Myers   F 7.99   3.75  9.52    NA  December 2013.6
## 329   K.elegans        Ft.Myers   F 8.44   3.68  9.83    NA  December 2013.6
## 330   K.elegans        Ft.Myers   F 7.35   3.82 10.34    NA  December 2013.6
## 331   K.elegans        Ft.Myers   M 5.55   3.31  8.94    NA  December 2013.6
## 332   K.elegans        Ft.Myers   F 6.73   3.48  9.70    NA  December 2013.6
## 333   K.elegans        Ft.Myers   F 6.23   3.98  7.21    NA  December 2013.6
## 334   K.elegans        Ft.Myers   M 5.57   3.51  9.16    NA  December 2013.6
## 335   K.elegans        Ft.Myers   F 7.38   3.48  9.51    NA  December 2013.6
## 336   K.elegans        Ft.Myers   F 7.74   3.59  9.71    NA  December 2013.6
## 337   K.elegans        Ft.Myers   M 5.38   3.25  8.87    NA  December 2013.6
## 338   K.elegans        Ft.Myers   M 4.96   3.08  7.92    NA  December 2013.6
## 339   K.elegans        Ft.Myers   F 7.57   3.49  9.29    NA  December 2013.6
## 340   K.elegans        Ft.Myers   F 7.94   3.92  9.82    NA  December 2013.6
## 341   K.elegans        Ft.Myers   F 6.85   3.76 10.04    NA  December 2013.6
## 342   K.elegans        Ft.Myers   F 6.57   3.71  9.58    NA  December 2013.6
## 343   K.elegans        Ft.Myers   F 7.70   3.74 10.23    NA  December 2013.6
## 344   K.elegans        Ft.Myers   F 6.43   4.11  9.85    NA  December 2013.6
## 345   K.elegans        Ft.Myers   F 7.54   3.61 10.24    NA  December 2013.6
## 346   K.elegans        Ft.Myers   M 5.48   2.93  8.49    NA  December 2013.6
## 347   K.elegans        Ft.Myers   F 8.20   3.51  8.76    NA  December 2013.6
## 348   K.elegans        Ft.Myers   F 7.45   3.58  9.17    NA  December 2013.6
## 349   K.elegans        Ft.Myers   F 6.96   3.61  9.94    NA  December 2013.6
## 350   K.elegans        Ft.Myers   F 7.73   3.77 10.19    NA  December 2013.6
## 351   K.elegans        Ft.Myers   F 6.77   3.53 10.18    NA  December 2013.6
## 352   K.elegans        Ft.Myers   F 7.17   3.46  9.29    NA  December 2013.6
## 353   K.elegans        Ft.Myers   F 8.09   3.50  9.63    NA  December 2013.6
## 354   K.elegans        Ft.Myers   F 8.13   3.69  9.94    NA  December 2013.6
## 355   K.elegans        Ft.Myers   F 7.98   3.85  9.81    NA  December 2013.6
## 356   K.elegans        Ft.Myers   M 5.59   3.13  8.60    NA  December 2013.6
## 357   K.elegans        Ft.Myers   F 6.35   3.47  9.51    NA  December 2013.6
## 358   K.elegans        Ft.Myers   M 5.96   2.99  8.44    NA  December 2013.6
## 359   K.elegans        Ft.Myers   F 7.43   3.58  9.26    NA  December 2013.6
## 360   K.elegans        Ft.Myers   M 5.66   2.88  8.40    NA  December 2013.6
## 361   K.elegans        Ft.Myers   F 7.76   3.62  9.42    NA  December 2013.6
## 362   K.elegans        Ft.Myers   F 7.77   3.73  9.87    NA  December 2013.6
## 363   K.elegans        Ft.Myers   F 7.18   3.52  9.96    NA  December 2013.6
## 364   K.elegans        Ft.Myers   F 6.76   3.68  9.85    NA  December 2013.6
## 365   K.elegans        Ft.Myers   F 7.51   3.86 10.25    NA  December 2013.6
## 366   K.elegans        Ft.Myers   M 5.95   3.14  8.55    NA  December 2013.6
## 367   K.elegans        Ft.Myers   F 8.61   3.92 10.35    NA  December 2013.6
## 368   K.elegans        Ft.Myers   M 5.72   2.97  8.51    NA  December 2013.6
## 369   K.elegans        Ft.Myers   F 8.31   3.62  9.70    NA  December 2013.6
## 370   K.elegans        Ft.Myers   M 5.30   2.82  8.16    NA  December 2013.6
## 371   K.elegans        Ft.Myers   M 5.94   2.94  8.67    NA  December 2013.6
## 372   K.elegans        Ft.Myers   M 5.31   3.29  8.87    NA  December 2013.6
## 373   K.elegans        Ft.Myers   F 7.72   3.55 10.09    NA  December 2013.6
## 374   K.elegans        Ft.Myers   F 7.14   3.53  9.39    NA  December 2013.6
## 375   K.elegans        Ft.Myers   F 8.35   3.61  9.66    NA  December 2013.6
## 376   K.elegans        Ft.Myers   M 5.91   3.20  8.87    NA  December 2013.6
## 377   K.elegans        Ft.Myers   F 7.14   3.69 10.11    NA  December 2013.6
## 378   K.elegans        Ft.Myers   F 7.51   3.63 10.53    NA  December 2013.6
## 379   K.elegans        Ft.Myers   F 7.98   3.58  9.69    NA  December 2013.6
## 380   K.elegans        Ft.Myers   M 5.89   3.14  8.36    NA  December 2013.6
## 381   K.elegans        Ft.Myers   F 8.11   3.76 10.40    NA  December 2013.6
## 382   K.elegans        Ft.Myers   M 5.77   3.04  8.16    NA  December 2013.6
## 383   K.elegans        Ft.Myers   F 7.59   3.63 10.28    NA  December 2013.6
## 384   K.elegans        Ft.Myers   F 8.46   3.87 10.21    NA  December 2013.6
## 385   K.elegans        Ft.Myers   F 8.05   3.44  9.83    NA  December 2013.6
## 386   K.elegans        Ft.Myers   F 7.19   3.67  9.74    NA  December 2013.6
## 387   K.elegans        Ft.Myers   F 7.09   3.67  9.87    NA  December 2013.6
## 388   K.elegans        Ft.Myers   M 5.19   2.74  7.71    NA  December 2013.6
## 389   K.elegans        Ft.Myers   M 5.73   3.12  8.30    NA  December 2013.6
## 390   K.elegans        Ft.Myers   F 7.07   3.72 10.43    NA  December 2013.6
## 391   K.elegans        Ft.Myers   F 7.15   3.66  9.96    NA  December 2013.6
## 392   K.elegans        Ft.Myers   F 7.46   3.53  9.28    NA  December 2013.6
## 393   K.elegans        Ft.Myers   F 8.05   3.81 10.15    NA  December 2013.6
## 394   K.elegans        Ft.Myers   F 7.21   3.78 10.17    NA  December 2013.6
## 395   K.elegans        Ft.Myers   F 7.19   3.25  9.50    NA  December 2013.6
## 396   K.elegans        Ft.Myers   F 6.89   3.75  9.57    NA  December 2013.6
## 397   K.elegans     Gainesville   M 5.89   3.05  8.32    NA  December 2013.6
## 398   K.elegans     Gainesville   M 5.66   3.22  8.79    NA  December 2013.6
## 399   K.elegans     Gainesville   F 8.38   3.59  9.78    NA  December 2013.6
## 400   K.elegans     Gainesville   M 5.62   3.20  8.32    NA  December 2013.6
## 401   K.elegans     Gainesville   M 5.64   2.96  8.22    NA  December 2013.6
## 402   K.elegans     Gainesville   M 5.70   3.12  8.30    NA  December 2013.6
## 403   K.elegans     Gainesville   M 5.38   3.08  7.91    NA  December 2013.6
## 404   K.elegans     Gainesville   M 5.74   2.73  7.48    NA  December 2013.6
## 405   K.elegans     Gainesville   M 6.46   3.10  8.13    NA  December 2013.6
## 406   K.elegans     Gainesville   M 6.69   3.02  8.44    NA  December 2013.6
## 407   K.elegans     Gainesville   F 7.84   3.45  9.33    NA  December 2013.6
## 408   K.elegans     Gainesville   M 5.60   2.96  8.64    NA  December 2013.6
## 409   K.elegans     Gainesville   F 8.14   3.42  9.08    NA  December 2013.6
## 410   K.elegans     Gainesville   F 7.46   3.38  9.13    NA  December 2013.6
## 411  C.corindum       Homestead   F 6.75   3.33  6.07    NA  December 2013.6
## 412  C.corindum       Homestead   F 6.76   3.40  6.22    NA  December 2013.6
## 413  C.corindum       Homestead   F 7.10   3.75  9.06    NA  December 2013.6
## 414  C.corindum       Homestead   F 6.82   3.63  8.91    NA  December 2013.6
## 415  C.corindum       Homestead   M 5.13   2.84  5.64    NA  December 2013.6
## 416  C.corindum       Homestead   F 6.42   3.22  5.74    NA  December 2013.6
## 417  C.corindum       Homestead   M 5.34   3.24  9.26    NA  December 2013.6
## 418  C.corindum       Homestead   F 7.14   3.63  9.23    NA  December 2013.6
## 419  C.corindum       Homestead   F 6.74   3.36  5.53    NA  December 2013.6
## 420  C.corindum       Homestead   F 6.73   3.84  9.56    NA  December 2013.6
## 421  C.corindum       Homestead   F 6.61   3.64  7.79    NA  December 2013.6
## 422  C.corindum       Homestead   M 5.28   3.23  7.83    NA  December 2013.6
## 423  C.corindum       Homestead   F 7.11   3.35  6.58    NA  December 2013.6
## 424  C.corindum       Homestead   F 6.25   3.32  5.41    NA  December 2013.6
## 425  C.corindum       Homestead   M 5.99   3.21  8.94    NA  December 2013.6
## 426  C.corindum       Homestead   F 6.49   3.59  9.37    NA  December 2013.6
## 427  C.corindum       Homestead   F 6.67   3.46  6.01    NA  December 2013.6
## 428  C.corindum       Homestead   M 5.49   2.84  4.83    NA  December 2013.6
## 429  C.corindum       Homestead   F 6.36   3.48  6.22    NA  December 2013.6
## 430  C.corindum       Homestead   M 5.56   3.25  8.21    NA  December 2013.6
## 431  C.corindum       Homestead   M 5.33   3.05  8.21    NA  December 2013.6
## 432  C.corindum       Homestead   M 5.49   2.99  8.27    NA  December 2013.6
## 433  C.corindum       Homestead   F 7.96   3.96  9.73    NA  December 2013.6
## 434   K.elegans       Homestead   M 5.49   2.93  7.06    NA  December 2013.6
## 435   K.elegans       Homestead   F 6.23   3.36  5.70    NA  December 2013.6
## 436   K.elegans       Homestead   M 5.24   2.90  7.64    NA  December 2013.6
## 437   K.elegans       Homestead   F 6.59   3.33  6.98    NA  December 2013.6
## 438   K.elegans       Homestead   F 6.44   3.48  7.00    NA  December 2013.6
## 439   K.elegans       Homestead   M 5.79   3.15  8.90    NA  December 2013.6
## 440   K.elegans       Homestead   F 6.92   3.67  8.95    NA  December 2013.6
## 441   K.elegans       Homestead   M 5.72   3.18  8.02    NA  December 2013.6
## 442   K.elegans       Homestead   M 5.47   3.12  8.04    NA  December 2013.6
## 443   K.elegans       Homestead   M 5.82   3.24  7.94    NA  December 2013.6
## 444   K.elegans       Homestead   F 6.20   3.20  6.28    NA  December 2013.6
## 445   K.elegans       Homestead   F 7.45   3.83 10.15    NA  December 2013.6
## 446   K.elegans       Homestead   M 5.67   3.35  9.08    NA  December 2013.6
## 447   K.elegans       Homestead   F 7.28   3.85 10.20    NA  December 2013.6
## 448   K.elegans       Homestead   M 5.12   2.95  5.64    NA  December 2013.6
## 449   K.elegans       Homestead   F 6.58   3.60  7.28    NA  December 2013.6
## 450   K.elegans       Homestead   M 5.88   3.23  8.97    NA  December 2013.6
## 451   K.elegans       Homestead   F 5.98   3.19  5.69    NA  December 2013.6
## 452   K.elegans       Homestead   M 5.34   2.92  5.92    NA  December 2013.6
## 453   K.elegans       Homestead   M 5.66   3.18  8.93    NA  December 2013.6
## 454   K.elegans       Homestead   F 7.35   3.91 10.00    NA  December 2013.6
## 455   K.elegans       Homestead   F 7.18   3.72  8.10    NA  December 2013.6
## 456   K.elegans       Homestead   M 5.17   2.98  7.42    NA  December 2013.6
## 457   K.elegans       Homestead   F 7.28   3.76  9.51    NA  December 2013.6
## 458   K.elegans       Homestead   M 6.21   3.33  5.69    NA  December 2013.6
## 459   K.elegans       Homestead   F 7.45   3.88 10.30    NA  December 2013.6
## 460   K.elegans       Homestead   F 6.86   3.63 10.13    NA  December 2013.6
## 461   K.elegans       Homestead   F 7.16   3.36  8.81    NA  December 2013.6
## 462   K.elegans       Homestead   M 5.92   3.17  8.61    NA  December 2013.6
## 463  C.corindum       Key_Largo   M 6.38   3.07  8.20    NA  December 2013.6
## 464  C.corindum       Key_Largo   F 9.82   3.78  9.86    NA  December 2013.6
## 465  C.corindum       Key_Largo   F 7.17   3.20  5.04    NA  December 2013.6
## 466  C.corindum       Key_Largo   M 5.96   2.80  7.59    NA  December 2013.6
## 467  C.corindum       Key_Largo   F 8.94   3.96 10.23    NA  December 2013.6
## 468  C.corindum       Key_Largo   F 8.06   3.24  8.29    NA  December 2013.6
## 469  C.corindum       Key_Largo   M 6.60   3.00  8.28    NA  December 2013.6
## 470  C.corindum       Key_Largo   F 6.77   2.84  4.96    NA  December 2013.6
## 471  C.corindum       Key_Largo   F 8.97   3.83  9.86    NA  December 2013.6
## 472  C.corindum       Key_Largo   M 5.93   2.80  4.80    NA  December 2013.6
## 473  C.corindum       Key_Largo   M 6.26   3.03  8.02    NA  December 2013.6
## 474  C.corindum       Key_Largo   F 9.44   3.74  9.88    NA  December 2013.6
## 475  C.corindum       Key_Largo   M 6.07   3.04  7.34    NA  December 2013.6
## 476  C.corindum       Key_Largo   M 6.56   3.01  7.90    NA  December 2013.6
## 477  C.corindum       Key_Largo   M 6.15   3.15  8.26    NA  December 2013.6
## 478  C.corindum       Key_Largo   F 7.40   3.05  5.15    NA  December 2013.6
## 479  C.corindum       Key_Largo   M 6.02   2.81  5.32    NA  December 2013.6
## 480  C.corindum       Key_Largo   F 9.06   3.55  8.90    NA  December 2013.6
## 481  C.corindum       Key_Largo   M 6.56   3.21  7.89    NA  December 2013.6
## 482  C.corindum       Key_Largo   M 6.81   3.31  8.51    NA  December 2013.6
## 483  C.corindum       Key_Largo   F 7.90   3.25  8.78    NA  December 2013.6
## 484  C.corindum       Key_Largo   M 6.56   2.99  8.11    NA  December 2013.6
## 485  C.corindum       Key_Largo   F 7.92   3.36  8.71    NA  December 2013.6
## 486  C.corindum       Key_Largo   M 5.53   3.29  8.64    NA  December 2013.6
## 487  C.corindum       Key_Largo   F 7.20   3.90 10.34    NA  December 2013.6
## 488  C.corindum       Key_Largo   F 7.75   3.63  9.98    NA  December 2013.6
## 489  C.corindum       Key_Largo   F 7.66   3.39  9.49    NA  December 2013.6
## 490  C.corindum       Key_Largo   M 5.65   3.13  8.94    NA  December 2013.6
## 491  C.corindum       Key_Largo   F 8.15   3.73  9.46    NA  December 2013.6
## 492  C.corindum       Key_Largo   F 7.61   3.39  8.89    NA  December 2013.6
## 493  C.corindum       Key_Largo   M 5.90   2.76  4.51    NA  December 2013.6
## 494  C.corindum       Key_Largo   F 7.86   3.78  9.82    NA  December 2013.6
## 495   K.elegans      Lake_Wales   F 7.24   3.15  8.80    NA  December 2013.6
## 496   K.elegans      Lake_Wales   M 6.18   2.92  8.41    NA  December 2013.6
## 497   K.elegans      Lake_Wales   F 7.48   3.21  8.92    NA  December 2013.6
## 498   K.elegans      Lake_Wales   F 7.34   3.30  8.97    NA  December 2013.6
## 499   K.elegans      Lake_Wales   F 7.86   3.59  9.21    NA  December 2013.6
## 500   K.elegans      Lake_Wales   M 5.39   2.96  8.09    NA  December 2013.6
## 501   K.elegans      Lake_Wales   F 8.37   3.52  9.95    NA  December 2013.6
## 502   K.elegans      Lake_Wales   M 5.58   2.99  7.85    NA  December 2013.6
## 503   K.elegans      Lake_Wales   F 7.21   2.99  7.93    NA  December 2013.6
## 504   K.elegans      Lake_Wales   F 7.99   3.54  9.23    NA  December 2013.6
## 505   K.elegans      Lake_Wales   M 5.68   3.06  7.84    NA  December 2013.6
## 506   K.elegans      Lake_Wales   F 6.90   3.25  8.91    NA  December 2013.6
## 507   K.elegans      Lake_Wales   M 5.88   3.19  8.63    NA  December 2013.6
## 508   K.elegans      Lake_Wales   F 7.48   3.42  9.94    NA  December 2013.6
## 509   K.elegans      Lake_Wales   M 5.58   2.71  8.02    NA  December 2013.6
## 510   K.elegans      Lake_Wales   M 6.02   3.17  8.11    NA  December 2013.6
## 511   K.elegans      Lake_Wales   M 5.74   3.16  8.17    NA  December 2013.6
## 512   K.elegans      Lake_Wales   F 7.25   3.64  9.70    NA  December 2013.6
## 513   K.elegans      Lake_Wales   M 5.80   2.92  8.24    NA  December 2013.6
## 514   K.elegans      Lake_Wales   M 5.72   3.11  8.58    NA  December 2013.6
## 515   K.elegans      Lake_Wales   M 5.83   2.87  8.31    NA  December 2013.6
## 516   K.elegans      Lake_Wales   F 8.16   3.65 10.65    NA  December 2013.6
## 517   K.elegans      Lake_Wales   F 8.38   3.68 10.06    NA  December 2013.6
## 518   K.elegans      Lake_Wales   F 7.14   3.43  9.42    NA  December 2013.6
## 519   K.elegans      Lake_Wales   M 5.74   3.12  8.29    NA  December 2013.6
## 520   K.elegans      Lake_Wales   M 5.75   2.97  7.66    NA  December 2013.6
## 521   K.elegans      Lake_Wales   M 5.65   2.94  8.44    NA  December 2013.6
## 522   K.elegans      Lake_Wales   M 5.79   3.07  8.51    NA  December 2013.6
## 523   K.elegans      Lake_Wales   M 5.29   3.09  7.97    NA  December 2013.6
## 524   K.elegans      Lake_Wales   F 7.43   3.87 10.44    NA  December 2013.6
## 525   K.elegans      Lake_Wales   M 5.77   3.06  8.37    NA  December 2013.6
## 526   K.elegans      Lake_Wales   M 5.27   2.72  7.93    NA  December 2013.6
## 527   K.elegans      Lake_Wales   F 6.91   3.66  9.75    NA  December 2013.6
## 528   K.elegans      Lake_Wales   M 5.27   2.84  7.88    NA  December 2013.6
## 529   K.elegans      Lake_Wales   M 5.70   2.99  8.73    NA  December 2013.6
## 530   K.elegans      Lake_Wales   M 5.57   2.96  8.59    NA  December 2013.6
## 531   K.elegans      Lake_Wales   M 5.51   2.87  7.90    NA  December 2013.6
## 532   K.elegans      Lake_Wales   M 5.46   3.04  8.30    NA  December 2013.6
## 533   K.elegans      Lake_Wales   F 7.24   3.36  9.19    NA  December 2013.6
## 534   K.elegans      Lake_Wales   M 5.63   2.74  7.77    NA  December 2013.6
## 535   K.elegans      Lake_Wales   F 7.61   3.43  9.11    NA  December 2013.6
## 536   K.elegans      Lake_Wales   M 6.49   3.24  8.82    NA  December 2013.6
## 537   K.elegans      Lake_Wales   F 8.53   3.48  8.92    NA  December 2013.6
## 538   K.elegans      Lake_Wales   F 7.97   3.34  8.98    NA  December 2013.6
## 539   K.elegans      Lake_Wales   F 7.38   3.35  8.50    NA  December 2013.6
## 540   K.elegans      Lake_Wales   M 5.53   3.08  8.03    NA  December 2013.6
## 541   K.elegans      Lake_Wales   M 5.86   3.06  7.78    NA  December 2013.6
## 542   K.elegans      Lake_Wales   M 5.44   2.79  6.72    NA  December 2013.6
## 543   K.elegans      Lake_Wales   F 6.86   3.19  8.83    NA  December 2013.6
## 544   K.elegans      Lake_Wales   M 6.13   2.87  8.16    NA  December 2013.6
## 545   K.elegans      Lake_Wales   F 7.36   3.27  8.74    NA  December 2013.6
## 546   K.elegans      Lake_Wales   M 5.49   2.75  7.60    NA  December 2013.6
## 547   K.elegans      Lake_Wales   F 7.45   2.37  7.86    NA  December 2013.6
## 548   K.elegans      Lake_Wales   F 7.28   3.54  8.51    NA  December 2013.6
## 549   K.elegans      Lake_Wales   F 8.05   3.82  9.27    NA  December 2013.6
## 550   K.elegans      Lake_Wales   M 5.23   2.92  7.47    NA  December 2013.6
## 551   K.elegans      Lake_Wales   M 5.66   3.07  7.64    NA  December 2013.6
## 552   K.elegans      Lake_Wales   F 7.51   3.56  9.20    NA  December 2013.6
## 553   K.elegans      Lake_Wales   M 5.63   2.80  7.92    NA  December 2013.6
## 554   K.elegans      Lake_Wales   M 5.64   2.91  7.95    NA  December 2013.6
## 555   K.elegans      Lake_Wales   M 5.78   3.27  8.64    NA  December 2013.6
## 556   K.elegans      Lake_Wales   F 7.36   2.88  8.40    NA  December 2013.6
## 557   K.elegans      Lake_Wales   F 7.43   3.21  7.62    NA  December 2013.6
## 558   K.elegans      Lake_Wales   M 5.90   3.10  7.85    NA  December 2013.6
## 559   K.elegans      Lake_Wales   M 5.63   3.24  8.97    NA  December 2013.6
## 560   K.elegans      Lake_Wales   F 8.67   3.61  9.20    NA  December 2013.6
## 561   K.elegans      Lake_Wales   M 5.56   2.82  8.03    NA  December 2013.6
## 562   K.elegans      Lake_Wales   M 5.91   3.05  8.13    NA  December 2013.6
## 563   K.elegans      Lake_Wales   M 6.09   3.37  8.08    NA  December 2013.6
## 564   K.elegans      Lake_Wales   M 5.35   2.86  7.53    NA  December 2013.6
## 565   K.elegans      Lake_Wales   M 6.20   3.27  8.40    NA  December 2013.6
## 566   K.elegans      Lake_Wales   M 5.55   3.21  8.64    NA  December 2013.6
## 567   K.elegans      Lake_Wales   M 5.73   2.85  7.11    NA  December 2013.6
## 568   K.elegans      Lake_Wales   M 5.43   2.94  8.49    NA  December 2013.6
## 569   K.elegans      Lake_Wales   M 5.53   3.03  7.77    NA  December 2013.6
## 570   K.elegans      Lake_Wales   F 8.30   3.61  8.95    NA  December 2013.6
## 571   K.elegans      Lake_Wales   M 5.79   2.81  7.58    NA  December 2013.6
## 572   K.elegans      Lake_Wales   M 5.62   2.90  7.19    NA  December 2013.6
## 573   K.elegans      Lake_Wales   F 8.12   3.45  9.65    NA  December 2013.6
## 574   K.elegans      Lake_Wales   M 6.04   3.15  8.74    NA  December 2013.6
## 575   K.elegans      Lake_Wales   M 5.68   2.95  7.50    NA  December 2013.6
## 576   K.elegans      Lake_Wales   F 7.09   3.51  8.53    NA  December 2013.6
## 577   K.elegans      Lake_Wales   M 5.96   3.08  8.12    NA  December 2013.6
## 578   K.elegans      Lake_Wales   M 5.98   2.94  7.66    NA  December 2013.6
## 579   K.elegans        Leesburg   F 7.34   3.42  8.59    NA  December 2013.6
## 580   K.elegans        Leesburg   F 8.19   3.66  8.95    NA  December 2013.6
## 581   K.elegans        Leesburg   F 7.05   3.44  8.24    NA  December 2013.6
## 582   K.elegans        Leesburg   F 7.74   3.55  9.05    NA  December 2013.6
## 583   K.elegans        Leesburg   M 5.34   3.11  8.59    NA  December 2013.6
## 584   K.elegans        Leesburg   M 5.71   2.97  7.84    NA  December 2013.6
## 585   K.elegans        Leesburg   F 7.67   3.14  8.01    NA  December 2013.6
## 586   K.elegans        Leesburg   F 7.79   3.66  8.90    NA  December 2013.6
## 587   K.elegans        Leesburg   M 5.75   3.02  8.08    NA  December 2013.6
## 588   K.elegans        Leesburg   M 6.16   3.28  7.89    NA  December 2013.6
## 589   K.elegans        Leesburg   F 6.82   3.49  9.02    NA  December 2013.6
## 590   K.elegans        Leesburg   M 6.06   3.34  8.17    NA  December 2013.6
## 591   K.elegans        Leesburg   F 6.97   3.49  9.94    NA  December 2013.6
## 592   K.elegans        Leesburg   F 7.40   3.35  9.25    NA  December 2013.6
## 593   K.elegans        Leesburg   M 5.30   3.32  8.84    NA  December 2013.6
## 594   K.elegans        Leesburg   M 5.81   2.66  8.19    NA  December 2013.6
## 595   K.elegans        Leesburg   F 7.94   3.45  8.26    NA  December 2013.6
## 596   K.elegans        Leesburg   F 7.46   3.12  9.10    NA  December 2013.6
## 597   K.elegans        Leesburg   F 7.87   3.64  9.72    NA  December 2013.6
## 598   K.elegans        Leesburg   F 7.72   3.35  7.99    NA  December 2013.6
## 599   K.elegans        Leesburg   F 8.28   3.88  9.88    NA  December 2013.6
## 600   K.elegans        Leesburg   F 8.06   3.55  8.44    NA  December 2013.6
## 601   K.elegans        Leesburg   M 6.27   2.95  8.89    NA  December 2013.6
## 602   K.elegans        Leesburg   F 7.67   3.62  8.78    NA  December 2013.6
## 603   K.elegans        Leesburg   F 8.42   3.54  8.76    NA  December 2013.6
## 604   K.elegans        Leesburg   M 6.05   3.17  8.05    NA  December 2013.6
## 605   K.elegans        Leesburg   M 6.01   3.11  7.97    NA  December 2013.6
## 606   K.elegans        Leesburg   M 5.49   3.02  7.67    NA  December 2013.6
## 607   K.elegans        Leesburg   M 5.69   3.14  8.81    NA  December 2013.6
## 608   K.elegans        Leesburg   F 7.64   3.57  9.38    NA  December 2013.6
## 609   K.elegans        Leesburg   F 6.49   3.21  7.94    NA  December 2013.6
## 610   K.elegans        Leesburg   M 5.78   3.08  8.45    NA  December 2013.6
## 611   K.elegans        Leesburg   F 7.65   3.51  9.34    NA  December 2013.6
## 612   K.elegans        Leesburg   F 8.17   3.45  8.39    NA  December 2013.6
## 613   K.elegans        Leesburg   F 7.56   2.98  8.72    NA  December 2013.6
## 614   K.elegans        Leesburg   F 7.29   3.57 10.10    NA  December 2013.6
## 615   K.elegans        Leesburg   F 6.78   3.49  8.33    NA  December 2013.6
## 616   K.elegans        Leesburg   M 5.76   3.06  8.10    NA  December 2013.6
## 617   K.elegans        Leesburg   M 5.84   2.82  7.75    NA  December 2013.6
## 618   K.elegans        Leesburg   M 4.99   2.89  7.35    NA  December 2013.6
## 619   K.elegans        Leesburg   F 7.95   3.43  8.86    NA  December 2013.6
## 620   K.elegans        Leesburg   F 8.01   3.27  9.54    NA  December 2013.6
## 621   K.elegans        Leesburg   M 5.32   2.89  7.60    NA  December 2013.6
## 622   K.elegans        Leesburg   M 6.09   3.00  8.61    NA  December 2013.6
## 623   K.elegans        Leesburg   M 5.89   3.32  8.07    NA  December 2013.6
## 624   K.elegans        Leesburg   M 5.82   3.11  8.03    NA  December 2013.6
## 625   K.elegans        Leesburg   M 5.57   2.87  7.12    NA  December 2013.6
## 626   K.elegans        Leesburg   M 6.10   2.86  8.28    NA  December 2013.6
## 627   K.elegans        Leesburg   F 5.94   3.48  7.44    NA  December 2013.6
## 628   K.elegans        Leesburg   F 7.48   3.36  8.32    NA  December 2013.6
## 629   K.elegans        Leesburg   F 7.89   3.27  8.19    NA  December 2013.6
## 630   K.elegans        Leesburg   M 5.65   3.34  8.62    NA  December 2013.6
## 631   K.elegans        Leesburg   M 5.80   2.91  8.83    NA  December 2013.6
## 632   K.elegans        Leesburg   F 7.96   3.47  8.72    NA  December 2013.6
## 633   K.elegans        Leesburg   M 5.85   2.96  8.32    NA  December 2013.6
## 634   K.elegans        Leesburg   M 5.68   3.05  8.05    NA  December 2013.6
## 635   K.elegans        Leesburg   F 7.56   3.33  9.16    NA  December 2013.6
## 636   K.elegans        Leesburg   M 5.91   3.17  8.65    NA  December 2013.6
## 637   K.elegans        Leesburg   M 5.43   3.08  8.00    NA  December 2013.6
## 638   K.elegans        Leesburg   M 5.74   3.03  8.12    NA  December 2013.6
## 639   K.elegans        Leesburg   F 7.78   3.21  9.21    NA  December 2013.6
## 640   K.elegans        Leesburg   M 5.55   2.88  7.67    NA  December 2013.6
## 641   K.elegans        Leesburg   F 8.19   3.64  9.13    NA  December 2013.6
## 642   K.elegans        Leesburg   M 6.04   2.89  8.07    NA  December 2013.6
## 643   K.elegans        Leesburg   M 5.08   2.98  7.52    NA  December 2013.6
## 644   K.elegans        Leesburg   M 4.94   2.79  7.43    NA  December 2013.6
## 645   K.elegans        Leesburg   M 5.53   3.02  7.82    NA  December 2013.6
## 646   K.elegans        Leesburg   F 7.37   2.98  8.66    NA  December 2013.6
## 647   K.elegans        Leesburg   M 5.97   2.85  7.75    NA  December 2013.6
## 648   K.elegans        Leesburg   M 6.31   2.99  7.62    NA  December 2013.6
## 649   K.elegans        Leesburg   M 5.67   2.86  7.73    NA  December 2013.6
## 650   K.elegans        Leesburg   F 8.04   3.52  8.73    NA  December 2013.6
## 651   K.elegans        Leesburg   F 7.31   3.30  7.82    NA  December 2013.6
## 652   K.elegans        Leesburg   F 6.91   3.37  9.80    NA  December 2013.6
## 653   K.elegans        Leesburg   M 5.66   2.95  7.83    NA  December 2013.6
## 654   K.elegans        Leesburg   M 5.77   3.11  7.67    NA  December 2013.6
## 655   K.elegans        Leesburg   M 5.74   3.23  7.99    NA  December 2013.6
## 656   K.elegans        Leesburg   M 5.68   2.97  7.95    NA  December 2013.6
## 657   K.elegans        Leesburg   M 5.63   2.82  8.00    NA  December 2013.6
## 658   K.elegans        Leesburg   M 5.60   3.09  8.07    NA  December 2013.6
## 659   K.elegans        Leesburg   M 5.74   2.81  7.42    NA  December 2013.6
## 660   K.elegans        Leesburg   M 5.61   2.65  7.53    NA  December 2013.6
## 661   K.elegans        Leesburg   F 7.77   3.13  8.82    NA  December 2013.6
## 662   K.elegans        Leesburg   M 6.36   3.10  7.44    NA  December 2013.6
## 663   K.elegans        Leesburg   F 7.45   3.34  8.61    NA  December 2013.6
## 664   K.elegans        Leesburg   F 7.63   3.58  9.46    NA  December 2013.6
## 665   K.elegans        Leesburg   M 5.33   2.34  4.59    NA  December 2013.6
## 666   K.elegans        Leesburg   M 6.21   2.83  7.22    NA  December 2013.6
## 667   K.elegans        Leesburg   F 7.33   3.75  9.43    NA  December 2013.6
## 668   K.elegans        Leesburg   M 5.68   3.13  8.52    NA  December 2013.6
## 669   K.elegans        Leesburg   M 5.72   2.85  7.53    NA  December 2013.6
## 670  C.corindum  Plantation_Key   M 6.40   3.23  8.29    NA  December 2013.6
## 671  C.corindum  Plantation_Key   F 7.13   3.24  8.68    NA  December 2013.6
## 672  C.corindum  Plantation_Key   F 7.23   3.09  8.38    NA  December 2013.6
## 673  C.corindum  Plantation_Key   M 5.50   2.86  7.84    NA  December 2013.6
## 674  C.corindum  Plantation_Key   M 6.22   2.94  8.46    NA  December 2013.6
## 675  C.corindum  Plantation_Key   F 8.87   3.87  9.81    NA  December 2013.6
## 676  C.corindum  Plantation_Key   M 6.00   3.03  8.16    NA  December 2013.6
## 677  C.corindum  Plantation_Key   F 7.77   3.45  9.76    NA  December 2013.6
## 678  C.corindum  Plantation_Key   F 8.28   3.51  9.19    NA  December 2013.6
## 679  C.corindum  Plantation_Key   M 5.74   2.70  5.45    NA  December 2013.6
## 680  C.corindum  Plantation_Key   F 6.64   3.05  8.28    NA  December 2013.6
## 681  C.corindum  Plantation_Key   F 8.06   3.41  9.03    NA  December 2013.6
## 682  C.corindum  Plantation_Key   F 7.52   3.36  8.83    NA  December 2013.6
## 683  C.corindum  Plantation_Key   M 6.03   2.81  8.39    NA  December 2013.6
## 684  C.corindum  Plantation_Key   M 5.94   2.84  8.11    NA  December 2013.6
## 685  C.corindum  Plantation_Key   M 5.80   2.93  7.92    NA  December 2013.6
## 686  C.corindum  Plantation_Key   F 7.65   3.46  9.21    NA  December 2013.6
## 687  C.corindum  Plantation_Key   F 7.31   3.57  9.54    NA  December 2013.6
## 688  C.corindum  Plantation_Key   F 9.35   3.82 10.58    NA  December 2013.6
## 689  C.corindum  Plantation_Key   F 9.29   3.74  9.85    NA  December 2013.6
## 690  C.corindum  Plantation_Key   F 8.28   4.03 11.06    NA  December 2013.6
## 691  C.corindum  Plantation_Key   M 5.42   2.73  7.61    NA  December 2013.6
## 692  C.corindum  Plantation_Key   F 6.68   3.20  8.49    NA  December 2013.6
## 693  C.corindum  Plantation_Key   M 6.09   2.94  8.56    NA  December 2013.6
## 694  C.corindum  Plantation_Key   F 6.76   3.22  8.79    NA  December 2013.6
## 695  C.corindum  Plantation_Key   M 6.12   3.12  8.26    NA  December 2013.6
## 696  C.corindum  Plantation_Key   M 5.34   2.57  4.32    NA  December 2013.6
## 697  C.corindum  Plantation_Key   F 7.97   3.58  9.88    NA  December 2013.6
## 698  C.corindum  Plantation_Key   M 5.74   2.76  8.73    NA  December 2013.6
## 699  C.corindum  Plantation_Key   M 5.98   3.02  8.31    NA  December 2013.6
## 700  C.corindum  Plantation_Key   F 7.29   3.25  8.61    NA  December 2013.6
## 701  C.corindum  Plantation_Key   M 5.67   2.88  5.71    NA  December 2013.6
## 702  C.corindum  Plantation_Key   M 5.96   2.90  8.57    NA  December 2013.6
## 703  C.corindum  Plantation_Key   M 5.39   2.37  4.41    NA  December 2013.6
## 704  C.corindum  Plantation_Key   F 7.45   3.41 10.25    NA  December 2013.6
## 705   K.elegans     Gainesville   F 6.30   3.40  8.82    NA     April 2014.0
## 706   K.elegans     Gainesville   M 5.15   2.78  7.41    NA     April 2014.0
## 707   K.elegans     Gainesville   M 5.38   3.04  8.15    NA     April 2014.0
## 708   K.elegans     Gainesville   M 5.01   3.05  8.09    NA     April 2014.0
## 709   K.elegans     Gainesville   F 6.34   3.24  9.06    NA     April 2014.0
## 710   K.elegans     Gainesville   F 6.68   3.66  9.54    NA     April 2014.0
## 711   K.elegans     Gainesville   F 6.25   3.47  9.65    NA     April 2014.0
## 712   K.elegans     Gainesville   F 6.05   3.62  9.41    NA     April 2014.0
## 713   K.elegans     Gainesville   M 5.66   2.86  8.42    NA     April 2014.0
## 714   K.elegans     Gainesville   F 5.99   3.25  9.21    NA     April 2014.0
## 715   K.elegans     Gainesville   M 5.47   2.88  7.86    NA     April 2014.0
## 716   K.elegans     Gainesville   F 7.42   3.30  9.09    NA     April 2014.0
## 717   K.elegans     Gainesville   F 6.20   3.10  8.26    NA     April 2014.0
## 718   K.elegans     Gainesville   M 5.07   2.99  7.50    NA     April 2014.0
## 719   K.elegans     Gainesville   F 6.69   3.36  9.07    NA     April 2014.0
## 720   K.elegans     Gainesville   F 5.06   2.88  8.07    NA     April 2014.0
## 721   K.elegans     Gainesville   M 5.18   3.03  8.01    NA     April 2014.0
## 722   K.elegans     Gainesville   F 5.69   3.01  7.72    NA     April 2014.0
## 723   K.elegans     Gainesville   F 6.46   3.18  8.39    NA     April 2014.0
## 724   K.elegans     Gainesville   F 7.45   3.53  9.19    NA     April 2014.0
## 725   K.elegans     Gainesville   M 4.64   2.72  7.27    NA     April 2014.0
## 726   K.elegans     Gainesville   M 5.26   2.53  4.63    NA     April 2014.0
## 727   K.elegans     Gainesville   F 6.37   3.35  8.75    NA     April 2014.0
## 728   K.elegans     Gainesville   F 6.26   3.43  8.65    NA     April 2014.0
## 729   K.elegans     Gainesville   M 5.36   2.94  8.22    NA     April 2014.0
## 730   K.elegans     Gainesville   M 5.82   3.14  8.50    NA     April 2014.0
## 731   K.elegans     Gainesville   F 6.60   3.54  9.43    NA     April 2014.0
## 732   K.elegans     Gainesville   F 6.13   3.31  5.98    NA     April 2014.0
## 733   K.elegans     Gainesville   F 6.62   3.42  8.79    NA     April 2014.0
## 734   K.elegans     Gainesville   M 5.73   2.87  8.46    NA     April 2014.0
## 735   K.elegans     Gainesville   F 6.35   3.47  9.15    NA     April 2014.0
## 736   K.elegans     Gainesville   F 6.44   3.34  9.24    NA     April 2014.0
## 737   K.elegans     Gainesville   F 6.88   3.25  9.10    NA     April 2014.0
## 738   K.elegans     Gainesville   M 5.31   2.85  7.68    NA     April 2014.0
## 739   K.elegans     Gainesville   F 6.13   3.10  8.35    NA     April 2014.0
## 740   K.elegans     Gainesville   F 7.04   3.24  8.98    NA     April 2014.0
## 741   K.elegans     Gainesville   F 6.56   2.97  8.06    NA     April 2014.0
## 742   K.elegans     Gainesville   M 5.03   2.96  7.99    NA     April 2014.0
## 743   K.elegans     Gainesville   F 6.33   3.38  8.92    NA     April 2014.0
## 744   K.elegans     Gainesville   M 5.34   2.85  8.18    NA     April 2014.0
## 745   K.elegans     Gainesville   M 5.40   2.89  7.46    NA     April 2014.0
## 746   K.elegans     Gainesville   F 6.66   3.36  9.07    NA     April 2014.0
## 747   K.elegans     Gainesville   M 5.60   3.04  8.27    NA     April 2014.0
## 748   K.elegans     Gainesville   F 6.78   3.09  8.51    NA     April 2014.0
## 749   K.elegans     Gainesville   M 5.25   2.90  7.63    NA     April 2014.0
## 750   K.elegans     Gainesville   F 6.40   3.41  8.83    NA     April 2014.0
## 751   K.elegans     Gainesville   M 5.70   2.99  7.76    NA     April 2014.0
## 752   K.elegans     Gainesville   M 5.31   2.59  7.24    NA     April 2014.0
## 753  C.corindum       Homestead   M 5.25   2.93  8.23    NA     April 2014.0
## 754  C.corindum       Homestead   M 5.74   3.33  8.44    NA     April 2014.0
## 755  C.corindum       Homestead   M 5.63   3.22  8.65    NA     April 2014.0
## 756  C.corindum       Homestead   F 7.43   3.86  9.77    NA     April 2014.0
## 757  C.corindum       Homestead   F 6.64   3.14  9.18    NA     April 2014.0
## 758  C.corindum       Homestead   F 6.63   3.34  5.77    NA     April 2014.0
## 759  C.corindum       Homestead   F 6.73   3.78  6.63    NA     April 2014.0
## 760  C.corindum       Homestead   M 5.42   2.98  4.80    NA     April 2014.0
## 761  C.corindum       Homestead   F 6.95   3.46  7.07    NA     April 2014.0
## 762  C.corindum       Homestead   M 5.53   2.77  4.58    NA     April 2014.0
## 763  C.corindum       Homestead   M 4.89   2.74  4.18    NA     April 2014.0
## 764  C.corindum       Homestead   F 6.84   3.48  6.73    NA     April 2014.0
## 765  C.corindum       Homestead   M 5.35   2.99  7.94    NA     April 2014.0
## 766  C.corindum       Homestead   F 6.76   3.40  8.94    NA     April 2014.0
## 767  C.corindum       Homestead   M 5.84   2.91  8.13    NA     April 2014.0
## 768  C.corindum       Homestead   M 5.67   3.23  8.31    NA     April 2014.0
## 769  C.corindum       Homestead   M 5.01   2.86  4.41    NA     April 2014.0
## 770  C.corindum       Key_Largo   F 7.67   3.61  5.86    NA     April 2014.0
## 771  C.corindum       Key_Largo   F 6.29   2.69  4.30    NA     April 2014.0
## 772  C.corindum       Key_Largo   F 6.45   2.85  5.05    NA     April 2014.0
## 773  C.corindum       Key_Largo   F 8.98   3.71  9.28    NA     April 2014.0
## 774  C.corindum       Key_Largo   F 7.81   3.48  5.45    NA     April 2014.0
## 775  C.corindum       Key_Largo   F 6.83   2.99  5.04    NA     April 2014.0
## 776  C.corindum       Key_Largo   F 7.95   3.37  8.27    NA     April 2014.0
## 777  C.corindum       Key_Largo   F 6.92   3.02  5.70    NA     April 2014.0
## 778  C.corindum       Key_Largo   F 7.35   3.71  9.28    NA     April 2014.0
## 779  C.corindum       Key_Largo   F 6.16   2.96  4.84    NA     April 2014.0
## 780  C.corindum       Key_Largo   F 6.14   2.96  4.23    NA     April 2014.0
## 781  C.corindum       Key_Largo   F 8.75   4.11 10.04    NA     April 2014.0
## 782  C.corindum       Key_Largo   F 6.36   3.20  4.88    NA     April 2014.0
## 783  C.corindum       Key_Largo   F 8.63   3.66  9.07    NA     April 2014.0
## 784  C.corindum       Key_Largo   F 7.68   3.46  8.56    NA     April 2014.0
## 785  C.corindum       Key_Largo   F 6.80   3.15  4.86    NA     April 2014.0
## 786  C.corindum       Key_Largo   F 5.75   2.83  4.24    NA     April 2014.0
## 787  C.corindum       Key_Largo   F 5.54   2.66  3.78    NA     April 2014.0
## 788  C.corindum       Key_Largo   F 7.88   3.40  8.68    NA     April 2014.0
## 789  C.corindum       Key_Largo   F 8.68   3.88 10.08    NA     April 2014.0
## 790  C.corindum       Key_Largo   F 6.30   2.96  5.06    NA     April 2014.0
## 791  C.corindum       Key_Largo   F 7.91   3.64  9.08    NA     April 2014.0
## 792  C.corindum       Key_Largo   F 7.93   3.42  8.97    NA     April 2014.0
## 793  C.corindum       Key_Largo   F 6.72   3.17  4.95    NA     April 2014.0
## 794  C.corindum       Key_Largo   F 7.28   3.37  7.03    NA     April 2014.0
## 795  C.corindum       Key_Largo   F 5.66   2.69  4.09    NA     April 2014.0
## 796  C.corindum       Key_Largo   F 8.33   3.86  9.24    NA     April 2014.0
## 797  C.corindum       Key_Largo   F 6.18   3.19  4.72    NA     April 2014.0
## 798  C.corindum       Key_Largo   F 7.50   3.42  8.07    NA     April 2014.0
## 799  C.corindum       Key_Largo   F 6.96   3.09  5.50    NA     April 2014.0
## 800  C.corindum       Key_Largo   F 6.26   2.87  4.95    NA     April 2014.0
## 801  C.corindum       Key_Largo   M 6.24   3.16  8.43 11.53     April 2014.0
## 802  C.corindum       Key_Largo   F 5.89   2.73  4.28    NA     April 2014.0
## 803  C.corindum       Key_Largo   M 6.33   2.94  7.88 10.42     April 2014.0
## 804  C.corindum       Key_Largo   F 9.10   3.89 10.23 13.93     April 2014.0
## 805  C.corindum       Key_Largo   F 8.80   3.67 10.09 14.11     April 2014.0
## 806  C.corindum       Key_Largo   F 6.93   2.80  4.80    NA     April 2014.0
## 807  C.corindum       Key_Largo   F 6.61   2.83  4.72    NA     April 2014.0
## 808  C.corindum       Key_Largo   M 5.89   2.85  7.94 10.64     April 2014.0
## 809  C.corindum       Key_Largo   M 5.43   2.76  7.23  9.99     April 2014.0
## 810   K.elegans      Lake_Wales   M 5.10   2.42  4.46    NA     April 2014.0
## 811   K.elegans      Lake_Wales   F 7.69   3.35  9.32 12.31     April 2014.0
## 812   K.elegans      Lake_Wales   M 5.48   2.89  7.73 10.89     April 2014.0
## 813   K.elegans      Lake_Wales   M 5.67   2.90  8.19 10.88     April 2014.0
## 814   K.elegans      Lake_Wales   F 7.49   3.23  8.70 12.01     April 2014.0
## 815   K.elegans      Lake_Wales   F 7.23   3.33  9.08 12.21     April 2014.0
## 816   K.elegans      Lake_Wales   M 5.64   3.10  8.21 11.37     April 2014.0
## 817   K.elegans      Lake_Wales   F 6.42   3.67  9.86 13.18     April 2014.0
## 818   K.elegans      Lake_Wales   M 5.60   3.26  8.33 11.17     April 2014.0
## 819   K.elegans      Lake_Wales   M 5.63   3.00  8.12 10.91     April 2014.0
## 820   K.elegans      Lake_Wales   F 6.95   3.07  8.72 11.88     April 2014.0
## 821   K.elegans      Lake_Wales   M 5.52   3.23  8.52 11.29     April 2014.0
## 822   K.elegans      Lake_Wales   M 5.19   3.12  7.88 10.94     April 2014.0
## 823   K.elegans      Lake_Wales   F 7.24   3.27  8.93 12.21     April 2014.0
## 824   K.elegans      Lake_Wales   F 6.57   2.93  8.39 11.45     April 2014.0
## 825   K.elegans      Lake_Wales   M 5.33   2.73  7.72 10.52     April 2014.0
## 826   K.elegans      Lake_Wales   F 6.78   3.29  8.92 11.99     April 2014.0
## 827   K.elegans      Lake_Wales   F 6.39   2.88  5.02    NA     April 2014.0
## 828   K.elegans      Lake_Wales   M 5.56   2.91  7.63 10.40     April 2014.0
## 829   K.elegans      Lake_Wales   F 6.38   3.26  8.47 11.94     April 2014.0
## 830   K.elegans      Lake_Wales   M 5.28   3.03  8.34 11.00     April 2014.0
## 831   K.elegans      Lake_Wales   F 7.65   3.52  9.26 12.82     April 2014.0
## 832   K.elegans      Lake_Wales   F 6.27   3.00  5.52    NA     April 2014.0
## 833   K.elegans      Lake_Wales   F 6.62   3.29  8.77 11.71     April 2014.0
## 834   K.elegans      Lake_Wales   M 5.51   3.04  8.92 11.85     April 2014.0
## 835   K.elegans      Lake_Wales   F 6.87   3.55  8.72 13.09     April 2014.0
## 836   K.elegans      Lake_Wales   F 7.66   3.67  9.99 13.62     April 2014.0
## 837   K.elegans      Lake_Wales   F 6.67   2.94  7.42 10.57     April 2014.0
## 838   K.elegans      Lake_Wales   M 5.78   3.29  9.04 11.88     April 2014.0
## 839   K.elegans      Lake_Wales   F 6.24   2.99  4.73    NA     April 2014.0
## 840   K.elegans      Lake_Wales   F 6.59   2.90  7.91 10.83     April 2014.0
## 841   K.elegans      Lake_Wales   F 6.75   2.94  8.15 11.25     April 2014.0
## 842   K.elegans      Lake_Wales   M 5.49   3.04  8.38 11.59     April 2014.0
## 843   K.elegans      Lake_Wales   F 6.91   3.09  8.56 11.72     April 2014.0
## 844   K.elegans      Lake_Wales   M 5.60   3.15  8.83 12.01     April 2014.0
## 845   K.elegans      Lake_Wales   F 5.56   2.94  7.27 10.51     April 2014.0
## 846   K.elegans      Lake_Wales   F 6.87   3.08  7.48 10.62     April 2014.0
## 847   K.elegans      Lake_Wales   M 5.47   2.99  7.77 10.85     April 2014.0
## 848   K.elegans      Lake_Wales   F 6.41   3.00  5.25    NA     April 2014.0
## 849   K.elegans      Lake_Wales   F 7.07   3.27  8.92 12.21     April 2014.0
## 850   K.elegans      Lake_Wales   M 5.48   2.88  8.48 11.29     April 2014.0
## 851   K.elegans      Lake_Wales   F 5.99   3.01  8.21 11.50     April 2014.0
## 852   K.elegans      Lake_Wales   F 6.62   3.15  8.58 11.77     April 2014.0
## 853   K.elegans      Lake_Wales   F 6.50   3.20  8.42 11.68     April 2014.0
## 854   K.elegans        Leesburg   F 7.09   3.47  9.74    NA     April 2014.0
## 855   K.elegans        Leesburg   M 5.56   2.86  8.21    NA     April 2014.0
## 856   K.elegans        Leesburg   M 5.38   3.10  8.21    NA     April 2014.0
## 857   K.elegans        Leesburg   F 7.60   3.27  8.92    NA     April 2014.0
## 858   K.elegans        Leesburg   M 5.58   2.89  8.05    NA     April 2014.0
## 859   K.elegans        Leesburg   M 5.29   3.05  8.06    NA     April 2014.0
## 860   K.elegans        Leesburg   F 6.92   3.43  9.35    NA     April 2014.0
## 861   K.elegans        Leesburg   F 7.17   3.39  9.19    NA     April 2014.0
## 862   K.elegans        Leesburg   M 5.34   2.89  8.42    NA     April 2014.0
## 863   K.elegans        Leesburg   M 5.49   3.00  8.49    NA     April 2014.0
## 864   K.elegans        Leesburg   F 6.59   3.59  9.48    NA     April 2014.0
## 865   K.elegans        Leesburg   F 6.95   3.33  9.13    NA     April 2014.0
## 866   K.elegans        Leesburg   F 6.86   3.12  8.01    NA     April 2014.0
## 867   K.elegans        Leesburg   F 6.27   3.12  9.10    NA     April 2014.0
## 868  C.corindum  Plantation_Key   F 8.25   3.36  9.37 12.76     April 2014.0
## 869  C.corindum  Plantation_Key   M 5.52   2.56  4.82    NA     April 2014.0
## 870  C.corindum  Plantation_Key   M 5.56   2.88  7.86 10.70     April 2014.0
## 871  C.corindum  Plantation_Key   F 6.55   3.03  5.90    NA     April 2014.0
## 872  C.corindum  Plantation_Key   M 5.44   2.36  4.83    NA     April 2014.0
## 873  C.corindum  Plantation_Key   M 5.23   2.50  4.69    NA     April 2014.0
## 874  C.corindum  Plantation_Key   F 7.76   3.23  8.71 12.22     April 2014.0
## 875  C.corindum  Plantation_Key   M 5.67   3.09  8.06 10.94     April 2014.0
## 876  C.corindum  Plantation_Key   F 6.37   2.83  5.21    NA     April 2014.0
## 877  C.corindum  Plantation_Key   F 6.42   3.01  6.37    NA     April 2014.0
## 878  C.corindum  Plantation_Key   F 8.65   3.00  8.48 11.74     April 2014.0
## 879  C.corindum  Plantation_Key   F 6.15   2.80  6.11    NA     April 2014.0
## 880  C.corindum  Plantation_Key   F 6.98   3.34  8.77 11.98     April 2014.0
## 881  C.corindum  Plantation_Key   F 6.30   2.89  8.07 11.27     April 2014.0
## 882  C.corindum  Plantation_Key   F 6.02   2.61  4.31    NA     April 2014.0
## 883  C.corindum  Plantation_Key   M 6.09   2.99  8.11    NA     April 2014.0
## 884  C.corindum  Plantation_Key   F 8.41   3.56  9.33    NA     April 2014.0
## 885  C.corindum  Plantation_Key   M 5.18   2.33  3.91    NA     April 2014.0
## 886  C.corindum  Plantation_Key   M 5.86   2.93  8.41    NA     April 2014.0
## 887  C.corindum  Plantation_Key   M 5.74   3.08  8.52    NA     April 2014.0
## 888  C.corindum  Plantation_Key   M 5.72   2.67  5.45    NA     April 2014.0
## 889  C.corindum  Plantation_Key   F 7.29   3.28  8.26    NA     April 2014.0
## 890  C.corindum  Plantation_Key   F 7.56   3.13  8.37    NA     April 2014.0
## 891  C.corindum  Plantation_Key   M 6.50   3.23  8.05    NA     April 2014.0
## 892  C.corindum  Plantation_Key   M 6.02   2.93  8.14    NA     April 2014.0
## 893  C.corindum  Plantation_Key   F 6.52   2.99  4.74    NA     April 2014.0
## 894  C.corindum  Plantation_Key   M 5.61   2.77  7.25    NA     April 2014.0
## 895  C.corindum  Plantation_Key   F 6.16   2.66  4.89    NA     April 2014.0
## 896  C.corindum  Plantation_Key   M 5.71   2.91  7.96    NA     April 2014.0
## 897  C.corindum  Plantation_Key   M 6.21   3.13  8.09    NA     April 2014.0
## 898  C.corindum  Plantation_Key   M 5.57   2.70  5.87    NA     April 2014.0
## 899  C.corindum  Plantation_Key   M 5.77   2.91  5.15    NA     April 2014.0
## 900  C.corindum  Plantation_Key   M 5.52   2.47  4.15    NA     April 2014.0
## 901  C.corindum  Plantation_Key   F 6.38   2.82  5.36    NA     April 2014.0
## 902  C.corindum  Plantation_Key   F 6.48   3.04  4.89    NA     April 2014.0
## 903  C.corindum  Plantation_Key   M 6.22   3.20  8.42    NA     April 2014.0
## 904  C.corindum  Plantation_Key   F 8.61   3.34  9.23    NA     April 2014.0
## 905  C.corindum  Plantation_Key   M 5.53   2.68  4.67    NA     April 2014.0
## 906  C.corindum  Plantation_Key   M 5.95   2.77  7.40    NA     April 2014.0
## 907  C.corindum  Plantation_Key   F 8.84   3.54  9.38    NA     April 2014.0
## 908  C.corindum  Plantation_Key   M 6.71   3.33  8.67    NA     April 2014.0
## 909  C.corindum  Plantation_Key   F 5.33   2.42  3.87    NA     April 2014.0
## 910  C.corindum  Plantation_Key   M 5.66   3.15  8.44    NA     April 2014.0
## 911  C.corindum  Plantation_Key   M 5.30   2.73  6.66    NA     April 2014.0
## 912  C.corindum       Key_Largo   F 5.79   2.82  4.38    NA     April 2015.0
## 913  C.corindum       Key_Largo   M 5.55   2.58  4.63    NA     April 2015.0
## 914  C.corindum       Key_Largo   M 5.24   2.59  4.36    NA     April 2015.0
## 915  C.corindum       Key_Largo   F 8.72   3.77  9.74 13.58     April 2015.0
## 916  C.corindum       Key_Largo   M 5.28   2.65  4.94    NA     April 2015.0
## 917  C.corindum       Key_Largo   F 6.81   2.89  4.68    NA     April 2015.0
## 918  C.corindum       Key_Largo   M 6.49   3.10  8.72 12.13     April 2015.0
## 919  C.corindum       Key_Largo   M 5.72   2.68  5.71    NA     April 2015.0
## 920  C.corindum       Key_Largo   M 5.49   2.29  3.89    NA     April 2015.0
## 921  C.corindum       Key_Largo   F 6.45   3.19  5.40    NA     April 2015.0
## 922  C.corindum       Key_Largo   F 6.34   2.85  5.02    NA     April 2015.0
## 923  C.corindum       Key_Largo   F 7.12   3.37  5.77    NA     April 2015.0
## 924  C.corindum       Key_Largo   F 7.10   3.21  5.70    NA     April 2015.0
## 925  C.corindum       Key_Largo   F 6.35   3.08  5.10    NA     April 2015.0
## 926  C.corindum       Key_Largo   F 7.51   3.09  8.36 11.87     April 2015.0
## 927  C.corindum       Key_Largo   F 6.52   2.95  5.12    NA     April 2015.0
## 928  C.corindum       Key_Largo   M 5.11   2.51  4.26    NA     April 2015.0
## 929  C.corindum       Key_Largo   F 5.84   2.87  4.61    NA     April 2015.0
## 930  C.corindum       Key_Largo   M 5.61   2.99  8.00 10.98     April 2015.0
## 931  C.corindum       Key_Largo   F 7.15   3.15  5.80    NA     April 2015.0
## 932  C.corindum       Key_Largo   M 5.62   2.77  4.75    NA     April 2015.0
## 933  C.corindum       Key_Largo   M 6.01   2.89  7.56 10.56     April 2015.0
## 934  C.corindum       Key_Largo   F 6.11   2.85  4.41    NA     April 2015.0
## 935  C.corindum       Key_Largo   M 5.62   2.58  6.48  9.26     April 2015.0
## 936  C.corindum       Key_Largo   F 8.37   3.39  8.73 12.00     April 2015.0
## 937  C.corindum       Key_Largo   M 6.54   2.98  7.88 10.44     April 2015.0
## 938  C.corindum       Key_Largo   M 5.96   2.70  4.62    NA     April 2015.0
## 939  C.corindum       Key_Largo   M 5.25   2.45  4.24    NA     April 2015.0
## 940  C.corindum       Key_Largo   M 5.83   2.68  4.98    NA     April 2015.0
## 941  C.corindum       Key_Largo   M 6.42   3.10  8.05 11.16     April 2015.0
## 942  C.corindum       Key_Largo   F 6.94   3.17  5.32    NA     April 2015.0
## 943  C.corindum       Key_Largo   M 5.72   2.63  4.64    NA     April 2015.0
## 944  C.corindum       Key_Largo   M 5.27   2.61  4.75    NA     April 2015.0
## 945  C.corindum       Key_Largo   F 7.08   2.85  4.94    NA     April 2015.0
## 946  C.corindum       Key_Largo   F 6.81   3.03  4.99    NA     April 2015.0
## 947  C.corindum       Key_Largo   M 5.19   2.46  4.20    NA     April 2015.0
## 948  C.corindum       Key_Largo   F 5.99   2.73  4.94    NA     April 2015.0
## 949  C.corindum       Key_Largo   M 5.04   2.41  4.36    NA     April 2015.0
## 950  C.corindum       Key_Largo   F 5.37   2.41  3.93    NA     April 2015.0
## 951  C.corindum       Key_Largo   F 6.60   3.00  5.40    NA     April 2015.0
## 952  C.corindum       Key_Largo   F 6.26   3.06  8.12 11.84     April 2015.0
## 953  C.corindum       Key_Largo   F 6.18   2.76  5.24 12.11     April 2015.0
## 954  C.corindum       Key_Largo   F 8.38   3.33  8.53    NA     April 2015.0
## 955  C.corindum       Key_Largo   M 5.43   2.34  4.38    NA     April 2015.0
## 956  C.corindum       Key_Largo   F 6.57   3.25  5.21 11.65     April 2015.0
## 957  C.corindum       Key_Largo   M 6.42   3.02  8.22 11.73     April 2015.0
## 958  C.corindum       Key_Largo   F 7.34   3.06  8.00    NA     April 2015.0
## 959  C.corindum       Key_Largo   M 5.57   2.66  4.73    NA     April 2015.0
## 960  C.corindum       Key_Largo   M 5.30   2.52  4.61    NA     April 2015.0
## 961  C.corindum       Key_Largo   F 6.12   2.79  4.93    NA     April 2015.0
## 962  C.corindum       Key_Largo   F 7.04   3.13  5.67    NA     April 2015.0
## 963   K.elegans      Lake_Wales   M 5.69   3.21  8.55 11.70     April 2015.0
## 964   K.elegans      Lake_Wales   M 5.36   3.07  8.30 11.87     April 2015.0
## 965   K.elegans      Lake_Wales   F 7.58   3.72 10.72 13.96     April 2015.0
## 966   K.elegans      Lake_Wales   M 5.72   3.09  8.44 11.72     April 2015.0
## 967   K.elegans      Lake_Wales   F 7.98   3.85  9.90 13.90     April 2015.0
## 968   K.elegans      Lake_Wales   M 5.41   3.27  8.33 11.73     April 2015.0
## 969   K.elegans      Lake_Wales   M 5.71   3.16  8.45 11.75     April 2015.0
## 970   K.elegans      Lake_Wales   F 7.41   3.97 10.22 14.70     April 2015.0
## 971   K.elegans      Lake_Wales   M 5.68   3.07  8.26 11.68     April 2015.0
## 972   K.elegans      Lake_Wales   F 6.58   3.44  9.07 12.32     April 2015.0
## 973   K.elegans      Lake_Wales   M 5.16   3.29  8.39 11.17     April 2015.0
## 974   K.elegans      Lake_Wales   M 5.78   2.91  8.54 11.50     April 2015.0
## 975   K.elegans      Lake_Wales   M 5.39   3.30  8.71 11.77     April 2015.0
## 976   K.elegans      Lake_Wales   F 7.43   3.99  9.71 13.85     April 2015.0
## 977   K.elegans      Lake_Wales   M 5.47   3.00  7.91 11.06     April 2015.0
## 978   K.elegans      Lake_Wales   F 8.04   3.74  9.98 13.34     April 2015.0
## 979   K.elegans      Lake_Wales   F 8.07   3.58  9.80 13.50     April 2015.0
## 980   K.elegans      Lake_Wales   F 7.00   3.58  9.63 12.80     April 2015.0
## 981   K.elegans      Lake_Wales   F 6.12   3.38  8.34 12.07     April 2015.0
## 982   K.elegans      Lake_Wales   M 5.18   3.01  8.07 11.43     April 2015.0
## 983   K.elegans      Lake_Wales   F 6.95   3.57  9.18 12.41     April 2015.0
## 984   K.elegans      Lake_Wales   M 5.08   2.86  7.36 10.51     April 2015.0
## 985   K.elegans      Lake_Wales   M 5.34   3.08  8.07 11.58     April 2015.0
## 986   K.elegans      Lake_Wales   F 6.39   3.39  9.17 12.89     April 2015.0
## 987   K.elegans      Lake_Wales   F 6.96   3.60  9.92 12.90     April 2015.0
## 988   K.elegans      Lake_Wales   F 7.27   3.52 10.37 14.36     April 2015.0
## 989   K.elegans      Lake_Wales   M 5.73   3.28  8.74 11.77     April 2015.0
## 990   K.elegans      Lake_Wales   F 6.44   3.65  9.55 12.93     April 2015.0
## 991   K.elegans      Lake_Wales   M 5.51   3.15  8.52 11.53     April 2015.0
## 992   K.elegans      Lake_Wales   M 5.52   3.13  8.55 12.09     April 2015.0
## 993   K.elegans      Lake_Wales   M 5.74   3.17  8.66 12.32     April 2015.0
## 994   K.elegans      Lake_Wales   M 5.73   3.13  8.35 11.64     April 2015.0
## 995   K.elegans      Lake_Wales   F 6.61   3.79  9.87 13.86     April 2015.0
## 996   K.elegans      Lake_Wales   F 7.83   3.76 10.02 13.39     April 2015.0
## 997   K.elegans      Lake_Wales   F 6.76   3.65  9.83 13.23     April 2015.0
## 998   K.elegans      Lake_Wales   F 6.51   3.55  9.43 12.79     April 2015.0
## 999   K.elegans      Lake_Wales   F 7.41   3.52  9.35 12.72     April 2015.0
## 1000  K.elegans      Lake_Wales   M 5.79   3.27  8.72 11.89     April 2015.0
## 1001  K.elegans      Lake_Wales   F 6.89   3.78  9.65 13.05     April 2015.0
## 1002  K.elegans      Lake_Wales   M 5.52   3.19  8.49 11.61     April 2015.0
## 1003  K.elegans      Lake_Wales   M 5.69   3.20  8.51 12.22     April 2015.0
## 1004  K.elegans      Lake_Wales   F 6.97   3.80 10.40 14.15     April 2015.0
## 1005  K.elegans      Lake_Wales   F 6.15   3.54  9.34 12.69       May 2015.0
## 1006  K.elegans      Lake_Wales   M 5.36   3.04  8.26 11.22       May 2015.0
## 1007  K.elegans      Lake_Wales   F 6.51   3.64  9.63 12.93       May 2015.0
## 1008  K.elegans      Lake_Wales   F 6.33   3.36  9.37 12.57       May 2015.0
## 1009  K.elegans      Lake_Wales   M 5.20   3.23  8.21 11.34       May 2015.0
## 1010  K.elegans      Lake_Wales   F 7.71   3.75  9.77 13.89       May 2015.0
## 1011  K.elegans      Lake_Wales   M 5.85   3.16  8.68 12.14       May 2015.0
## 1012  K.elegans      Lake_Wales   F 6.97   3.78 10.06 13.64       May 2015.0
## 1013  K.elegans      Lake_Wales   M 5.86   3.26  8.90 12.17       May 2015.0
## 1014  K.elegans      Lake_Wales   M 5.70   3.08  8.48 11.41       May 2015.0
## 1015  K.elegans      Lake_Wales   F 7.30   3.63 10.48 14.11       May 2015.0
## 1016  K.elegans        Leesburg   F 6.51   3.62  9.11 13.07     April 2015.0
## 1017  K.elegans        Leesburg   M 5.60   3.15  8.81 12.21     April 2015.0
## 1018  K.elegans        Leesburg   M 5.61   3.27  8.95 12.32     April 2015.0
## 1019  K.elegans        Leesburg   F 6.70   3.59  9.92 13.62     April 2015.0
## 1020  K.elegans        Leesburg   F 6.55   3.31 10.00 13.92     April 2015.0
## 1021  K.elegans        Leesburg   F 6.24   3.03  7.78 11.69     April 2015.0
## 1022  K.elegans        Leesburg   M 5.61   3.24  8.84 12.04     April 2015.0
## 1023  K.elegans        Leesburg   M 5.43   3.10  8.81 11.92     April 2015.0
## 1024  K.elegans        Leesburg   M 5.24   2.99  8.75 11.91     April 2015.0
## 1025  K.elegans        Leesburg   F 7.62   3.90  9.97 14.01     April 2015.0
## 1026  K.elegans        Leesburg   F 6.30   3.25  5.92    NA     April 2015.0
## 1027  K.elegans        Leesburg   M 5.08   2.91  8.48 11.56     April 2015.0
## 1028  K.elegans        Leesburg   M 5.57   2.98  8.34 11.42     April 2015.0
## 1029  K.elegans        Leesburg   M 5.36   3.06  8.61 11.84     April 2015.0
## 1030  K.elegans        Leesburg   F 6.61   3.52  9.48 12.67     April 2015.0
## 1031  K.elegans        Leesburg   M 5.58   3.18  9.14 12.34     April 2015.0
## 1032  K.elegans        Leesburg   M 5.81   2.85  8.06 11.18     April 2015.0
## 1033  K.elegans        Leesburg   F 6.37   3.19  8.79 12.44     April 2015.0
## 1034  K.elegans        Leesburg   M 5.56   3.01  8.32 11.28     April 2015.0
## 1035  K.elegans        Leesburg   F 6.00   3.64  9.33 13.11     April 2015.0
## 1036  K.elegans        Leesburg   F 6.38   3.54  9.14 12.76     April 2015.0
## 1037  K.elegans        Leesburg   F 7.39   3.32  9.34 13.13     April 2015.0
## 1038  K.elegans        Leesburg   M 5.84   3.25  9.04 11.79     April 2015.0
## 1039  K.elegans        Leesburg   F 6.18   3.47  9.20 12.49     April 2015.0
## 1040  K.elegans        Leesburg   M 5.09   2.86  7.79 10.79     April 2015.0
## 1041  K.elegans        Leesburg   F 6.47   3.60  7.30    NA     April 2015.0
## 1042  K.elegans        Leesburg   F 7.10   3.45  9.44 13.45     April 2015.0
## 1043  K.elegans        Leesburg   F 6.49   3.63  9.37 12.63     April 2015.0
## 1044  K.elegans        Leesburg   F 6.57   3.63  8.17 12.03     April 2015.0
## 1045  K.elegans        Leesburg   M 5.31   3.08  8.47 11.77     April 2015.0
## 1046  K.elegans        Leesburg   M 5.53   2.80  7.45 10.40     April 2015.0
## 1047  K.elegans        Leesburg   M 5.67   2.87  8.09 11.34     April 2015.0
## 1048  K.elegans        Leesburg   F 5.76   2.74  4.70    NA     April 2015.0
## 1049  K.elegans        Leesburg   M 5.47   3.09  9.42 11.46     April 2015.0
## 1050  K.elegans        Leesburg   M 5.36   3.05  8.37 11.35     April 2015.0
## 1051  K.elegans        Leesburg   M 5.45   3.06  7.94 10.81     April 2015.0
## 1052 C.corindum  Plantation_Key   F 6.79   3.09  5.22 12.33     April 2015.0
## 1053 C.corindum  Plantation_Key   M 6.12   3.34  8.96    NA     April 2015.0
## 1054 C.corindum  Plantation_Key   F 6.39   3.04  4.87    NA     April 2015.0
## 1055 C.corindum  Plantation_Key   F 6.99   3.36  5.82    NA     April 2015.0
## 1056 C.corindum  Plantation_Key   F 6.48   3.05  7.76 11.35     April 2015.0
## 1057 C.corindum  Plantation_Key   F 7.56   3.69  9.26 13.69     April 2015.0
## 1058 C.corindum  Plantation_Key   F 6.79   3.78 10.13 14.07     April 2015.0
## 1059 C.corindum  Plantation_Key   F 6.21   2.77  4.52    NA     April 2015.0
## 1060 C.corindum  Plantation_Key   F 7.57   3.48  9.05 12.59     April 2015.0
## 1061 C.corindum  Plantation_Key   F 7.61   3.33  8.63 11.71     April 2015.0
## 1062 C.corindum  Plantation_Key   F 6.16   2.89  4.26    NA     April 2015.0
## 1063 C.corindum  Plantation_Key   F 7.87   3.56  9.22 12.86     April 2015.0
## 1064  K.elegans     Gainesville   M 5.50   3.26  8.36 11.36  December 2016.0
## 1065  K.elegans     Gainesville   F 7.43   3.47  9.52 12.91  December 2016.0
## 1066  K.elegans     Gainesville   M 5.75   3.09  9.29 12.33  December 2016.0
## 1067  K.elegans     Gainesville   M 5.60   3.01  8.10 11.15  December 2016.0
## 1068  K.elegans     Gainesville   F 7.71   3.15  8.96 12.43  December 2016.0
## 1069  K.elegans     Gainesville   F 7.84   3.89  9.88 13.32  December 2016.0
## 1070  K.elegans     Gainesville   F 7.93   3.79  9.76 13.09  December 2016.0
## 1071  K.elegans     Gainesville   F 8.02   3.56  9.45 12.86  December 2016.0
## 1072  K.elegans     Gainesville   F 7.54   3.59  9.43 13.10  December 2016.0
## 1073  K.elegans     Gainesville   F 7.62   3.59  9.46 13.32  December 2016.0
## 1074  K.elegans     Gainesville   M 5.54   2.99  7.96 10.99  December 2016.0
## 1075  K.elegans     Gainesville   F 7.64   3.57  9.79 13.28  December 2016.0
## 1076  K.elegans     Gainesville   M 6.06   3.24  8.84 12.09  December 2016.0
## 1077  K.elegans     Gainesville   M   NA   3.18  8.62 11.44  December 2016.0
## 1078  K.elegans     Gainesville   M 5.58   3.26  8.89 11.86  December 2016.0
## 1079  K.elegans     Gainesville   F 7.74   3.55  9.97 13.78  December 2016.0
## 1080  K.elegans     Gainesville   M 5.59   2.84  7.59 10.08  December 2016.0
## 1081  K.elegans     Gainesville   F 8.38   3.66  9.55 12.85  December 2016.0
## 1082  K.elegans     Gainesville   F 7.80   3.66  9.47 13.11  December 2016.0
## 1083  K.elegans     Gainesville   M 5.66   2.93  7.91 10.86  December 2016.0
## 1084  K.elegans     Gainesville   F 8.39   3.82 10.53 14.08  December 2016.0
## 1085  K.elegans     Gainesville   F 8.44   3.55  9.76 12.86  December 2016.0
## 1086  K.elegans     Gainesville   M 5.85   3.28  8.91 12.00  December 2016.0
## 1087  K.elegans     Gainesville   M 5.69   3.34  8.93 11.73  December 2016.0
## 1088  K.elegans     Gainesville   M 5.69   3.11  8.10 11.15  December 2016.0
## 1089  K.elegans     Gainesville   M 5.98   3.39  8.57 11.88  December 2016.0
## 1090  K.elegans     Gainesville   M 5.71   3.17  8.54 11.36  December 2016.0
## 1091  K.elegans     Gainesville   F 7.78   3.53  9.61 13.09  December 2016.0
## 1092  K.elegans     Gainesville   M 5.69   3.25  8.40 11.05  December 2016.0
## 1093  K.elegans     Gainesville   M 5.92   3.26  8.76 12.19  December 2016.0
## 1094  K.elegans     Gainesville   F 7.61   3.76  9.96 13.48  December 2016.0
## 1095  K.elegans     Gainesville   F 7.79   3.41  9.13 12.47  December 2016.0
## 1096  K.elegans     Gainesville   M 5.82   3.14  7.81 10.89  December 2016.0
## 1097  K.elegans     Gainesville   F 7.81   3.52  9.29 12.46  December 2016.0
## 1098  K.elegans     Gainesville   M 5.49   3.03  6.39  9.49  December 2016.0
## 1099  K.elegans     Gainesville   M 6.00   3.40  8.84 12.06  December 2016.0
## 1100  K.elegans     Gainesville   M 5.55   2.86  7.60 10.66  December 2016.0
## 1101  K.elegans     Gainesville   F 8.03   3.73  9.82 13.22  December 2016.0
## 1102  K.elegans     Gainesville   M 5.63   3.13  8.80 12.03  December 2016.0
## 1103  K.elegans     Gainesville   F 7.57   3.50  9.12 12.60  December 2016.0
## 1104  K.elegans     Gainesville   M 5.78   3.09  8.61 11.58  December 2016.0
## 1105  K.elegans     Gainesville   F 7.35   3.31  8.74 12.00  December 2016.0
## 1106  K.elegans     Gainesville   F 7.97   3.30  8.81 11.89  December 2016.0
## 1107  K.elegans     Gainesville   F 6.77   3.05  4.89  8.06  December 2016.0
## 1108  K.elegans     Gainesville   F 8.01   3.82 10.64 13.75  December 2016.0
## 1109  K.elegans     Gainesville   F 7.95   3.51  9.81 13.29  December 2016.0
## 1110  K.elegans     Gainesville   M 5.65   2.57  5.91  8.84  December 2016.0
## 1111  K.elegans     Gainesville   M 6.16   3.07  8.29 12.09  December 2016.0
## 1112  K.elegans     Gainesville   F 7.89   3.60  9.79 13.37  December 2016.0
## 1113  K.elegans     Gainesville   F 7.81   3.42  8.80 12.17  December 2016.0
## 1114  K.elegans     Gainesville   F 7.03   2.96  7.49 10.72  December 2016.0
## 1115  K.elegans     Gainesville   M 5.83   3.01  9.26 12.29  December 2016.0
## 1116  K.elegans     Gainesville   M 6.14   3.14  8.97 11.88  December 2016.0
## 1117  K.elegans     Gainesville   M 5.62   3.00  8.66 11.48  December 2016.0
## 1118  K.elegans     Gainesville   M 5.94   3.45  9.39 11.96  December 2016.0
## 1119  K.elegans     Gainesville   F 7.90   3.51  9.57 13.03  December 2016.0
## 1120  K.elegans     Gainesville   M 5.59   2.88  7.90 10.79  December 2016.0
## 1121  K.elegans       Homestead   M 5.32   3.20  8.96 11.63  December 2016.0
## 1122  K.elegans       Homestead   M 5.16   2.87  4.64    NA  December 2016.0
## 1123  K.elegans       Homestead   M 5.09   2.89  4.92    NA  December 2016.0
## 1124  K.elegans       Homestead   M 5.90   3.28  8.73 11.63  December 2016.0
## 1125  K.elegans       Homestead   M 5.60   3.29  9.05 12.18  December 2016.0
## 1126  K.elegans       Homestead   F 5.91   3.39  5.65    NA  December 2016.0
## 1127  K.elegans       Homestead   F 6.73   3.66 10.21 13.65  December 2016.0
## 1128  K.elegans       Homestead   M 5.42   2.95  8.12 10.88  December 2016.0
## 1129  K.elegans       Homestead   M 5.26   2.85  4.74    NA  December 2016.0
## 1130  K.elegans       Homestead   M 5.18   3.14  8.57 11.31  December 2016.0
## 1131  K.elegans       Homestead   M 5.25   3.16  9.13 11.74  December 2016.0
## 1132  K.elegans       Homestead   M 5.43   3.20  9.02 11.83  December 2016.0
## 1133  K.elegans       Homestead   M 5.45   3.23  8.83 11.76  December 2016.0
## 1134 C.corindum North_Key_Largo   F 8.39   3.65  9.64 13.45  December 2016.0
## 1135 C.corindum North_Key_Largo   F 9.02   3.49  9.08 12.69  December 2016.0
## 1136 C.corindum North_Key_Largo   M 7.09   3.51  9.34 12.27  December 2016.0
## 1137 C.corindum North_Key_Largo   M 5.43   2.76  4.78  7.69  December 2016.0
## 1138 C.corindum North_Key_Largo   M 6.06   2.96  8.25 11.32  December 2016.0
## 1139 C.corindum North_Key_Largo   F 6.88   3.00  5.55  8.81  December 2016.0
## 1140 C.corindum North_Key_Largo   M 5.89   2.96  8.23 11.47  December 2016.0
## 1141 C.corindum North_Key_Largo   F 8.44   3.67  9.36 13.11  December 2016.0
## 1142 C.corindum North_Key_Largo   F 8.02   3.48  9.47 12.89  December 2016.0
## 1143 C.corindum North_Key_Largo   F 8.10   3.24  7.81 11.16  December 2016.0
## 1144 C.corindum North_Key_Largo   F 7.77   3.94 10.13 13.51  December 2016.0
## 1145 C.corindum North_Key_Largo   F 6.96   2.96  5.47  8.81  December 2016.0
## 1146 C.corindum North_Key_Largo   F 6.13   2.74  6.20  9.51  December 2016.0
## 1147 C.corindum North_Key_Largo   M 5.94   2.80  7.88 10.75  December 2016.0
## 1148 C.corindum North_Key_Largo   M 6.60   3.22  8.14 11.48  December 2016.0
## 1149 C.corindum North_Key_Largo   M 6.54   3.34  8.72 11.91  December 2016.0
## 1150 C.corindum North_Key_Largo   M 6.39   3.11  8.44 11.63  December 2016.0
## 1151 C.corindum North_Key_Largo   M 5.87   3.00  7.74 10.71  December 2016.0
## 1152 C.corindum North_Key_Largo   F 7.32   3.56  9.48 12.67  December 2016.0
## 1153 C.corindum North_Key_Largo   M 6.45   3.02  7.67 11.22  December 2016.0
## 1154 C.corindum North_Key_Largo   M 6.21   3.21  8.72 11.74  December 2016.0
## 1155 C.corindum North_Key_Largo   F 6.84   3.12  5.16  8.64  December 2016.0
## 1156 C.corindum North_Key_Largo   M 6.24   3.51  8.32 11.68  December 2016.0
## 1157 C.corindum North_Key_Largo   F 7.23   3.17  5.37  8.72  December 2016.0
## 1158 C.corindum North_Key_Largo   F 8.77   3.47  9.25 12.35  December 2016.0
## 1159 C.corindum North_Key_Largo   M 5.56   2.80  5.64  8.63  December 2016.0
## 1160 C.corindum North_Key_Largo   F 7.70   3.78  9.35 12.94  December 2016.0
## 1161 C.corindum North_Key_Largo   F 6.89   3.68  9.41 12.99  December 2016.0
## 1162 C.corindum North_Key_Largo   M 6.34   3.02  8.09 11.21  December 2016.0
## 1163 C.corindum North_Key_Largo   M 6.36   3.24  8.55 11.83  December 2016.0
## 1164 C.corindum North_Key_Largo   M 6.78   3.41  8.51 11.84  December 2016.0
## 1165 C.corindum North_Key_Largo   M 6.45   3.33  8.36 11.34  December 2016.0
## 1166 C.corindum North_Key_Largo   F 8.79   3.56  9.04 12.25  December 2016.0
## 1167 C.corindum North_Key_Largo   F 6.61   3.60  9.55 13.07  December 2016.0
## 1168 C.corindum North_Key_Largo   F 6.49   2.69  4.59  7.81  December 2016.0
## 1169 C.corindum North_Key_Largo   M 6.46   3.11  8.67 11.52  December 2016.0
## 1170 C.corindum North_Key_Largo   F 7.08   2.89  4.92  7.86  December 2016.0
## 1171 C.corindum North_Key_Largo   M 5.40   2.15  4.80  7.50  December 2016.0
## 1172 C.corindum North_Key_Largo   F 6.85   3.12  5.25  8.55  December 2016.0
## 1173 C.corindum North_Key_Largo   M 6.18   3.27  8.45 11.48  December 2016.0
## 1174 C.corindum North_Key_Largo   F 9.26   3.59  9.31 12.57  December 2016.0
## 1175 C.corindum North_Key_Largo   F 7.59   3.30  7.22 10.41  December 2016.0
## 1176 C.corindum North_Key_Largo   F 7.96   3.35  8.84 12.22  December 2016.0
## 1177 C.corindum North_Key_Largo   F 7.10   3.53  8.77 12.39  December 2016.0
## 1178 C.corindum North_Key_Largo   M 5.56   3.25  8.62 11.38  December 2016.0
## 1179 C.corindum North_Key_Largo   M 5.42   2.84  4.81  7.95  December 2016.0
## 1180 C.corindum North_Key_Largo   M 6.37   3.24  9.04 12.10  December 2016.0
## 1181 C.corindum North_Key_Largo   M 6.05   2.87  6.30  9.29  December 2016.0
## 1182 C.corindum North_Key_Largo   F 7.45   3.32  8.24 11.54  December 2016.0
## 1183 C.corindum North_Key_Largo   M 5.98   2.89  7.77 10.64  December 2016.0
## 1184 C.corindum North_Key_Largo   M 6.25   3.11  8.29 11.44  December 2016.0
## 1185 C.corindum North_Key_Largo   M 5.69   2.80  7.57 10.44  December 2016.0
## 1186 C.corindum North_Key_Largo   M 6.84   3.11  8.11 11.37  December 2016.0
## 1187 C.corindum       Key_Largo   F 8.39   3.69  8.74 12.48  December 2016.0
## 1188 C.corindum       Key_Largo   M 5.92   2.95  8.19 11.18  December 2016.0
## 1189 C.corindum       Key_Largo   M 6.25   3.00  7.84 10.85  December 2016.0
## 1190 C.corindum       Key_Largo   M 6.08   3.02  6.15    NA  December 2016.0
## 1191 C.corindum       Key_Largo   M 6.12   3.17  7.80 10.84  December 2016.0
## 1192 C.corindum       Key_Largo   M 6.82   3.41  8.92 12.31  December 2016.0
## 1193 C.corindum       Key_Largo   F 6.73   3.78  8.17    NA  December 2016.0
## 1194 C.corindum       Key_Largo   F 7.61   3.45  9.18 12.22  December 2016.0
## 1195 C.corindum       Key_Largo   F 7.10   3.70  7.92    NA  December 2016.0
## 1196 C.corindum       Key_Largo   F 8.13   3.30  8.40 11.34  December 2016.0
## 1197 C.corindum       Key_Largo   M 6.81   3.21  8.61 11.55  December 2016.0
## 1198  K.elegans      Lake_Wales   F 7.24   3.30  8.97 12.51  December 2016.0
## 1199  K.elegans      Lake_Wales   F 7.11   3.30  8.52 11.84  December 2016.0
## 1200  K.elegans      Lake_Wales   M 5.59   2.83  7.86 10.91  December 2016.0
## 1201  K.elegans      Lake_Wales   F 7.37   3.22  9.18 12.54  December 2016.0
## 1202  K.elegans      Lake_Wales   M 5.35   2.80  8.07 10.90  December 2016.0
## 1203  K.elegans      Lake_Wales   M 5.64   3.11  8.36 11.22  December 2016.0
## 1204  K.elegans      Lake_Wales   F 7.45   3.45  9.46 12.48  December 2016.0
## 1205  K.elegans      Lake_Wales   F 6.72   3.47  6.50 10.22  December 2016.0
## 1206  K.elegans      Lake_Wales   M 5.58   3.17  8.70 11.49  December 2016.0
## 1207  K.elegans      Lake_Wales   M 5.37   3.06  8.67 11.34  December 2016.0
## 1208  K.elegans      Lake_Wales   F 7.08   3.27  8.67 11.97  December 2016.0
## 1209  K.elegans      Lake_Wales   M 5.36   2.76  7.69 10.28  December 2016.0
## 1210  K.elegans      Lake_Wales   M 5.97   3.01  8.45 11.27  December 2016.0
## 1211  K.elegans      Lake_Wales   M 5.67   2.85  8.04 10.79  December 2016.0
## 1212  K.elegans      Lake_Wales   M 5.68   2.90  7.99 10.83  December 2016.0
## 1213  K.elegans        Leesburg   M 5.91   3.23  8.92 11.90  December 2016.0
## 1214  K.elegans        Leesburg   F 7.76   3.37  9.75 13.01  December 2016.0
## 1215  K.elegans        Leesburg   F 7.25   3.33  8.91 12.45  December 2016.0
## 1216  K.elegans        Leesburg   M 5.28   2.82  8.22 10.79  December 2016.0
## 1217  K.elegans        Leesburg   F 6.42   3.38  9.35 12.13  December 2016.0
## 1218  K.elegans        Leesburg   M 5.69   3.01  8.40 11.07  December 2016.0
## 1219  K.elegans        Leesburg   M 5.47   2.70  8.12 10.89  December 2016.0
## 1220  K.elegans        Leesburg   F 6.87   3.44  9.77 13.39  December 2016.0
## 1221  K.elegans        Leesburg   M 5.54   2.87  8.35 11.27  December 2016.0
## 1222  K.elegans        Leesburg   M 5.43   2.73  8.08 10.65  December 2016.0
## 1223  K.elegans        Leesburg   M 5.61   3.02  8.57 11.34  December 2016.0
## 1224  K.elegans        Leesburg   M 5.32   2.89  8.12 10.62  December 2016.0
## 1225  K.elegans        Leesburg   M 5.84   3.24  9.18 11.99  December 2016.0
## 1226  K.elegans        Leesburg   M 5.62   3.02  9.06 12.18  December 2016.0
## 1227  K.elegans        Leesburg   M 5.82   3.11  9.08 12.40  December 2016.0
## 1228  K.elegans        Leesburg   M 5.19   2.58  8.07 10.78  December 2016.0
## 1229  K.elegans        Leesburg   M 5.69   3.07  8.80 11.87  December 2016.0
## 1230  K.elegans        Leesburg   F 7.25   3.32  9.00 12.03  December 2016.0
## 1231  K.elegans        Leesburg   M 5.36   3.03  8.27 11.44  December 2016.0
## 1232  K.elegans        Leesburg   M 5.58   2.91  8.73 11.47  December 2016.0
## 1233  K.elegans        Leesburg   M 5.83   3.45  8.51 11.70  December 2016.0
## 1234  K.elegans        Leesburg   F 7.66   3.54  9.83 13.52  December 2016.0
## 1235  K.elegans        Leesburg   F 7.81   3.45  9.01 12.58  December 2016.0
## 1236  K.elegans        Leesburg   F 7.62   3.66  9.26 12.79  December 2016.0
## 1237  K.elegans        Leesburg   F 7.63   3.58  9.32 12.70  December 2016.0
## 1238  K.elegans        Leesburg   F 7.37   3.45  9.65 13.04  December 2016.0
## 1239  K.elegans        Leesburg   F 7.47   3.84 10.54 14.37  December 2016.0
## 1240  K.elegans        Leesburg   M 5.64   3.05  8.83 11.81  December 2016.0
## 1241  K.elegans        Leesburg   F 7.67   3.45  9.38 12.64  December 2016.0
## 1242  K.elegans        Leesburg   F 7.54   3.30  9.39 12.72  December 2016.0
## 1243  K.elegans        Leesburg   F 6.91   3.40  9.19 12.07  December 2016.0
## 1244  K.elegans        Leesburg   F 5.87   3.27  5.86  9.44  December 2016.0
## 1245  K.elegans        Leesburg   M 5.78   3.28  8.31 11.40  December 2016.0
## 1246  K.elegans        Leesburg   M 5.94   2.86  8.10 10.60  December 2016.0
## 1247  K.elegans        Leesburg   F 7.38   3.26  9.00 12.16  December 2016.0
## 1248  K.elegans        Leesburg   M 5.71   2.96  8.19 11.03  December 2016.0
## 1249  K.elegans        Leesburg   M 5.56   3.10  7.93 10.61  December 2016.0
## 1250  K.elegans        Leesburg   F 7.57   3.48  9.30 12.87  December 2016.0
## 1251  K.elegans        Leesburg   F 7.84   3.63  9.71 13.17  December 2016.0
## 1252  K.elegans        Leesburg   F 6.96   3.18  9.46 12.48  December 2016.0
## 1253  K.elegans        Leesburg   F 6.59   3.05    NA    NA  December 2016.0
## 1254  K.elegans        Leesburg   M 5.57   3.25  8.13 11.07  December 2016.0
## 1255  K.elegans        Leesburg   M 5.77   3.38  9.54 12.29  December 2016.0
## 1256  K.elegans        Leesburg   F 8.46   3.99 10.60 14.32  December 2016.0
## 1257  K.elegans        Leesburg   M 5.29   2.84  7.65 10.39  December 2016.0
## 1258  K.elegans        Leesburg   M 5.65   3.24  8.16 11.31  December 2016.0
## 1259  K.elegans        Leesburg   F 7.78   3.48  9.32 12.56  December 2016.0
## 1260  K.elegans        Leesburg   F 7.74   3.47  9.79 13.20  December 2016.0
## 1261  K.elegans        Leesburg   F 7.44   3.29  8.65 12.28  December 2016.0
## 1262  K.elegans        Leesburg   F 7.95   3.90  9.89 13.58  December 2016.0
## 1263  K.elegans        Leesburg   F 7.03   3.24  8.41 11.73  December 2016.0
## 1264  K.elegans        Leesburg   M 5.34   3.01  8.24 11.57  December 2016.0
## 1265  K.elegans        Leesburg   F 7.85   3.49  9.56 12.87  December 2016.0
## 1266  K.elegans        Leesburg   M 5.51   3.10  8.46 11.39  December 2016.0
## 1267  K.elegans        Leesburg   M 5.53   2.93  7.87 10.89  December 2016.0
## 1268  K.elegans        Leesburg   F 8.14   3.60  9.86 13.38  December 2016.0
## 1269  K.elegans        Leesburg   F 7.57   3.59  9.45 12.59  December 2016.0
## 1270  K.elegans        Leesburg   M 5.75   2.99  8.31 11.22  December 2016.0
## 1271  K.elegans        Leesburg   F 7.08   3.28  8.82 12.31  December 2016.0
## 1272  K.elegans        Leesburg   M 5.80   3.02  8.09 11.35  December 2016.0
## 1273  K.elegans        Leesburg   M 5.71   3.11  8.65 11.50  December 2016.0
## 1274  K.elegans        Leesburg   M 5.96   3.13  9.04 11.73  December 2016.0
## 1275  K.elegans        Leesburg   M 5.80   3.16  8.35 11.48  December 2016.0
## 1276  K.elegans        Leesburg   M 5.76   3.13  8.55 11.54  December 2016.0
## 1277  K.elegans        Leesburg   M 5.36   3.01  8.16 11.00  December 2016.0
## 1278 C.corindum  Plantation_Key   M 5.74   2.88  5.84  8.81  December 2016.0
## 1279 C.corindum  Plantation_Key   M 6.08   3.07  8.34 11.39  December 2016.0
## 1280 C.corindum  Plantation_Key   M 6.01   2.91  8.53 11.43  December 2016.0
## 1281 C.corindum  Plantation_Key   M 5.52   2.71  4.53  7.49  December 2016.0
## 1282 C.corindum  Plantation_Key   F 7.97   3.46  9.34 12.57  December 2016.0
## 1283 C.corindum  Plantation_Key   M 5.99   3.11  8.52 11.44  December 2016.0
## 1284 C.corindum  Plantation_Key   F 6.38   2.93  5.27  8.78  December 2016.0
## 1285 C.corindum  Plantation_Key   M 5.29   2.81  7.84 10.53  December 2016.0
## 1286 C.corindum  Plantation_Key   F 8.61   3.57  9.31 12.50  December 2016.0
## 1287 C.corindum  Plantation_Key   F 6.55   2.91  5.08  8.44  December 2016.0
## 1288 C.corindum  Plantation_Key   F 7.50   3.12  8.53 11.87  December 2016.0
## 1289 C.corindum  Plantation_Key   F 6.41   3.04  5.56  8.70  December 2016.0
## 1290 C.corindum  Plantation_Key   M 5.67   2.83  4.47  7.95  December 2016.0
## 1291 C.corindum  Plantation_Key   F 6.24   2.86  5.17  8.67  December 2016.0
## 1292 C.corindum  Plantation_Key   F 6.58   3.13  5.72  9.55  December 2016.0
## 1293 C.corindum  Plantation_Key   F 8.05   3.24  8.63 12.11  December 2016.0
## 1294 C.corindum  Plantation_Key   M 5.74   3.03  7.24 10.23  December 2016.0
## 1295 C.corindum  Plantation_Key   F 8.89   3.63  9.78 13.30  December 2016.0
## 1296 C.corindum  Plantation_Key   F 7.93   3.22  9.41 12.58  December 2016.0
## 1297 C.corindum  Plantation_Key   F 7.88   3.61 10.08 13.71  December 2016.0
## 1298 C.corindum  Plantation_Key   F 6.72   3.19  4.89  8.62  December 2016.0
## 1299 C.corindum  Plantation_Key   F 6.28   2.93  5.10  8.38  December 2016.0
## 1300 C.corindum  Plantation_Key   M 5.89   2.82  8.18 11.14  December 2016.0
## 1301 C.corindum  Plantation_Key   F 7.34   3.20  6.99 10.12  December 2016.0
## 1302 C.corindum  Plantation_Key   M 5.58   2.72  4.67  7.77  December 2016.0
## 1303 C.corindum  Plantation_Key   M 5.88   2.65  7.23  9.97  December 2016.0
## 1304 C.corindum  Plantation_Key   M 6.04   3.03  7.82 10.65  December 2016.0
## 1305 C.corindum  Plantation_Key   F 6.54   2.94  6.09  9.37  December 2016.0
## 1306 C.corindum  Plantation_Key   F 7.30   3.30  8.84 12.17  December 2016.0
## 1307 C.corindum  Plantation_Key   M 5.92   2.99  7.88 10.97  December 2016.0
## 1308 C.corindum  Plantation_Key   M 6.73   3.45  8.99 12.31  December 2016.0
## 1309 C.corindum  Plantation_Key   M 5.37   2.69  7.03  9.69  December 2016.0
## 1310 C.corindum  Plantation_Key   M 6.31   3.06  8.33 11.30  December 2016.0
## 1311 C.corindum  Plantation_Key   M 6.11   2.97  7.86 10.74  December 2016.0
## 1312 C.corindum  Plantation_Key   M 5.30   2.29  3.79  6.71  December 2016.0
## 1313 C.corindum  Plantation_Key   F 6.54   3.02  4.94  8.47  December 2016.0
## 1314 C.corindum  Plantation_Key   M 5.90   2.89  7.57 10.37  December 2016.0
## 1315  K.elegans     Gainesville   M 5.92   3.08  8.53 11.48    August 2017.0
## 1316  K.elegans     Gainesville   M 5.57   2.98  8.21 11.43    August 2017.0
## 1317  K.elegans     Gainesville   F 7.84   3.57  9.31 12.80    August 2017.0
## 1318  K.elegans     Gainesville   F 6.76   2.97  6.83 10.16    August 2017.0
## 1319  K.elegans     Gainesville   M 5.73   3.10  8.73 11.91    August 2017.0
## 1320  K.elegans     Gainesville   M 5.59   2.67  7.42 10.22    August 2017.0
## 1321  K.elegans     Gainesville   F 6.62   2.79  6.21  9.58    August 2017.0
## 1322  K.elegans     Gainesville   F 6.40   3.22  8.52 11.83    August 2017.0
## 1323  K.elegans     Gainesville   F 6.84   3.61  9.66 12.85    August 2017.0
## 1324  K.elegans     Gainesville   M 5.80   3.18  8.77 12.05    August 2017.0
## 1325  K.elegans     Gainesville   M 5.69   3.05  8.19 11.34    August 2017.0
## 1326  K.elegans     Gainesville   M 5.44   2.80  7.65 10.58    August 2017.0
## 1327  K.elegans     Gainesville   F 7.53   3.33  8.69 11.96    August 2017.0
## 1328  K.elegans     Gainesville   F 6.69   3.51  9.35 12.90    August 2017.0
## 1329  K.elegans     Gainesville   M 5.67   2.87  8.20 11.05    August 2017.0
## 1330  K.elegans     Gainesville   M 5.48   2.96  7.91 10.97    August 2017.0
## 1331  K.elegans     Gainesville   F 6.75   2.99  6.25  9.72    August 2017.0
## 1332  K.elegans     Gainesville   F 7.34   3.51  9.05 12.46    August 2017.0
## 1333  K.elegans     Gainesville   F 6.73   3.35  8.46 12.03    August 2017.0
## 1334  K.elegans     Gainesville   F 7.18   3.16  8.60 12.03    August 2017.0
## 1335  K.elegans     Gainesville   F 8.99   3.80 10.70 14.25    August 2017.0
## 1336  K.elegans     Gainesville   F 7.06   3.34  8.79 12.06    August 2017.0
## 1337  K.elegans     Gainesville   M 5.39   2.81  7.89 10.62    August 2017.0
## 1338  K.elegans     Gainesville   M 5.56   2.92  7.81 10.51    August 2017.0
## 1339  K.elegans     Gainesville   M 5.66   2.98  8.13 11.11    August 2017.0
## 1340  K.elegans     Gainesville   M 5.67   2.83  6.07  9.21    August 2017.0
## 1341  K.elegans     Gainesville   F 7.65   3.46  9.35 12.88    August 2017.0
## 1342  K.elegans     Gainesville   F 7.47   3.27  7.99 11.70    August 2017.0
## 1343  K.elegans     Gainesville   M 5.60   2.97  8.06 10.96    August 2017.0
## 1344  K.elegans     Gainesville   F 7.11   3.19  8.55 11.78    August 2017.0
## 1345  K.elegans     Gainesville   F 7.03   3.30  8.85 12.31    August 2017.0
## 1346  K.elegans     Gainesville   F 7.48   3.55  9.14 12.64    August 2017.0
## 1347  K.elegans     Gainesville   M 5.87   3.17  8.08 11.19    August 2017.0
## 1348  K.elegans     Gainesville   M 5.50   3.04  8.48 11.37    August 2017.0
## 1349  K.elegans     Gainesville   M 5.95   3.27  8.95 12.13    August 2017.0
## 1350  K.elegans     Gainesville   M 5.25   2.90  7.83 11.04    August 2017.0
## 1351  K.elegans     Gainesville   F 6.84   3.58  9.81 13.52    August 2017.0
## 1352  K.elegans     Gainesville   F 7.43   3.45  9.42 12.99    August 2017.0
## 1353  K.elegans     Gainesville   M 5.46   3.03  8.37 11.48    August 2017.0
## 1354  K.elegans     Gainesville   M 5.92   2.91  7.79 10.71    August 2017.0
## 1355  K.elegans     Gainesville   F 7.82   3.55  9.68 13.31    August 2017.0
## 1356  K.elegans     Gainesville   M 5.68   3.31  8.98 12.32    August 2017.0
## 1357  K.elegans     Gainesville   F 7.85   3.54  9.65 12.38    August 2017.0
## 1358  K.elegans     Gainesville   F 6.38   2.84  4.82  8.36    August 2017.0
## 1359  K.elegans     Gainesville   M 5.37   3.03  8.44 11.02    August 2017.0
## 1360  K.elegans     Gainesville   F 8.10   3.60  9.91 13.67    August 2017.0
## 1361  K.elegans     Gainesville   M 5.48   2.97  8.37 11.40    August 2017.0
## 1362  K.elegans     Gainesville   M 5.62   2.93  8.18 11.02    August 2017.0
## 1363  K.elegans     Gainesville   F 7.08   3.33  8.85 12.11    August 2017.0
## 1364  K.elegans     Gainesville   M 5.44   2.86  7.20  9.91    August 2017.0
## 1365  K.elegans     Gainesville   M 5.47   3.14  8.59 11.77    August 2017.0
## 1366  K.elegans     Gainesville   F 7.67   3.49  9.80 13.48    August 2017.0
## 1367  K.elegans     Gainesville   M 5.67   3.08  8.41 11.17    August 2017.0
## 1368  K.elegans     Gainesville   F 8.56   3.55  9.73 13.25    August 2017.0
## 1369  K.elegans     Gainesville   F 6.92   3.44  8.95 12.66    August 2017.0
## 1370  K.elegans     Gainesville   M 5.83   2.87  7.83 10.82    August 2017.0
## 1371  K.elegans     Gainesville   F 7.11   3.42  8.95 12.28    August 2017.0
## 1372  K.elegans     Gainesville   F 7.46   3.51  9.30 12.71    August 2017.0
## 1373  K.elegans     Gainesville   M 5.28   2.68  7.70 10.47    August 2017.0
## 1374  K.elegans     Gainesville   M 5.34   2.68  5.96  8.92    August 2017.0
## 1375  K.elegans       Homestead   M 5.80   3.21  8.46 11.62    August 2017.0
## 1376  K.elegans       Homestead   F 7.05   3.04  6.30  9.60    August 2017.0
## 1377  K.elegans       Homestead   F 7.39   3.46  9.09 12.39    August 2017.0
## 1378  K.elegans       Homestead   M 6.02   3.24  8.55 11.33    August 2017.0
## 1379  K.elegans       Homestead   F 6.39   2.96  4.93  8.04    August 2017.0
## 1380  K.elegans       Homestead   F 7.83   3.43  9.25 12.60    August 2017.0
## 1381  K.elegans       Homestead   F 8.89   3.90  9.99 13.76    August 2017.0
## 1382  K.elegans       Homestead   F 7.86   3.58  8.99 12.49    August 2017.0
## 1383  K.elegans       Homestead   M 5.68   3.00  8.08 10.99    August 2017.0
## 1384  K.elegans       Homestead   M 5.48   2.79  7.98 10.65    August 2017.0
## 1385  K.elegans       Homestead   M 5.78   2.99  8.22 11.16    August 2017.0
## 1386  K.elegans       Homestead   F 8.81   3.74 10.08 13.82    August 2017.0
## 1387  K.elegans       Homestead   M 5.90   3.18  8.18 11.30    August 2017.0
## 1388  K.elegans       Homestead   F 7.85   3.46  9.00 12.34    August 2017.0
## 1389  K.elegans       Homestead   M 5.99   3.22  8.19 11.34    August 2017.0
## 1390  K.elegans       Homestead   M 5.89   3.14  8.51 11.60    August 2017.0
## 1391  K.elegans       Homestead   M 5.68   2.84  7.25 10.43    August 2017.0
## 1392  K.elegans       Homestead   M 5.71   2.95  7.97 10.84    August 2017.0
## 1393  K.elegans       Homestead   F 6.05   2.96  5.20  8.49    August 2017.0
## 1394  K.elegans       Homestead   M 5.95   3.20  8.29 11.55    August 2017.0
## 1395  K.elegans       Homestead   M 5.88   3.31  9.01 12.33    August 2017.0
## 1396  K.elegans       Homestead   F 7.43   3.14  8.55 11.90    August 2017.0
## 1397  K.elegans       Homestead   M 6.10   3.28  8.68 11.80    August 2017.0
## 1398  K.elegans       Homestead   M 6.02   3.29  8.93 12.16    August 2017.0
## 1399  K.elegans       Homestead   F 7.89   3.54  9.28 12.84    August 2017.0
## 1400  K.elegans       Homestead   M 6.08   3.46  8.94 11.94    August 2017.0
## 1401  K.elegans       Homestead   M 6.29   3.49  9.01 12.29    August 2017.0
## 1402  K.elegans       Homestead   M 5.63   3.10  7.92 10.91    August 2017.0
## 1403  K.elegans       Homestead   M 5.84   2.71  4.63  7.42    August 2017.0
## 1404  K.elegans       Homestead   M 5.95   3.18  8.97 12.01    August 2017.0
## 1405  K.elegans       Homestead   F 7.95   3.48  9.70 13.37    August 2017.0
## 1406  K.elegans       Homestead   F 7.56   3.40  8.15 12.18    August 2017.0
## 1407  K.elegans       Homestead   M 5.38   2.92  6.92  9.71    August 2017.0
## 1408  K.elegans       Homestead   M 5.36   2.74  5.75  8.76    August 2017.0
## 1409  K.elegans       Homestead   F 8.61   3.86 10.35 13.76    August 2017.0
## 1410  K.elegans       Homestead   F 7.69   3.44  9.22 12.66    August 2017.0
## 1411  K.elegans       Homestead   M 6.06   2.83  7.57 10.48    August 2017.0
## 1412  K.elegans       Homestead   M 6.13   3.27  9.02 11.98    August 2017.0
## 1413  K.elegans       Homestead   F 7.26   3.26  8.58 11.58    August 2017.0
## 1414  K.elegans       Homestead   F 8.12   3.49  9.35 13.06    August 2017.0
## 1415  K.elegans       Homestead   M 5.61   2.89  7.78 10.63    August 2017.0
## 1416  K.elegans       Homestead   F 8.63   3.88 10.09 13.61    August 2017.0
## 1417  K.elegans       Homestead   F 7.59   3.72  9.17 12.71    August 2017.0
## 1418  K.elegans       Homestead   F 5.97   2.82  4.48  7.75    August 2017.0
## 1419  K.elegans       Homestead   M 5.42   2.81  7.66 10.58    August 2017.0
## 1420  K.elegans       Homestead   F 7.54   3.30  9.21 12.52    August 2017.0
## 1421  K.elegans       Homestead   F 8.03   3.55  9.33 12.75    August 2017.0
## 1422  K.elegans       Homestead   M 5.71   2.93  7.47 10.63    August 2017.0
## 1423  K.elegans       Homestead   F 8.36   3.54  9.73 13.10    August 2017.0
## 1424  K.elegans       Homestead   F 8.13   3.57  9.59 12.98    August 2017.0
## 1425  K.elegans       Homestead   M 5.96   3.22  8.88 11.78    August 2017.0
## 1426  K.elegans       Homestead   F 7.46   3.39  9.62 12.76    August 2017.0
## 1427  K.elegans       Homestead   M 5.65   3.13  8.47 11.50    August 2017.0
## 1428  K.elegans       Homestead   F 7.49   3.43  9.13 12.26    August 2017.0
## 1429  K.elegans       Homestead   F 8.49   3.95 10.46 14.13    August 2017.0
## 1430  K.elegans       Homestead   F 7.61   3.53  9.00 11.89    August 2017.0
## 1431  K.elegans       Homestead   F 6.95   3.32  8.99 12.18    August 2017.0
## 1432  K.elegans       Homestead   M 5.76   3.12  8.63 11.80    August 2017.0
## 1433  K.elegans       Homestead   F 8.66   3.94 10.97 14.80    August 2017.0
## 1434  K.elegans       Homestead   F 8.79   3.92 10.20 13.80    August 2017.0
## 1435  K.elegans       Homestead   F 8.29   3.95 10.72 14.11    August 2017.0
## 1436  K.elegans       Homestead   M 5.81   3.40  9.35 12.42    August 2017.0
## 1437  K.elegans       Homestead   M 5.88   3.37  8.93 11.73    August 2017.0
## 1438  K.elegans       Homestead   F 8.76   4.02 10.54 14.41    August 2017.0
## 1439  K.elegans       Homestead   M 6.02   3.10  8.54 11.67    August 2017.0
## 1440  K.elegans       Homestead   M 6.07   3.26  8.94 12.04    August 2017.0
## 1441  K.elegans       Homestead   M 6.10   3.25  8.98 12.14    August 2017.0
## 1442  K.elegans       Homestead   M 6.11   3.29  8.55 11.61    August 2017.0
## 1443  K.elegans       Homestead   M 5.71   3.09  8.73 11.55    August 2017.0
## 1444  K.elegans       Homestead   M 5.88   3.11  8.59 11.26    August 2017.0
## 1445  K.elegans       Homestead   F 8.35   4.13 10.51 13.98    August 2017.0
## 1446  K.elegans       Homestead   F 8.46   3.81 10.46 14.05    August 2017.0
## 1447  K.elegans       Homestead   M 5.63   3.03  7.93 10.62    August 2017.0
## 1448  K.elegans       Homestead   M 5.70   3.17  8.76 11.99    August 2017.0
## 1449  K.elegans       Homestead   F 8.05   3.95 10.64 13.99    August 2017.0
## 1450  K.elegans       Homestead   M 5.79   3.21  8.85 12.08    August 2017.0
## 1451  K.elegans       Homestead   F 8.38   3.55 10.41 13.74    August 2017.0
## 1452  K.elegans       Homestead   M 5.78   3.30  8.95 12.07    August 2017.0
## 1453  K.elegans       Homestead   F 8.62   3.70  9.84 13.65    August 2017.0
## 1454  K.elegans       Homestead   M 5.74   2.80  8.00 10.92    August 2017.0
## 1455  K.elegans       Homestead   M 5.64   3.27  8.67 11.82    August 2017.0
## 1456  K.elegans       Homestead   F 7.66   3.72 10.19 13.52    August 2017.0
## 1457  K.elegans       Homestead   M 5.73   3.26  8.71 11.80    August 2017.0
## 1458  K.elegans       Homestead   M 5.73   3.14  8.46 11.66    August 2017.0
## 1459  K.elegans       Homestead   F 8.41   4.06 10.39 14.07    August 2017.0
## 1460  K.elegans       Homestead   F 8.06   3.58  9.77 12.98    August 2017.0
## 1461  K.elegans       Homestead   M 5.62   3.05  8.23 10.99    August 2017.0
## 1462  K.elegans       Homestead   F 8.02   3.69  9.92 14.00    August 2017.0
## 1463  K.elegans       Homestead   M 5.82   3.42  9.26 12.24    August 2017.0
## 1464  K.elegans       Homestead   F 7.96   3.87 10.32 13.76    August 2017.0
## 1465  K.elegans       Homestead   F 8.24   3.63  9.63 13.12    August 2017.0
## 1466  K.elegans       Homestead   F 8.15   3.85 10.44 13.75    August 2017.0
## 1467  K.elegans       Homestead   F 8.17   3.61 10.16 13.78    August 2017.0
## 1468  K.elegans       Homestead   M 5.81   3.22  8.71 11.87    August 2017.0
## 1469  K.elegans       Homestead   F 8.02   3.54  9.53 12.87    August 2017.0
## 1470  K.elegans       Homestead   M 5.69   3.15  8.83 11.59    August 2017.0
## 1471  K.elegans       Homestead   M 5.53   2.78  7.84 10.78    August 2017.0
## 1472  K.elegans       Homestead   M 6.04   3.25  8.95 12.14    August 2017.0
## 1473  K.elegans       Homestead   F 8.48   4.09 10.25 13.57    August 2017.0
## 1474  K.elegans       Homestead   F 8.25   3.75  9.95 13.07    August 2017.0
## 1475  K.elegans       Homestead   M 6.04   3.43  8.84 11.98    August 2017.0
## 1476  K.elegans       Homestead   F 7.96   3.54  9.45 12.63    August 2017.0
## 1477  K.elegans       Homestead   F 8.14   3.76 10.05 13.51    August 2017.0
## 1478  K.elegans       Homestead   F 8.05   3.71  9.58 13.32    August 2017.0
## 1479  K.elegans       Homestead   F 8.42   3.68  9.65 13.50    August 2017.0
## 1480  K.elegans       Homestead   F 7.85   3.82  9.99 13.14    August 2017.0
## 1481  K.elegans       Homestead   M 5.89   3.22  8.52 11.31    August 2017.0
## 1482  K.elegans       Homestead   F 7.97   3.98 10.60 14.21    August 2017.0
## 1483  K.elegans       Homestead   F 8.57   3.78  9.82 13.34    August 2017.0
## 1484  K.elegans       Homestead   F 8.02   3.36  9.43 12.81    August 2017.0
## 1485  K.elegans       Homestead   F 7.97   3.73 10.15 13.65    August 2017.0
## 1486  K.elegans       Homestead   F 8.81   3.85 10.26 13.62    August 2017.0
## 1487  K.elegans       Homestead   M 5.69   2.92  8.13 10.95    August 2017.0
## 1488  K.elegans       Homestead   M 6.14   3.27  9.00 12.19    August 2017.0
## 1489  K.elegans       Homestead   M 5.95   3.23  8.92 12.04    August 2017.0
## 1490  K.elegans       Homestead   F 7.60   3.07  8.50 11.54    August 2017.0
## 1491  K.elegans       Homestead   M 6.06   3.27  8.80 12.00    August 2017.0
## 1492  K.elegans       Homestead   M 5.85   3.26  8.84 11.70    August 2017.0
## 1493  K.elegans       Homestead   F 8.24   3.62  9.87 13.35    August 2017.0
## 1494  K.elegans       Homestead   M 5.85   3.15  8.50 11.34    August 2017.0
## 1495  K.elegans       Homestead   F 8.39   3.73 10.50 14.35    August 2017.0
## 1496  K.elegans       Homestead   M 6.05   3.10  8.79 11.74    August 2017.0
## 1497  K.elegans       Homestead   M 5.65   3.33  9.08 11.91    August 2017.0
## 1498  K.elegans       Homestead   F 8.62   3.78  9.92 13.67    August 2017.0
## 1499  K.elegans       Homestead   M 5.99   3.13  8.54 11.67    August 2017.0
## 1500  K.elegans       Homestead   M 5.99   3.26  9.14 12.08    August 2017.0
## 1501  K.elegans       Homestead   M 5.71   2.97  8.82 11.42    August 2017.0
## 1502 C.corindum       Key_Largo   F 8.89   3.62  9.34 12.55    August 2017.0
## 1503 C.corindum       Key_Largo   M 5.97   3.01  8.30 10.89    August 2017.0
## 1504 C.corindum       Key_Largo   M 6.20   2.90  8.36 11.30    August 2017.0
## 1505 C.corindum       Key_Largo   M 5.63   2.66  4.76  7.86    August 2017.0
## 1506 C.corindum       Key_Largo   F 7.90   3.12  8.64 12.02    August 2017.0
## 1507 C.corindum       Key_Largo   M 6.29   3.10  8.06 11.34    August 2017.0
## 1508 C.corindum       Key_Largo   M 5.79   2.74  7.53 10.50    August 2017.0
## 1509 C.corindum       Key_Largo   M 5.31   2.75  7.39 10.03    August 2017.0
## 1510 C.corindum       Key_Largo   F 8.29   3.47  9.34 12.95    August 2017.0
## 1511 C.corindum       Key_Largo   M 5.86   2.94  7.64 10.65    August 2017.0
## 1512 C.corindum       Key_Largo   F 7.95   3.34  9.20 12.71    August 2017.0
## 1513 C.corindum       Key_Largo   M 5.41   2.71  4.76  7.88    August 2017.0
## 1514 C.corindum       Key_Largo   M 6.08   3.07  8.14 11.48    August 2017.0
## 1515 C.corindum       Key_Largo   M 6.24   3.05  7.92 10.78    August 2017.0
## 1516 C.corindum       Key_Largo   M 6.35   2.89  8.13 11.08    August 2017.0
## 1517 C.corindum       Key_Largo   F 7.33   3.32  8.24 11.52    August 2017.0
## 1518 C.corindum       Key_Largo   M 6.07   3.10  7.99 11.07    August 2017.0
## 1519 C.corindum       Key_Largo   M 5.80   3.08  8.58 11.59    August 2017.0
## 1520 C.corindum       Key_Largo   F 8.03   3.44  9.05 12.44    August 2017.0
## 1521 C.corindum       Key_Largo   F 7.96   3.33  8.46 11.96    August 2017.0
## 1522 C.corindum       Key_Largo   F 8.09   3.43  8.98 12.46    August 2017.0
## 1523 C.corindum       Key_Largo   F 7.86   3.62  9.39 13.27    August 2017.0
## 1524 C.corindum       Key_Largo   M 5.28   2.59  4.69  7.45    August 2017.0
## 1525 C.corindum       Key_Largo   M 5.00   2.52  4.50  7.44    August 2017.0
## 1526 C.corindum       Key_Largo   F 7.96   3.04  8.80 11.94    August 2017.0
## 1527 C.corindum       Key_Largo   F 8.38   3.67 10.16 13.81    August 2017.0
## 1528 C.corindum       Key_Largo   M 5.90   3.21  8.31 11.65    August 2017.0
## 1529 C.corindum       Key_Largo   M 5.50   2.63  6.79  9.59    August 2017.0
## 1530 C.corindum       Key_Largo   F 9.01   3.67  9.96 13.60    August 2017.0
## 1531 C.corindum       Key_Largo   F 7.00   3.54  9.55 12.94    August 2017.0
## 1532 C.corindum       Key_Largo   M 5.90   3.09  8.13 11.13    August 2017.0
## 1533 C.corindum       Key_Largo   M 5.79   2.73  7.36 10.02    August 2017.0
## 1534 C.corindum       Key_Largo   M 6.20   2.82  7.73 10.70    August 2017.0
## 1535 C.corindum       Key_Largo   M 5.38   2.73  5.32  7.98    August 2017.0
## 1536 C.corindum       Key_Largo   M 6.11   2.88  7.90 10.99    August 2017.0
## 1537 C.corindum       Key_Largo   M 6.85   3.40  9.18 12.30    August 2017.0
## 1538 C.corindum       Key_Largo   F 8.90   3.48  9.10 12.57    August 2017.0
## 1539 C.corindum       Key_Largo   M 6.32   3.03  8.02 10.63    August 2017.0
## 1540 C.corindum       Key_Largo   F 8.16   3.47  9.17 12.60    August 2017.0
## 1541 C.corindum       Key_Largo   M 5.60   2.65  4.81  7.93    August 2017.0
## 1542 C.corindum       Key_Largo   M 6.36   3.26  8.97 12.28    August 2017.0
## 1543 C.corindum       Key_Largo   F 8.04   3.78 10.20 13.79    August 2017.0
## 1544 C.corindum       Key_Largo   F 7.49   3.14  8.41 11.86    August 2017.0
## 1545 C.corindum       Key_Largo   F 6.76   2.79  4.87  8.08    August 2017.0
## 1546 C.corindum       Key_Largo   F 6.31   2.90  4.91  8.42    August 2017.0
## 1547 C.corindum       Key_Largo   M 6.01   3.29  8.20 11.51    August 2017.0
## 1548 C.corindum       Key_Largo   F 8.72   3.48  9.27 12.82    August 2017.0
## 1549 C.corindum       Key_Largo   F 6.86   2.83  4.91  8.11    August 2017.0
## 1550 C.corindum       Key_Largo   M 6.65   3.04  8.49 11.63    August 2017.0
## 1551 C.corindum       Key_Largo   M 5.48   2.54  4.81  7.75    August 2017.0
## 1552 C.corindum       Key_Largo   M 5.20   2.47  4.68  7.55    August 2017.0
## 1553 C.corindum       Key_Largo   F 9.40   3.65  9.76 13.39    August 2017.0
## 1554 C.corindum       Key_Largo   M 6.01   3.04  8.89 11.88    August 2017.0
## 1555 C.corindum       Key_Largo   F 6.70   2.93  4.98  8.52    August 2017.0
## 1556 C.corindum       Key_Largo   M 6.20   2.99  7.84 10.77    August 2017.0
## 1557 C.corindum       Key_Largo   M 5.65   2.79  7.59 10.45    August 2017.0
## 1558 C.corindum       Key_Largo   F 9.17   3.99 10.33 14.32    August 2017.0
## 1559 C.corindum       Key_Largo   M 5.94   3.00  8.39 11.52    August 2017.0
## 1560 C.corindum       Key_Largo   F 6.79   2.93  5.15  8.35    August 2017.0
## 1561 C.corindum       Key_Largo   M 6.88   3.26  9.02 12.12    August 2017.0
## 1562 C.corindum       Key_Largo   M 5.53   2.62  4.89  7.85    August 2017.0
## 1563 C.corindum       Key_Largo   M 5.21   2.32  3.98  6.88    August 2017.0
## 1564 C.corindum       Key_Largo   M 5.26   2.33  4.33  7.29    August 2017.0
## 1565 C.corindum       Key_Largo   M 5.13   2.56  4.48  7.58    August 2017.0
## 1566 C.corindum       Key_Largo   M 5.33   2.55  4.31  7.06    August 2017.0
## 1567 C.corindum       Key_Largo   F 8.15   3.22  6.24  9.71    August 2017.0
## 1568 C.corindum       Key_Largo   M 5.98   2.64  7.43 10.46    August 2017.0
## 1569 C.corindum       Key_Largo   M 5.66   2.74  4.67  7.68    August 2017.0
## 1570 C.corindum       Key_Largo   M 5.68   2.87  7.89 10.77    August 2017.0
## 1571 C.corindum       Key_Largo   M 5.28   2.43  5.52  8.46    August 2017.0
## 1572 C.corindum       Key_Largo   F 6.84   2.85  5.20  8.67    August 2017.0
## 1573 C.corindum       Key_Largo   M 6.01   3.01  8.24 11.47    August 2017.0
## 1574 C.corindum North_Key_Largo   F 8.52   3.71  9.07 12.95    August 2017.0
## 1575 C.corindum North_Key_Largo   F 8.07   3.64 10.06 13.91    August 2017.0
## 1576 C.corindum North_Key_Largo   F 8.40   3.32  8.88 12.19    August 2017.0
## 1577 C.corindum North_Key_Largo   M 5.78   2.89  8.58 11.32    August 2017.0
## 1578 C.corindum North_Key_Largo   F 8.38   3.30  9.07 12.35    August 2017.0
## 1579 C.corindum North_Key_Largo   F 8.47   3.57  9.89 13.69    August 2017.0
## 1580 C.corindum North_Key_Largo   F 7.40   3.14  8.50 11.70    August 2017.0
## 1581 C.corindum North_Key_Largo   M 6.27   3.31  8.77 11.71    August 2017.0
## 1582 C.corindum North_Key_Largo   M 5.51   2.79  7.09 10.07    August 2017.0
## 1583 C.corindum North_Key_Largo   F 8.70   3.58  9.94 13.77    August 2017.0
## 1584 C.corindum North_Key_Largo   M 5.63   3.07  9.36 12.35    August 2017.0
## 1585 C.corindum North_Key_Largo   M 6.37   2.90  7.77 10.61    August 2017.0
## 1586 C.corindum North_Key_Largo   M 5.24   2.49  4.45  7.23    August 2017.0
## 1587 C.corindum North_Key_Largo   M 5.29   2.43  6.82  9.57    August 2017.0
## 1588 C.corindum North_Key_Largo   M 5.26   2.53  4.50  7.49    August 2017.0
## 1589 C.corindum North_Key_Largo   F 7.79   3.24  8.43 11.77    August 2017.0
## 1590 C.corindum North_Key_Largo   M 5.64   2.75  7.54 10.07    August 2017.0
## 1591 C.corindum North_Key_Largo   F 8.38   3.31  9.40 12.82    August 2017.0
## 1592 C.corindum North_Key_Largo   F 6.40   3.00  7.98 11.03    August 2017.0
## 1593 C.corindum North_Key_Largo   M 5.54   2.48  4.60  7.57    August 2017.0
## 1594  K.elegans      Lake_Wales   M 5.60   3.09  8.75 11.98    August 2017.0
## 1595  K.elegans      Lake_Wales   F 7.54   3.79  9.84 13.27    August 2017.0
## 1596  K.elegans      Lake_Wales   F 7.18   3.33  9.00 12.33    August 2017.0
## 1597  K.elegans      Lake_Wales   M 5.52   3.01  7.97 10.92    August 2017.0
## 1598  K.elegans      Lake_Wales   F 7.29   3.36  8.95 12.59    August 2017.0
## 1599  K.elegans      Lake_Wales   M 5.52   3.10  8.26 11.30    August 2017.0
## 1600  K.elegans      Lake_Wales   F 7.53   3.44  9.56 12.97    August 2017.0
## 1601  K.elegans      Lake_Wales   M 5.85   3.06  8.25 11.23    August 2017.0
## 1602  K.elegans      Lake_Wales   F 8.08   3.66  9.70 13.37    August 2017.0
## 1603  K.elegans      Lake_Wales   M 5.58   2.74  7.81 10.65    August 2017.0
## 1604  K.elegans      Lake_Wales   M 5.79   2.87  7.94 10.97    August 2017.0
## 1605  K.elegans      Lake_Wales   M 5.71   3.04  8.45 11.55    August 2017.0
## 1606  K.elegans      Lake_Wales   F 8.23   3.64  9.75 13.28    August 2017.0
## 1607  K.elegans      Lake_Wales   F 7.58   3.53  9.39 12.81    August 2017.0
## 1608  K.elegans      Lake_Wales   F 7.55   3.48  9.09 12.45    August 2017.0
## 1609  K.elegans      Lake_Wales   F 5.96   2.66  4.88  7.94    August 2017.0
## 1610  K.elegans      Lake_Wales   F 7.82   3.49  9.23 12.49    August 2017.0
## 1611  K.elegans      Lake_Wales   M 5.19   2.81  4.99  7.95    August 2017.0
## 1612  K.elegans      Lake_Wales   M 5.32   2.98  7.59 10.58    August 2017.0
## 1613  K.elegans      Lake_Wales   F 7.72   3.47  9.48 13.06    August 2017.0
## 1614  K.elegans      Lake_Wales   M 6.03   3.22  8.52 11.54    August 2017.0
## 1615  K.elegans      Lake_Wales   M 5.68   3.14  8.26 10.91    August 2017.0
## 1616  K.elegans      Lake_Wales   M 5.86   3.12  8.50 11.28    August 2017.0
## 1617  K.elegans      Lake_Wales   F 7.45   3.63  9.27 12.65    August 2017.0
## 1618  K.elegans      Lake_Wales   M 5.69   3.26  8.49 11.99    August 2017.0
## 1619  K.elegans      Lake_Wales   F 6.05   2.84  6.19  9.64    August 2017.0
## 1620  K.elegans      Lake_Wales   F 7.71   3.61  9.40 12.95    August 2017.0
## 1621  K.elegans      Lake_Wales   M 5.63   2.88  7.81 10.49    August 2017.0
## 1622  K.elegans      Lake_Wales   M 5.68   3.26  8.37 11.14    August 2017.0
## 1623  K.elegans      Lake_Wales   M 5.51   2.83  7.89 10.83    August 2017.0
## 1624  K.elegans      Lake_Wales   F 7.21   3.31  9.06 12.56    August 2017.0
## 1625  K.elegans      Lake_Wales   M 5.71   3.30  8.83 12.12    August 2017.0
## 1626  K.elegans      Lake_Wales   F 8.49   3.70 10.05 14.07    August 2017.0
## 1627  K.elegans      Lake_Wales   M 5.47   2.98  8.13 11.14    August 2017.0
## 1628  K.elegans      Lake_Wales   F 7.32   2.84  6.04  9.60    August 2017.0
## 1629  K.elegans      Lake_Wales   F 6.78   3.09  6.87 10.42    August 2017.0
## 1630  K.elegans      Lake_Wales   M 5.51   3.16  8.89 12.16    August 2017.0
## 1631  K.elegans      Lake_Wales   F 7.78   3.51  9.07 12.70    August 2017.0
## 1632  K.elegans      Lake_Wales   F 7.71     NA  9.59 13.19    August 2017.0
## 1633  K.elegans      Lake_Wales   M 5.26   2.65  5.38  8.32    August 2017.0
## 1634  K.elegans      Lake_Wales   F 5.71   2.73  4.71  7.93    August 2017.0
## 1635  K.elegans      Lake_Wales   M 5.48   2.88  8.10 11.41    August 2017.0
## 1636  K.elegans      Lake_Wales   M 5.83   3.18  8.51 11.70    August 2017.0
## 1637  K.elegans      Lake_Wales   M 5.85   2.87  5.82  8.51    August 2017.0
## 1638  K.elegans      Lake_Wales   F 6.59   2.90  5.61  8.87    August 2017.0
## 1639  K.elegans      Lake_Wales   M 5.26   3.03  8.57 11.48    August 2017.0
## 1640  K.elegans      Lake_Wales   M 5.09   2.50  4.73  7.49    August 2017.0
## 1641  K.elegans      Lake_Wales   M 5.75   2.59  5.49  8.38    August 2017.0
## 1642  K.elegans      Lake_Wales   F 8.71   3.87 10.51 14.12    August 2017.0
## 1643  K.elegans      Lake_Wales   F 7.29   3.11  6.69 10.22    August 2017.0
## 1644  K.elegans      Lake_Wales   M 5.60   3.07  8.46 11.46    August 2017.0
## 1645  K.elegans      Lake_Wales   M 5.19   2.65  5.14  7.91    August 2017.0
## 1646  K.elegans      Lake_Wales   F 6.69   3.64  9.40 13.15    August 2017.0
## 1647  K.elegans      Lake_Wales   M 5.83   3.08  8.87 11.86    August 2017.0
## 1648  K.elegans      Lake_Wales   F 7.05   3.22  6.81 10.34    August 2017.0
## 1649  K.elegans      Lake_Wales   M 5.71   3.34  9.49 12.62    August 2017.0
## 1650  K.elegans      Lake_Wales   M 5.62   3.19  8.79 11.93    August 2017.0
## 1651  K.elegans      Lake_Wales   F 6.93   2.94  5.53  9.02    August 2017.0
## 1652  K.elegans      Lake_Wales   F 6.54   3.33  9.59 13.00    August 2017.0
## 1653  K.elegans      Lake_Wales   M 5.24   3.34  8.06 11.17    August 2017.0
## 1654  K.elegans      Lake_Wales   M 4.85   2.54  4.61  7.56    August 2017.0
## 1655  K.elegans      Lake_Wales   F 7.73   3.87  9.78 13.24    August 2017.0
## 1656  K.elegans      Lake_Wales   M 4.93   2.40  5.02  7.89    August 2017.0
## 1657  K.elegans      Lake_Wales   F 6.46   2.83  4.89  8.09    August 2017.0
## 1658  K.elegans      Lake_Wales   M 5.32   2.70  5.31  8.24    August 2017.0
## 1659  K.elegans      Lake_Wales   F 6.68   3.12  6.69 10.35    August 2017.0
## 1660  K.elegans      Lake_Wales   M 5.32   2.95  7.95 11.17    August 2017.0
## 1661  K.elegans      Lake_Wales   F 6.71   3.22  7.08 10.51    August 2017.0
## 1662  K.elegans      Lake_Wales   M 5.26   3.02  8.62 11.69    August 2017.0
## 1663  K.elegans      Lake_Wales   M 5.40   3.06  8.37 11.57    August 2017.0
## 1664  K.elegans      Lake_Wales   M 5.86   2.90  7.61 10.53    August 2017.0
## 1665  K.elegans      Lake_Wales   M 5.65   3.01  8.17 11.16    August 2017.0
## 1666  K.elegans      Lake_Wales   F 6.76   3.12  8.47 11.78    August 2017.0
## 1667  K.elegans      Lake_Wales   F 6.53   2.92  5.80  9.28    August 2017.0
## 1668  K.elegans      Lake_Wales   M 5.31   2.45  4.45  7.35    August 2017.0
## 1669  K.elegans      Lake_Wales   F 7.35   3.32  8.86 12.26    August 2017.0
## 1670  K.elegans      Lake_Wales   F 6.09   2.79  5.46  8.85    August 2017.0
## 1671  K.elegans      Lake_Wales   F 6.32   2.85  4.83  8.10    August 2017.0
## 1672  K.elegans      Lake_Wales   M 5.35   2.71  4.86  7.93    August 2017.0
## 1673  K.elegans      Lake_Wales   M 5.60     NA  8.65 11.87    August 2017.0
## 1674  K.elegans      Lake_Wales   M 5.69   2.88  5.26  8.42    August 2017.0
## 1675  K.elegans      Lake_Wales   M 4.97   2.69  7.22 10.15    August 2017.0
## 1676  K.elegans      Lake_Wales   F 6.44   2.80  5.54  8.70    August 2017.0
## 1677  K.elegans      Lake_Wales   M 5.27   2.76  6.37  9.32    August 2017.0
## 1678  K.elegans      Lake_Wales   M 5.31   2.63  6.03  8.99    August 2017.0
## 1679  K.elegans      Lake_Wales   M 5.37   2.71  5.25  8.20    August 2017.0
## 1680  K.elegans      Lake_Wales   M 5.49   3.03  7.89 10.80    August 2017.0
## 1681  K.elegans      Lake_Wales   F 6.72   3.03  5.44  8.78    August 2017.0
## 1682  K.elegans      Lake_Wales   M 5.81   3.19  8.97 12.09    August 2017.0
## 1683  K.elegans      Lake_Wales   M 5.37   2.54  6.17  9.14    August 2017.0
## 1684  K.elegans      Lake_Wales   M 5.15   2.38  5.22  7.87    August 2017.0
## 1685  K.elegans        Leesburg   M 5.23   3.05  8.75 11.43    August 2017.0
## 1686  K.elegans        Leesburg   F 7.20   3.29  9.05 12.30    August 2017.0
## 1687  K.elegans        Leesburg   F 6.22   3.12  5.57  8.95    August 2017.0
## 1688  K.elegans        Leesburg   F 5.89   2.44  4.28  7.34    August 2017.0
## 1689  K.elegans        Leesburg   F 6.66   2.69  4.63  7.87    August 2017.0
## 1690  K.elegans        Leesburg   M 6.05   3.26  8.61 11.63    August 2017.0
## 1691  K.elegans        Leesburg   F 7.11   3.20  9.13 12.30    August 2017.0
## 1692  K.elegans        Leesburg   M 5.78   2.86  8.16 11.39    August 2017.0
## 1693  K.elegans        Leesburg   M 5.72   2.89  7.89 10.72    August 2017.0
## 1694  K.elegans        Leesburg   M 5.22   2.49  4.59  7.43    August 2017.0
## 1695  K.elegans        Leesburg   M 5.35   2.80  7.71 10.49    August 2017.0
## 1696  K.elegans        Leesburg   F 7.77   3.82 10.22 13.70    August 2017.0
## 1697  K.elegans        Leesburg   F 8.44   3.66  9.83 13.58    August 2017.0
## 1698  K.elegans        Leesburg   M 5.60   2.64  7.39 10.28    August 2017.0
## 1699  K.elegans        Leesburg   F 6.12   2.82  5.54  8.80    August 2017.0
## 1700  K.elegans        Leesburg   M 5.60   2.85  6.24  8.89    August 2017.0
## 1701  K.elegans        Leesburg   F 7.75   3.48  9.70 13.37    August 2017.0
## 1702  K.elegans        Leesburg   M 5.09   2.63  5.04  7.87    August 2017.0
## 1703  K.elegans        Leesburg   F 8.14   3.70  9.78 13.30    August 2017.0
## 1704  K.elegans        Leesburg   M 5.39   2.96  8.40 11.39    August 2017.0
## 1705  K.elegans        Leesburg   M 5.87   3.00  8.18 11.47    August 2017.0
## 1706  K.elegans        Leesburg   M 5.30   2.81  7.67 10.40    August 2017.0
## 1707  K.elegans        Leesburg   M 5.17   2.72  7.45  9.98    August 2017.0
## 1708  K.elegans        Leesburg   M 5.52   2.19  4.76  7.42    August 2017.0
## 1709  K.elegans        Leesburg   M 5.36   2.75  7.85 10.61    August 2017.0
## 1710  K.elegans        Leesburg   F 7.14   3.37  9.21 12.69    August 2017.0
## 1711  K.elegans        Leesburg   F 6.05   2.69  5.12  8.21    August 2017.0
## 1712  K.elegans        Leesburg   M 5.56   2.81  8.31 11.24    August 2017.0
## 1713  K.elegans        Leesburg   F 7.01   3.15  8.52 11.79    August 2017.0
## 1714  K.elegans        Leesburg   M 5.58   2.96  8.22 11.14    August 2017.0
## 1715  K.elegans        Leesburg   M 5.55   3.00  8.20 11.17    August 2017.0
## 1716  K.elegans        Leesburg   F 7.35   3.49  9.39 12.62    August 2017.0
## 1717  K.elegans        Leesburg   M 5.41   3.07  8.53 11.59    August 2017.0
## 1718  K.elegans        Leesburg   M 5.05   2.40  4.72  7.52    August 2017.0
## 1719  K.elegans        Leesburg   F 7.22   2.92  6.21  9.71    August 2017.0
## 1720  K.elegans        Leesburg   M 5.41   2.65  7.65 10.62    August 2017.0
## 1721  K.elegans        Leesburg   M 5.27   2.87  8.08 11.12    August 2017.0
## 1722  K.elegans        Leesburg   M 5.52   2.52  5.08  7.69    August 2017.0
## 1723  K.elegans        Leesburg   M 6.27   2.84  7.42 10.06    August 2017.0
## 1724  K.elegans        Leesburg   F 7.14   3.37  9.52 12.83    August 2017.0
## 1725  K.elegans        Leesburg   M 5.13   2.53  5.36  8.26    August 2017.0
## 1726  K.elegans        Leesburg   M 5.69   2.87  8.18 11.20    August 2017.0
## 1727  K.elegans        Leesburg   F 7.82   3.43  9.52 13.21    August 2017.0
## 1728  K.elegans        Leesburg   M 5.62   3.22  8.76 11.80    August 2017.0
## 1729  K.elegans        Leesburg   F 6.54   2.73  4.81  7.94    August 2017.0
## 1730  K.elegans        Leesburg   M 4.77   2.28  3.76  6.50    August 2017.0
## 1731  K.elegans        Leesburg   M 5.86   2.74  7.90 10.71    August 2017.0
## 1732  K.elegans        Leesburg   M 5.15   2.59  7.16  9.86    August 2017.0
## 1733  K.elegans        Leesburg   M 5.52   3.09  7.91 10.68    August 2017.0
## 1734  K.elegans        Leesburg   M 5.41   2.63  5.81  8.72    August 2017.0
## 1735  K.elegans        Leesburg   M 5.09   2.67  4.86  7.78    August 2017.0
## 1736  K.elegans        Leesburg   F 5.87   2.62  4.78  7.77    August 2017.0
## 1737  K.elegans        Leesburg   M 5.30   2.55  5.91  8.91    August 2017.0
## 1738  K.elegans        Leesburg   M 5.49   2.55  4.57  7.33    August 2017.0
## 1739  K.elegans        Leesburg   M 5.07   2.39  4.33  7.14    August 2017.0
## 1740  K.elegans        Leesburg   F 5.87   2.57  4.71  7.83    August 2017.0
## 1741  K.elegans        Leesburg   F 6.72   3.05  8.26 11.43    August 2017.0
## 1742  K.elegans        Leesburg   F 6.34   2.88  4.84  7.98    August 2017.0
## 1743  K.elegans     Gainesville   M 5.59   2.77  7.70 10.83 September 2018.0
## 1744  K.elegans     Gainesville   M 5.48   2.89  8.43 11.23 September 2018.0
## 1745  K.elegans     Gainesville   M 5.66   3.02  8.78 11.95 September 2018.0
## 1746  K.elegans     Gainesville   F 8.29   3.85 10.26 14.18 September 2018.0
## 1747  K.elegans     Gainesville   F 7.54   3.42  9.12 12.19 September 2018.0
## 1748  K.elegans     Gainesville   M 5.32   2.66  7.37 10.08 September 2018.0
## 1749  K.elegans     Gainesville   M 5.72   3.14  8.98 11.90 September 2018.0
## 1750  K.elegans     Gainesville   F 7.12   3.30  9.11 12.36 September 2018.0
## 1751  K.elegans     Gainesville   F 6.43   3.40  9.34 12.37 September 2018.0
## 1752  K.elegans     Gainesville   F 7.25   3.65 10.40 13.81 September 2018.0
## 1753  K.elegans     Gainesville   F 7.36   3.25  8.89 12.16 September 2018.0
## 1754  K.elegans     Gainesville   F 8.03   3.55  9.73 13.38 September 2018.0
## 1755  K.elegans     Gainesville   F 7.21   3.01  8.60 11.69 September 2018.0
## 1756  K.elegans     Gainesville   F 6.93   3.49  9.82 13.11 September 2018.0
## 1757  K.elegans     Gainesville   F 6.06   3.22  9.32 12.63 September 2018.0
## 1758  K.elegans     Gainesville   F 7.68   3.50  9.42 13.15 September 2018.0
## 1759  K.elegans     Gainesville   F 6.15   2.80  4.84  8.21 September 2018.0
## 1760  K.elegans     Gainesville   M 5.66   2.94  8.45 11.49 September 2018.0
## 1761  K.elegans     Gainesville   M 5.78   3.04  8.60 11.67 September 2018.0
## 1762  K.elegans     Gainesville   M 5.58   2.95  8.59 11.56 September 2018.0
## 1763  K.elegans     Gainesville   M 5.32   2.94  8.11 10.81 September 2018.0
## 1764  K.elegans     Gainesville   M 5.50   3.07  8.05 11.26 September 2018.0
## 1765  K.elegans     Gainesville   F 6.59   3.26  8.64 11.64 September 2018.0
## 1766  K.elegans     Gainesville   M 5.42   2.87  8.27 11.08 September 2018.0
## 1767  K.elegans     Gainesville   F 6.51   3.47  9.26 13.25 September 2018.0
## 1768  K.elegans     Gainesville   F 6.61   3.19  8.67 11.67 September 2018.0
## 1769  K.elegans     Gainesville   M 5.11   2.70  7.81 10.50 September 2018.0
## 1770  K.elegans     Gainesville   M 5.52   2.97  8.48 11.46 September 2018.0
## 1771  K.elegans     Gainesville   M 5.93   2.89  7.87 11.04 September 2018.0
## 1772  K.elegans     Gainesville   M 5.29   2.96  7.68 10.94 September 2018.0
## 1773  K.elegans     Gainesville   F 7.80   3.32  9.45 12.82 September 2018.0
## 1774  K.elegans     Gainesville   F 6.42   3.46  9.10 12.45 September 2018.0
## 1775  K.elegans     Gainesville   F 7.69   3.74  9.71 13.17 September 2018.0
## 1776  K.elegans     Gainesville   M 5.51   2.79  8.34 11.01 September 2018.0
## 1777  K.elegans     Gainesville   F 7.16   3.24  8.73 11.84 September 2018.0
## 1778  K.elegans     Gainesville   M 5.79   3.09  8.78 12.04 September 2018.0
## 1779  K.elegans     Gainesville   M 5.78   3.25  9.07 12.37 September 2018.0
## 1780  K.elegans     Gainesville   M 5.89   3.10  8.75 11.86 September 2018.0
## 1781  K.elegans     Gainesville   F 6.68   3.53  9.45 12.73 September 2018.0
## 1782  K.elegans     Gainesville   M 5.49   2.71  7.55 10.66 September 2018.0
## 1783  K.elegans     Gainesville   F 7.69   3.51  9.63 13.27 September 2018.0
## 1784  K.elegans     Gainesville   F 7.26   3.68 10.03 13.45 September 2018.0
## 1785  K.elegans     Gainesville   F 7.26   3.72 10.29 13.78 September 2018.0
## 1786  K.elegans     Gainesville   M 5.53   2.76  8.02 10.72 September 2018.0
## 1787  K.elegans     Gainesville   M 5.61   2.98  8.17 11.09 September 2018.0
## 1788  K.elegans     Gainesville   F 7.42   3.47  9.64 12.99 September 2018.0
## 1789  K.elegans     Gainesville   M 5.71   2.79  7.95 11.04 September 2018.0
## 1790  K.elegans     Gainesville   M 5.28   2.95  7.96 11.14 September 2018.0
## 1791  K.elegans     Gainesville   M 5.84   3.01  8.33 11.29 September 2018.0
## 1792  K.elegans     Gainesville   F 7.98   3.40  9.51 13.08 September 2018.0
## 1793  K.elegans     Gainesville   F 7.10   3.17  9.26 12.82 September 2018.0
## 1794  K.elegans     Gainesville   F 7.69   3.34  9.78 13.10 September 2018.0
## 1795  K.elegans     Gainesville   M 6.15   3.03  8.56 11.63 September 2018.0
## 1796  K.elegans     Gainesville   M 5.07   2.68  7.40 10.06 September 2018.0
## 1797  K.elegans     Gainesville   F 7.15   3.51  9.40 13.13 September 2018.0
## 1798  K.elegans     Gainesville   F 5.89   2.63  4.63  7.73 September 2018.0
## 1799  K.elegans     Gainesville   F 7.32   3.28  8.69 11.92 September 2018.0
## 1800  K.elegans     Gainesville   F 6.43   3.40  9.11 12.58 September 2018.0
## 1801  K.elegans     Gainesville   M 5.47   2.81  7.82 10.70 September 2018.0
## 1802  K.elegans     Gainesville   M 5.65   3.01  8.76 11.76 September 2018.0
## 1803  K.elegans     Gainesville   M 5.55   2.57  4.42  7.24 September 2018.0
## 1804  K.elegans     Gainesville   M 5.41   2.92  8.00 10.86 September 2018.0
## 1805  K.elegans     Gainesville   F 7.94   3.54  9.18 12.89 September 2018.0
## 1806  K.elegans     Gainesville   M 6.00   2.95  8.46 11.51 September 2018.0
## 1807 C.corindum North_Key_Largo   M 6.19   3.10  8.67 11.95 September 2018.0
## 1808 C.corindum North_Key_Largo   M 6.02   3.19  8.47 11.62 September 2018.0
## 1809 C.corindum North_Key_Largo   M 6.20   2.82  7.96 11.07 September 2018.0
## 1810 C.corindum North_Key_Largo   F 7.07   3.01  7.82 10.87 September 2018.0
## 1811 C.corindum North_Key_Largo   F 7.67   3.09  5.40  8.77 September 2018.0
## 1812 C.corindum North_Key_Largo   F 6.37   2.68  5.15  8.64 September 2018.0
## 1813 C.corindum North_Key_Largo   F 7.80   3.40  6.94 10.59 September 2018.0
## 1814 C.corindum North_Key_Largo   F 7.86   3.23  6.79 10.05 September 2018.0
## 1815 C.corindum North_Key_Largo   F 9.38   3.80  9.79 13.56 September 2018.0
## 1816 C.corindum North_Key_Largo   M 5.29   2.53  4.42  7.22 September 2018.0
## 1817 C.corindum North_Key_Largo   M 5.52   2.52  4.47  7.31 September 2018.0
## 1818 C.corindum North_Key_Largo   F 7.25   2.81  7.74 10.73 September 2018.0
## 1819 C.corindum North_Key_Largo   F 6.68   2.78  4.65  8.04 September 2018.0
## 1820 C.corindum North_Key_Largo   F 6.37   2.80  4.45  7.28 September 2018.0
## 1821 C.corindum North_Key_Largo   M 5.74   2.80  7.61 10.59 September 2018.0
## 1822 C.corindum North_Key_Largo   M 5.52   2.58  4.84  7.52 September 2018.0
## 1823 C.corindum North_Key_Largo   F 8.48   3.51  9.53 13.02 September 2018.0
## 1824 C.corindum North_Key_Largo   F 7.58   3.36  6.94 10.41 September 2018.0
## 1825 C.corindum North_Key_Largo   F 7.67   3.16  7.74 11.51 September 2018.0
## 1826 C.corindum North_Key_Largo   M 6.53   3.15  8.60 11.85 September 2018.0
## 1827 C.corindum North_Key_Largo   M 6.00   3.07  8.55 11.57 September 2018.0
## 1828 C.corindum North_Key_Largo   F 6.04   2.53  4.16  6.88 September 2018.0
## 1829 C.corindum North_Key_Largo   F 7.87   3.14  5.60  9.16 September 2018.0
## 1830 C.corindum North_Key_Largo   F 8.75   3.49  9.08 12.79 September 2018.0
## 1831 C.corindum North_Key_Largo   F 7.07   2.85  5.31  8.51 September 2018.0
## 1832 C.corindum North_Key_Largo   F 8.61   3.60  9.76 13.37 September 2018.0
## 1833 C.corindum North_Key_Largo   M 6.31   3.22  8.62 11.85 September 2018.0
## 1834 C.corindum North_Key_Largo   M 5.75   2.66  4.42  7.35 September 2018.0
## 1835 C.corindum North_Key_Largo   F 7.35   3.29  5.77  9.47 September 2018.0
## 1836 C.corindum North_Key_Largo   M 5.53   2.71  5.44  8.47 September 2018.0
## 1837 C.corindum North_Key_Largo   F 9.36   3.55 10.00 13.64 September 2018.0
## 1838 C.corindum North_Key_Largo   F 7.45   3.07  5.19  8.83 September 2018.0
## 1839 C.corindum North_Key_Largo   M 5.69   2.77  7.57 10.38 September 2018.0
## 1840 C.corindum North_Key_Largo   M 5.77   2.94  7.41 10.66 September 2018.0
## 1841 C.corindum North_Key_Largo   F 6.67   2.94  7.33 10.69 September 2018.0
## 1842 C.corindum North_Key_Largo   F 7.77   3.09  5.20  8.86 September 2018.0
## 1843 C.corindum North_Key_Largo   M 5.75   2.67  4.60  7.43 September 2018.0
## 1844 C.corindum North_Key_Largo   M 5.20   2.22  4.22  6.67 September 2018.0
## 1845 C.corindum North_Key_Largo   F 6.35   2.87  4.91  8.30 September 2018.0
## 1846 C.corindum North_Key_Largo   M 5.44   2.52  4.25  6.93 September 2018.0
## 1847 C.corindum North_Key_Largo   F 8.61   3.55  9.45 12.97 September 2018.0
## 1848 C.corindum North_Key_Largo   F 6.23   2.68  4.42  7.73 September 2018.0
## 1849 C.corindum North_Key_Largo   F 7.83   3.32  8.77 12.27 September 2018.0
## 1850 C.corindum North_Key_Largo   M 6.35   3.15  8.35 11.45 September 2018.0
## 1851 C.corindum North_Key_Largo   F 8.51   3.64  9.26 12.66 September 2018.0
## 1852 C.corindum North_Key_Largo   M 5.85   2.49  4.77  7.68 September 2018.0
## 1853 C.corindum North_Key_Largo   M 6.41   3.15  8.69 12.03 September 2018.0
## 1854 C.corindum North_Key_Largo   M 5.58   2.80  7.70 10.39 September 2018.0
## 1855 C.corindum North_Key_Largo   F 7.95   3.21  8.78 12.09 September 2018.0
## 1856 C.corindum North_Key_Largo   F 7.65   3.28  9.35 12.44 September 2018.0
## 1857 C.corindum North_Key_Largo   F 6.93   2.82  4.47  7.89 September 2018.0
## 1858 C.corindum North_Key_Largo   M 5.38   2.72  5.40  8.13 September 2018.0
## 1859 C.corindum North_Key_Largo   F 7.78   3.24  8.32 11.75 September 2018.0
## 1860 C.corindum North_Key_Largo   M 5.33   2.43  5.23  7.68 September 2018.0
## 1861 C.corindum North_Key_Largo   F 7.59   3.03  5.32  8.72 September 2018.0
## 1862 C.corindum North_Key_Largo   M 5.41   2.63  7.44  9.94 September 2018.0
## 1863 C.corindum North_Key_Largo   F 8.36   3.45  9.23 12.76 September 2018.0
## 1864 C.corindum North_Key_Largo   F 7.83   3.14  5.84  9.37 September 2018.0
## 1865 C.corindum North_Key_Largo   F 7.89   3.19  9.47 12.89 September 2018.0
## 1866 C.corindum North_Key_Largo   F 7.45   3.07  5.77  9.21 September 2018.0
## 1867 C.corindum North_Key_Largo   M 5.56   2.75  7.86 10.83 September 2018.0
## 1868 C.corindum North_Key_Largo   F 6.71   3.02  5.56  8.70 September 2018.0
## 1869 C.corindum North_Key_Largo   F 7.95   3.27  8.61 11.85 September 2018.0
## 1870 C.corindum North_Key_Largo   F 7.73   3.08  5.81  9.22 September 2018.0
## 1871 C.corindum North_Key_Largo   M 6.30   2.91  8.45 11.32 September 2018.0
## 1872 C.corindum North_Key_Largo   F 6.99   2.91  5.41  8.53 September 2018.0
## 1873 C.corindum North_Key_Largo   M 5.40   2.54  4.70  7.41 September 2018.0
## 1874 C.corindum North_Key_Largo   M 5.57   2.45  4.28  6.89 September 2018.0
## 1875  K.elegans      Lake_Wales   F 7.16   3.29  9.14 12.49 September 2018.0
## 1876  K.elegans      Lake_Wales   F 7.02   3.13  8.44 11.80 September 2018.0
## 1877  K.elegans      Lake_Wales   F 7.60   3.45  9.26 12.71 September 2018.0
## 1878  K.elegans      Lake_Wales   M 5.84   3.05  8.23 11.43 September 2018.0
## 1879  K.elegans      Lake_Wales   M 5.52   2.69  7.76 10.47 September 2018.0
## 1880  K.elegans      Lake_Wales   F 6.83   3.11  8.94 12.27 September 2018.0
## 1881  K.elegans      Lake_Wales   F 6.88   3.13  9.10 12.47 September 2018.0
## 1882  K.elegans      Lake_Wales   M 5.15   2.37  4.48  7.26 September 2018.0
## 1883  K.elegans      Lake_Wales   F 6.70   3.09  8.36 11.61 September 2018.0
## 1884  K.elegans      Lake_Wales   M 5.71   3.00  8.08 11.00 September 2018.0
## 1885  K.elegans      Lake_Wales   F 7.48   3.12  9.41 12.66 September 2018.0
## 1886  K.elegans      Lake_Wales   F 7.83   3.42 10.21 14.19 September 2018.0
## 1887  K.elegans      Lake_Wales   M 5.61   3.09  8.59 11.67 September 2018.0
## 1888  K.elegans      Lake_Wales   F 7.46   3.65  9.93 13.34 September 2018.0
## 1889  K.elegans      Lake_Wales   M 5.77   2.94  8.22 11.27 September 2018.0
## 1890  K.elegans      Lake_Wales   F 7.51   3.26  9.33 12.56 September 2018.0
## 1891  K.elegans      Lake_Wales   F 7.35   3.26  8.73 12.22 September 2018.0
## 1892  K.elegans      Lake_Wales   M 5.81   3.07  8.68 11.71 September 2018.0
## 1893  K.elegans      Lake_Wales   F 8.47   3.64 10.07 14.02 September 2018.0
## 1894  K.elegans      Lake_Wales   F 7.32   3.58 10.19 13.51 September 2018.0
## 1895  K.elegans      Lake_Wales   F 7.19   3.30  9.02 12.47 September 2018.0
## 1896  K.elegans      Lake_Wales   M 5.68   2.65  7.56 10.60 September 2018.0
## 1897  K.elegans      Lake_Wales   M 5.82   3.25  8.65 11.71 September 2018.0
## 1898  K.elegans      Lake_Wales   F 6.05   3.08  8.14 11.49 September 2018.0
## 1899  K.elegans      Lake_Wales   M 5.57   2.86  7.89 11.03 September 2018.0
## 1900  K.elegans      Lake_Wales   F 7.47   3.25  5.91  9.40 September 2018.0
## 1901  K.elegans      Lake_Wales   M 5.26   2.79  7.97 10.73 September 2018.0
## 1902  K.elegans      Lake_Wales   F 6.80   3.15  8.74 11.85 September 2018.0
## 1903  K.elegans      Lake_Wales   F 6.00   2.56  4.90  7.92 September 2018.0
## 1904  K.elegans      Lake_Wales   F 7.82   3.76 10.17 14.19 September 2018.0
## 1905  K.elegans      Lake_Wales   M 5.85   3.12  8.64 12.00 September 2018.0
## 1906  K.elegans      Lake_Wales   F 7.78   3.50  9.32 13.17 September 2018.0
## 1907  K.elegans      Lake_Wales   F 7.55   3.38  9.58 12.82 September 2018.0
## 1908  K.elegans      Lake_Wales   F 7.58   3.60  9.69 13.14 September 2018.0
## 1909  K.elegans      Lake_Wales   F 7.43   3.45  9.56 12.91 September 2018.0
## 1910  K.elegans      Lake_Wales   F 7.29   3.23  9.22 12.56 September 2018.0
## 1911  K.elegans      Lake_Wales   F 7.75   3.66  9.87 13.53 September 2018.0
## 1912  K.elegans      Lake_Wales   M 5.57   2.79  7.56 10.74 September 2018.0
## 1913  K.elegans      Lake_Wales   M 5.79   3.29  8.68 11.50 September 2018.0
## 1914  K.elegans      Lake_Wales   M 5.40   2.75  7.60 10.55 September 2018.0
## 1915  K.elegans        Leesburg   M 5.45   2.98  8.12 11.05 September 2018.0
## 1916  K.elegans     Gainesville   F 7.48   3.44  9.12 12.60       May 2019.0
## 1917  K.elegans     Gainesville   F 7.66   3.58  9.94 13.63       May 2019.0
## 1918  K.elegans     Gainesville   M 5.14   2.63  7.51 10.21       May 2019.0
## 1919  K.elegans     Gainesville   F 7.68   3.73 10.13 13.47       May 2019.0
## 1920  K.elegans     Gainesville   M 5.91   3.31  8.83 12.47       May 2019.0
## 1921  K.elegans     Gainesville   M 5.09   2.98  5.41  8.43       May 2019.0
## 1922  K.elegans     Gainesville   F 7.87   3.75  9.93 13.35       May 2019.0
## 1923  K.elegans     Gainesville   M 5.22   2.73  7.10  9.88       May 2019.0
## 1924  K.elegans     Gainesville   M 5.34   2.86  8.11 10.90       May 2019.0
## 1925  K.elegans     Gainesville   F 7.60   3.95  9.67 13.80       May 2019.0
## 1926  K.elegans     Gainesville   F 6.98   3.60  8.95 12.30       May 2019.0
## 1927  K.elegans     Gainesville   F 5.91   3.20  8.80 11.86       May 2019.0
## 1928  K.elegans     Gainesville   M 6.24   3.47  9.09 12.80       May 2019.0
## 1929  K.elegans     Gainesville   F 6.30   3.56  9.09 11.94       May 2019.0
## 1930  K.elegans     Gainesville   F 8.09   3.55 10.02 13.84       May 2019.0
## 1931  K.elegans     Gainesville   F 7.98   3.91  9.75 13.98       May 2019.0
## 1932  K.elegans     Gainesville   F 8.64   3.54  9.31 13.34       May 2019.0
## 1933  K.elegans     Gainesville   F 5.74   3.28  8.81 11.81       May 2019.0
## 1934  K.elegans     Gainesville   F 8.28   3.83  9.90 13.64       May 2019.0
## 1935  K.elegans     Gainesville   F 5.22   2.91  5.37  8.36       May 2019.0
## 1936  K.elegans     Gainesville   F 5.42   2.96  7.71 10.13       May 2019.0
## 1937  K.elegans     Gainesville   F 7.80   3.45 10.34 13.52       May 2019.0
## 1938  K.elegans     Gainesville   F 8.16   3.80 10.10 13.21       May 2019.0
## 1939  K.elegans     Gainesville   F 8.22   4.05  9.98 13.50       May 2019.0
## 1940  K.elegans     Gainesville   M 6.19   2.98  9.11 12.05       May 2019.0
## 1941  K.elegans     Gainesville   F 6.10   2.77  8.05 10.45       May 2019.0
## 1942  K.elegans     Gainesville   F 8.83   3.64 10.62 13.59       May 2019.0
## 1943  K.elegans     Gainesville   M 8.63   4.09 10.17 14.07       May 2019.0
## 1944  K.elegans     Gainesville   F 7.73   3.43  9.08 12.52       May 2019.0
## 1945  K.elegans     Gainesville   F 6.96   2.75  7.98 11.29       May 2019.0
## 1946  K.elegans     Gainesville   M 6.00   3.07  8.58 11.37       May 2019.0
## 1947  K.elegans     Gainesville   F 5.76   3.11  8.56 10.96       May 2019.0
## 1948  K.elegans     Gainesville   F 7.94   3.68 10.38 13.63       May 2019.0
## 1949  K.elegans     Gainesville   F 8.55   3.79 10.35 14.16       May 2019.0
## 1950  K.elegans     Gainesville   F 5.71   3.19  7.81 10.87       May 2019.0
## 1951  K.elegans     Gainesville   F 5.68   2.89  7.87 10.53       May 2019.0
## 1952  K.elegans     Gainesville   F 5.48   2.91  8.12 11.38       May 2019.0
## 1953  K.elegans     Gainesville   F 7.96   3.74 10.23 13.69       May 2019.0
## 1954  K.elegans     Gainesville   F 5.95   3.11  8.84 11.05       May 2019.0
## 1955  K.elegans     Gainesville   F 5.34   3.05  8.07 10.83       May 2019.0
## 1956  K.elegans     Gainesville   F 8.15   3.92 10.21 13.99       May 2019.0
## 1957  K.elegans     Gainesville   F 5.89   3.31  8.68 11.40       May 2019.0
## 1958  K.elegans     Gainesville   M 6.44   3.29  9.33 12.58       May 2019.0
## 1959  K.elegans     Gainesville   F 7.27   3.47  9.27 12.69       May 2019.0
## 1960  K.elegans     Gainesville   F 5.77   3.39  8.59 11.61       May 2019.0
## 1961  K.elegans     Gainesville   F 5.74   2.96  8.42 11.34       May 2019.0
## 1962  K.elegans     Gainesville   F 8.25   3.41 10.46 13.77       May 2019.0
## 1963  K.elegans     Gainesville   F 8.11   3.47  9.69 13.42       May 2019.0
## 1964  K.elegans     Gainesville   F 5.68   3.20  8.13 11.37       May 2019.0
## 1965  K.elegans       Homestead   M 5.35   2.39  3.95  6.59       May 2019.0
## 1966  K.elegans       Homestead   M 7.32   3.05  8.09 11.32       May 2019.0
## 1967  K.elegans       Homestead   F 5.50   2.53  4.63  7.37       May 2019.0
## 1968  K.elegans       Homestead   F 6.10   2.88  7.11 10.12       May 2019.0
## 1969  K.elegans       Homestead   M 5.37   2.68  7.29 10.01       May 2019.0
## 1970  K.elegans       Homestead   M 5.94   2.99  8.30 11.24       May 2019.0
## 1971  K.elegans       Homestead   M 5.11   2.47  4.09  7.03       May 2019.0
## 1972  K.elegans       Homestead   M 5.34   2.59  4.94  7.80       May 2019.0
## 1973  K.elegans       Homestead   M 5.16   2.70  5.46  8.24       May 2019.0
## 1974  K.elegans       Homestead   M 4.95   2.58  5.24  8.09       May 2019.0
## 1975  K.elegans       Homestead   F 6.25   2.76  4.25  7.31       May 2019.0
## 1976  K.elegans       Homestead   M 4.96   2.40  4.19  6.98       May 2019.0
## 1977  K.elegans       Homestead   M 5.87   3.36  8.61 11.66       May 2019.0
## 1978  K.elegans       Homestead   M 5.05   2.42  4.21  7.10       May 2019.0
## 1979  K.elegans       Homestead   M 5.01   2.52  4.18  7.18       May 2019.0
## 1980  K.elegans       Homestead   M 5.51   2.91  7.84 10.66       May 2019.0
## 1981  K.elegans       Homestead   F 7.49   3.30  7.31 10.63       May 2019.0
## 1982  K.elegans       Homestead   F 6.44   2.89  4.68  7.83       May 2019.0
## 1983 C.corindum       Key_Largo   M 5.41   2.56  4.47  7.27       May 2019.0
## 1984 C.corindum       Key_Largo   M 5.82   2.59  5.40  8.37       May 2019.0
## 1985 C.corindum       Key_Largo   F 6.10   2.52  4.63  7.48       May 2019.0
## 1986 C.corindum       Key_Largo   M 5.63   2.69  6.50  9.31       May 2019.0
## 1987 C.corindum       Key_Largo   F 8.52   3.70  9.46 12.75       May 2019.0
## 1988 C.corindum       Key_Largo   M 5.83   2.91  7.90 10.75       May 2019.0
## 1989 C.corindum       Key_Largo   M 5.45   2.73  7.29 10.19       May 2019.0
## 1990 C.corindum       Key_Largo   F 7.69   3.10  5.47  9.23       May 2019.0
## 1991 C.corindum       Key_Largo   F 7.05   3.17  6.32  9.98       May 2019.0
## 1992 C.corindum       Key_Largo   F 7.32   2.95  6.57  9.81       May 2019.0
## 1993 C.corindum       Key_Largo   M 4.99   2.13  3.52  5.96       May 2019.0
## 1994 C.corindum       Key_Largo   M 6.05   2.63  4.65  7.55       May 2019.0
## 1995 C.corindum       Key_Largo   F 6.86   3.25  6.33  9.51       May 2019.0
## 1996 C.corindum       Key_Largo   F 7.43   3.18  8.17 11.61       May 2019.0
## 1997 C.corindum       Key_Largo   M 5.91   2.85  5.25  8.22       May 2019.0
## 1998 C.corindum       Key_Largo   M 5.28   2.78  4.91  7.90       May 2019.0
## 1999 C.corindum       Key_Largo   F 6.38   2.88  5.09  8.23       May 2019.0
## 2000 C.corindum       Key_Largo   F 8.20   3.33  8.98 12.25       May 2019.0
## 2001 C.corindum       Key_Largo   M 6.14   2.94  8.04 11.04       May 2019.0
## 2002 C.corindum       Key_Largo   M 5.59   2.80  7.03  9.98       May 2019.0
## 2003 C.corindum       Key_Largo   M 5.74   2.79  7.30 10.09       May 2019.0
## 2004 C.corindum       Key_Largo   M 5.49   2.53  4.48  7.32       May 2019.0
## 2005 C.corindum       Key_Largo   M 6.14   3.19  8.26 11.03       May 2019.0
## 2006 C.corindum       Key_Largo   M 6.26   3.01  8.48 11.78       May 2019.0
## 2007 C.corindum       Key_Largo   F 6.48   2.85  5.18  8.17       May 2019.0
## 2008 C.corindum       Key_Largo   M 8.71   3.55  9.32 13.06       May 2019.0
## 2009 C.corindum       Key_Largo   F 6.42   2.99  4.71  8.33       May 2019.0
## 2010 C.corindum       Key_Largo   M 5.21   2.49  4.42  7.14       May 2019.0
## 2011 C.corindum       Key_Largo   M 5.39   2.35  4.99  7.70       May 2019.0
## 2012 C.corindum       Key_Largo   M 5.73   2.82  6.37  9.26       May 2019.0
## 2013 C.corindum       Key_Largo   M 6.00   2.89  7.90 10.75       May 2019.0
## 2014 C.corindum       Key_Largo   F 6.31   2.92  5.05  8.23       May 2019.0
## 2015 C.corindum       Key_Largo   M 5.54   3.19  8.50 11.95       May 2019.0
## 2016 C.corindum       Key_Largo   M 5.31   2.53  4.35  7.37       May 2019.0
## 2017 C.corindum       Key_Largo   M 5.38   2.53  4.80  7.88       May 2019.0
## 2018 C.corindum       Key_Largo   M 5.33   2.38  4.37  7.02       May 2019.0
## 2019 C.corindum       Key_Largo   M 6.25   3.06  7.77 10.42       May 2019.0
## 2020 C.corindum       Key_Largo   F 6.52   3.05  5.20  8.53       May 2019.0
## 2021 C.corindum       Key_Largo   F 7.14   3.18  5.68  9.11       May 2019.0
## 2022 C.corindum       Key_Largo   F 6.91   2.88  5.02  8.39       May 2019.0
## 2023 C.corindum       Key_Largo   F 6.71   2.94  5.10  8.41       May 2019.0
## 2024 C.corindum       Key_Largo   M 5.89   2.87  7.75 10.51       May 2019.0
## 2025 C.corindum       Key_Largo   M 5.92   2.68  4.94  7.93       May 2019.0
## 2026 C.corindum       Key_Largo   M 5.69   2.66  4.50  7.48       May 2019.0
## 2027 C.corindum       Key_Largo   F 6.60   2.72  5.19  8.48       May 2019.0
## 2028 C.corindum       Key_Largo   M 5.48   2.49  4.88  7.61       May 2019.0
## 2029 C.corindum       Key_Largo   M 5.67   2.77  6.50  9.22       May 2019.0
## 2030 C.corindum       Key_Largo   F 7.91   3.40  8.90 12.33       May 2019.0
## 2031 C.corindum       Key_Largo   M 5.66   2.76  7.51 10.41       May 2019.0
## 2032 C.corindum       Key_Largo   F 5.87   2.56  3.94  6.86       May 2019.0
## 2033 C.corindum       Key_Largo   M 5.38   2.57  4.26  7.06       May 2019.0
## 2034 C.corindum       Key_Largo   M 6.26   2.99  8.15 10.85       May 2019.0
## 2035 C.corindum       Key_Largo   M 5.75   2.86  5.15  8.19       May 2019.0
## 2036 C.corindum       Key_Largo   M 6.57   3.15  8.49 11.60       May 2019.0
## 2037 C.corindum       Key_Largo   M 5.38   2.61  5.23  8.28       May 2019.0
## 2038 C.corindum       Key_Largo   M 5.84   2.88  7.30 10.19       May 2019.0
## 2039 C.corindum       Key_Largo   F 7.45   3.23  5.50  8.98       May 2019.0
## 2040 C.corindum       Key_Largo   M 5.21   2.41  4.14  6.98       May 2019.0
## 2041 C.corindum       Key_Largo   F 6.72   3.04  5.55  9.10       May 2019.0
## 2042 C.corindum       Key_Largo   F 7.33   3.13  8.33 11.78       May 2019.0
## 2043 C.corindum       Key_Largo   F 6.40   2.89  4.63  8.01       May 2019.0
## 2044 C.corindum       Key_Largo   M 5.70   2.75  5.72  8.65       May 2019.0
## 2045 C.corindum       Key_Largo   M 5.10   2.45  4.56  7.52       May 2019.0
## 2046 C.corindum       Key_Largo   M 5.34   2.50  4.44  7.39       May 2019.0
## 2047 C.corindum       Key_Largo   F 6.19   2.79  4.47  7.53       May 2019.0
## 2048 C.corindum       Key_Largo   M 5.49   2.53  4.94  7.90       May 2019.0
## 2049 C.corindum       Key_Largo   M 5.14   2.42  4.09  7.02       May 2019.0
## 2050 C.corindum       Key_Largo   M 5.20   2.50  6.72  9.71       May 2019.0
## 2051 C.corindum       Key_Largo   M 5.67   2.71  4.88  7.60       May 2019.0
## 2052 C.corindum       Key_Largo   F 6.39   2.93  5.05  8.41       May 2019.0
## 2053 C.corindum       Key_Largo   M 6.42   3.08  8.51 11.34       May 2019.0
## 2054 C.corindum       Key_Largo   M 5.42   2.70  4.52  7.48       May 2019.0
## 2055 C.corindum       Key_Largo   M 5.80   2.80  4.84  7.84       May 2019.0
## 2056 C.corindum       Key_Largo   M 5.71   2.63  7.06  9.78       May 2019.0
## 2057 C.corindum       Key_Largo   M 5.91   2.72  5.04  7.92       May 2019.0
## 2058 C.corindum       Key_Largo   M 5.85   2.75  5.58  8.48       May 2019.0
## 2059  K.elegans     Lake_Placid   F 5.34   3.15  8.25 11.32       May 2019.0
## 2060  K.elegans     Lake_Placid   F 5.86   2.89  8.09 11.20       May 2019.0
## 2061  K.elegans     Lake_Placid   F 6.65   2.94  7.56 11.37       May 2019.0
## 2062  K.elegans     Lake_Placid   F 8.04   3.07  9.40 12.70       May 2019.0
## 2063  K.elegans     Lake_Placid   F 7.22   3.50  9.50 13.00       May 2019.0
## 2064  K.elegans     Lake_Placid   F 7.51   3.48  9.86 13.29       May 2019.0
## 2065  K.elegans     Lake_Placid   F 7.78   3.81 10.12 13.14       May 2019.0
## 2066  K.elegans     Lake_Placid   F 5.16   2.99  8.37 11.13       May 2019.0
## 2067  K.elegans     Lake_Placid   F 6.40   3.12  5.92  9.61       May 2019.0
## 2068  K.elegans     Lake_Placid   F 7.53   3.85  9.15 12.61       May 2019.0
## 2069  K.elegans     Lake_Placid   M 5.64   2.52  4.98  7.60       May 2019.0
## 2070  K.elegans     Lake_Placid   F 8.57   4.05 10.50 13.99       May 2019.0
## 2071  K.elegans     Lake_Placid   M 7.18   3.59 10.02 13.28       May 2019.0
## 2072  K.elegans     Lake_Placid   F 8.27   3.48 10.12 12.86       May 2019.0
## 2073  K.elegans     Lake_Placid   M 5.89   3.03  8.87 12.06       May 2019.0
## 2074  K.elegans     Lake_Placid   M 5.45   3.08  7.84 10.35       May 2019.0
## 2075  K.elegans     Lake_Placid   F 5.22   2.72  8.01 10.65       May 2019.0
## 2076  K.elegans     Lake_Placid   F 6.25   2.67  4.90  8.20       May 2019.0
## 2077  K.elegans     Lake_Placid   F 5.49   2.85  7.22 10.06       May 2019.0
## 2078  K.elegans     Lake_Placid   F 5.90   2.64  4.54  7.45       May 2019.0
## 2079  K.elegans     Lake_Placid   F 5.98   3.13  8.34 12.41       May 2019.0
## 2080  K.elegans     Lake_Placid   F 5.61   3.15  8.68 11.28       May 2019.0
## 2081  K.elegans     Lake_Placid   F 8.49   3.59  9.49 13.13       May 2019.0
## 2082  K.elegans     Lake_Placid   F 7.88   3.48  9.68 12.85       May 2019.0
## 2083  K.elegans     Lake_Placid   F 5.25   2.91  8.44 11.34       May 2019.0
## 2084  K.elegans     Lake_Placid   M 5.79   3.29  8.80 11.93       May 2019.0
## 2085  K.elegans     Lake_Placid   F 6.36   3.28  9.53 12.03       May 2019.0
## 2086  K.elegans     Lake_Placid   F 5.53   3.55  8.09 11.33       May 2019.0
## 2087  K.elegans     Lake_Placid   F 6.94   3.20  8.69 11.45       May 2019.0
## 2088  K.elegans     Lake_Placid   F 8.29   4.22  9.49 13.15       May 2019.0
## 2089  K.elegans     Lake_Placid   F 8.39   3.45  9.61 12.97       May 2019.0
## 2090  K.elegans     Lake_Placid   F 8.12   3.98  7.91 13.70       May 2019.0
## 2091  K.elegans     Lake_Placid   F 5.79   2.97  8.34 11.29       May 2019.0
## 2092  K.elegans     Lake_Placid   F 5.54   2.59  7.83 11.64       May 2019.0
## 2093  K.elegans     Lake_Placid   F 5.04   3.18  7.59 10.55       May 2019.0
## 2094  K.elegans     Lake_Placid   F 8.56   4.05 10.14 13.77       May 2019.0
## 2095  K.elegans     Lake_Placid   F 6.25   3.21  8.75 10.86       May 2019.0
## 2096  K.elegans     Lake_Placid   F 6.48   2.78  6.18  9.33       May 2019.0
## 2097  K.elegans     Lake_Placid   F 4.88   2.67  7.77 10.19       May 2019.0
## 2098  K.elegans     Lake_Placid   F 5.36   3.22  8.59 10.98       May 2019.0
## 2099  K.elegans     Lake_Placid   F 6.82   3.15  8.41 11.61       May 2019.0
## 2100  K.elegans     Lake_Placid   F 8.49   3.45  9.43 12.33       May 2019.0
## 2101  K.elegans     Lake_Placid   F 8.11   3.65  9.43 12.79       May 2019.0
## 2102  K.elegans     Lake_Placid   F 7.93   3.68 10.00 12.98       May 2019.0
## 2103  K.elegans     Lake_Placid   M 5.15   2.64  5.22  7.96       May 2019.0
## 2104  K.elegans     Lake_Placid   F 6.70   3.22  8.70 11.39       May 2019.0
## 2105  K.elegans     Lake_Placid   F 7.39   3.43  9.82 13.14       May 2019.0
## 2106  K.elegans     Lake_Placid   M 5.78   2.72  5.10  8.34       May 2019.0
## 2107  K.elegans     Lake_Placid   M 5.75   3.12  8.75 11.56       May 2019.0
## 2108  K.elegans     Lake_Placid   F 6.22   2.83  4.95  8.09       May 2019.0
## 2109  K.elegans     Lake_Placid   M 5.81   3.09  8.56 12.14       May 2019.0
## 2110  K.elegans     Lake_Placid   F 7.49   3.55  9.41 12.23       May 2019.0
## 2111  K.elegans     Lake_Placid   M 5.13   2.80  7.63 10.64       May 2019.0
## 2112  K.elegans     Lake_Placid   F 7.72   3.78  9.90 13.51       May 2019.0
## 2113  K.elegans     Lake_Placid   M 5.66   3.01  7.76 11.07       May 2019.0
## 2114  K.elegans     Lake_Placid   F 7.64   3.25  9.80 13.89       May 2019.0
## 2115  K.elegans     Lake_Placid   F 5.63   3.13  8.43 10.67       May 2019.0
## 2116  K.elegans     Lake_Placid   F 7.80   3.52  9.79 12.53       May 2019.0
## 2117  K.elegans     Lake_Placid   F 5.26   3.12  7.94 11.15       May 2019.0
## 2118  K.elegans     Lake_Placid   F 5.40   2.88  7.92 10.51       May 2019.0
## 2119  K.elegans     Lake_Placid   F 5.66   3.34  8.58 11.75       May 2019.0
## 2120  K.elegans     Lake_Placid   M 5.75   3.16  8.29 11.25       May 2019.0
## 2121 C.corindum North_Key_Largo   F 8.48   3.57  9.14 12.92       May 2019.0
## 2122 C.corindum North_Key_Largo   M 6.27   3.04  8.40 11.46       May 2019.0
## 2123 C.corindum North_Key_Largo   M 5.83   2.70  7.46 10.24       May 2019.0
## 2124 C.corindum North_Key_Largo   M 5.83   3.12  8.40 11.43       May 2019.0
## 2125 C.corindum North_Key_Largo   M 5.50   2.59  5.11  7.88       May 2019.0
## 2126 C.corindum North_Key_Largo   F 8.12   3.33  9.08 12.40       May 2019.0
## 2127 C.corindum North_Key_Largo   M 6.12   2.87  5.81  8.91       May 2019.0
## 2128 C.corindum North_Key_Largo   M 6.50   3.09  8.10 11.04       May 2019.0
## 2129 C.corindum North_Key_Largo   F 8.73   3.59 10.16 13.64       May 2019.0
## 2130 C.corindum North_Key_Largo   M 6.03   2.96  8.02 10.92       May 2019.0
## 2131 C.corindum North_Key_Largo   M 6.10   2.79  4.88  7.89       May 2019.0
## 2132 C.corindum North_Key_Largo   M 5.64   2.71  7.75 10.58       May 2019.0
## 2133 C.corindum North_Key_Largo   M 6.23   3.10  8.35 11.35       May 2019.0
## 2134 C.corindum North_Key_Largo   M 5.66   2.61  7.34 10.10       May 2019.0
## 2135 C.corindum North_Key_Largo   M 5.50   2.75  7.38 10.10       May 2019.0
## 2136 C.corindum North_Key_Largo   M 5.77   2.60  4.81  7.74       May 2019.0
## 2137 C.corindum North_Key_Largo   M 6.19   2.99  8.40 11.30       May 2019.0
## 2138 C.corindum North_Key_Largo   M 5.60   2.73  7.34 10.22       May 2019.0
## 2139 C.corindum North_Key_Largo   M 6.75   3.07  8.23 11.19       May 2019.0
## 2140 C.corindum North_Key_Largo   M 6.32   3.28  8.75 11.80       May 2019.0
## 2141 C.corindum North_Key_Largo   M 6.61   3.08  8.27 11.12       May 2019.0
## 2142 C.corindum North_Key_Largo   F 7.08   3.37  5.67  9.11       May 2019.0
## 2143 C.corindum North_Key_Largo   M 6.54   3.13  8.64 11.66       May 2019.0
## 2144 C.corindum North_Key_Largo   M 5.53   2.51  4.06  6.85       May 2019.0
## 2145 C.corindum North_Key_Largo   F 7.30   3.17  5.24  8.67       May 2019.0
## 2146 C.corindum North_Key_Largo   M 6.29   2.94  7.89 10.84       May 2019.0
## 2147 C.corindum North_Key_Largo   M 5.39   2.52  4.53  7.31       May 2019.0
## 2148 C.corindum North_Key_Largo   F 8.23   3.52  8.89 12.12       May 2019.0
## 2149 C.corindum North_Key_Largo   M 5.88   2.69  5.22  8.29       May 2019.0
## 2150 C.corindum North_Key_Largo   M 5.62   2.93  7.63 10.70       May 2019.0
## 2151 C.corindum North_Key_Largo   F 7.03   3.15  5.28  8.83       May 2019.0
## 2152 C.corindum North_Key_Largo   F 6.41   2.69  4.39  7.73       May 2019.0
## 2153 C.corindum North_Key_Largo   F 7.09   3.06  8.14 11.49       May 2019.0
## 2154 C.corindum North_Key_Largo   M 6.17   3.08  8.54 11.11       May 2019.0
## 2155 C.corindum North_Key_Largo   M 5.56   2.89  7.83 10.56       May 2019.0
## 2156 C.corindum North_Key_Largo   F 6.80   3.01  7.98 11.10       May 2019.0
## 2157 C.corindum North_Key_Largo   F 7.55   3.35  8.91 12.04       May 2019.0
## 2158 C.corindum North_Key_Largo   F 7.07   3.16  8.43 11.51       May 2019.0
## 2159 C.corindum North_Key_Largo   M 6.25   3.11  8.24 11.24       May 2019.0
## 2160 C.corindum North_Key_Largo   F 6.80   3.07  4.91  8.14       May 2019.0
## 2161 C.corindum North_Key_Largo   F 8.04   3.36  8.93 12.34       May 2019.0
## 2162 C.corindum North_Key_Largo   F 6.37   2.68  7.29 10.29       May 2019.0
## 2163 C.corindum North_Key_Largo   M 5.53   2.52  3.80  6.76       May 2019.0
## 2164 C.corindum North_Key_Largo   F 6.13   2.85  4.68  8.08       May 2019.0
## 2165 C.corindum North_Key_Largo   F 7.20   3.17  7.87 11.16       May 2019.0
## 2166 C.corindum North_Key_Largo   M 6.98   3.14  8.39 11.65       May 2019.0
## 2167 C.corindum North_Key_Largo   F 7.65   3.52  8.94 12.39       May 2019.0
## 2168 C.corindum North_Key_Largo   M 6.09   2.80  7.72 10.39       May 2019.0
## 2169 C.corindum North_Key_Largo   M 5.26   2.57  4.43  7.31       May 2019.0
## 2170 C.corindum North_Key_Largo   M 7.15   3.38  9.10 12.57       May 2019.0
## 2171 C.corindum North_Key_Largo   M 5.43   2.61  7.30  9.97       May 2019.0
## 2172 C.corindum North_Key_Largo   M 4.95   2.18  3.80  6.54       May 2019.0
## 2173 C.corindum North_Key_Largo   M 5.25   2.67  7.72 10.48       May 2019.0
## 2174 C.corindum North_Key_Largo   M 4.87   2.30  4.14  6.76       May 2019.0
## 2175 C.corindum North_Key_Largo   F 8.98   3.81  9.92 13.40       May 2019.0
## 2176 C.corindum North_Key_Largo   M 5.96   2.87  7.76 10.64       May 2019.0
## 2177 C.corindum North_Key_Largo   M 5.73   2.91  7.49 10.56       May 2019.0
## 2178 C.corindum North_Key_Largo   M 5.80   2.86  4.92  7.79       May 2019.0
## 2179 C.corindum North_Key_Largo   M 5.72   2.76  4.62  7.55       May 2019.0
## 2180 C.corindum North_Key_Largo   M 5.33   2.58  4.95  7.58       May 2019.0
## 2181 C.corindum North_Key_Largo   M 5.35   2.76  5.71  8.63       May 2019.0
## 2182 C.corindum North_Key_Largo   F 6.63   2.91  4.79  8.29       May 2019.0
## 2183 C.corindum North_Key_Largo   F 5.96   2.67  4.52  7.66       May 2019.0
## 2184 C.corindum North_Key_Largo   F 7.54   3.56  9.03 12.33       May 2019.0
## 2185 C.corindum North_Key_Largo   M 5.76   2.79  7.43 10.63       May 2019.0
## 2186 C.corindum North_Key_Largo   F 7.62   3.14  6.47  9.83       May 2019.0
## 2187 C.corindum North_Key_Largo   F 7.50   3.24  8.72 11.94       May 2019.0
## 2188 C.corindum North_Key_Largo   F 8.22   3.74  9.87 13.73       May 2019.0
## 2189 C.corindum North_Key_Largo   F 9.78   3.74  9.92 13.49       May 2019.0
## 2190 C.corindum North_Key_Largo   F 6.63   3.08  7.69 10.77       May 2019.0
## 2191 C.corindum North_Key_Largo   F 6.85   3.30  5.73  9.11       May 2019.0
## 2192 C.corindum North_Key_Largo   M 5.92   3.02  8.06 10.91       May 2019.0
## 2193 C.corindum North_Key_Largo   M 5.25   2.64  4.43  7.41       May 2019.0
## 2194 C.corindum North_Key_Largo   M 5.21   2.55  4.23  7.01       May 2019.0
## 2195 C.corindum North_Key_Largo   M 5.93   2.78  7.83 10.63       May 2019.0
## 2196 C.corindum North_Key_Largo   F 7.79   3.75  9.81 13.10       May 2019.0
## 2197 C.corindum North_Key_Largo   M 5.42   2.66  4.51  7.41       May 2019.0
## 2198 C.corindum North_Key_Largo   M 5.98   2.98  7.86 10.87       May 2019.0
## 2199 C.corindum North_Key_Largo   M 5.72   2.75  7.50 10.28       May 2019.0
## 2200 C.corindum North_Key_Largo   M 5.65   2.64  4.69  7.57       May 2019.0
## 2201 C.corindum North_Key_Largo   M 5.73   2.73  7.56 10.58       May 2019.0
## 2202 C.corindum North_Key_Largo   F 6.21   2.96  4.60  7.96       May 2019.0
## 2203 C.corindum North_Key_Largo   M 6.06   3.05  8.42 11.41       May 2019.0
## 2204 C.corindum North_Key_Largo   M 5.62   2.68  4.76  7.61       May 2019.0
## 2205 C.corindum North_Key_Largo   M 5.31   2.50  4.30  7.01       May 2019.0
## 2206 C.corindum North_Key_Largo   M 5.78   2.78  7.69 10.75       May 2019.0
## 2207 C.corindum North_Key_Largo   M 5.50   2.63  7.33 10.10       May 2019.0
## 2208 C.corindum North_Key_Largo   M 5.99   2.95  8.05 11.10       May 2019.0
## 2209 C.corindum North_Key_Largo   F 7.00   2.97  5.01  8.47       May 2019.0
## 2210 C.corindum North_Key_Largo   M 5.32   2.53  4.62  7.35       May 2019.0
## 2211 C.corindum North_Key_Largo   M 5.14   2.35  5.62  8.42       May 2019.0
## 2212 C.corindum North_Key_Largo   M 5.26   2.58  4.20  7.15       May 2019.0
## 2213 C.corindum North_Key_Largo   M 5.34   2.44  4.33  7.04       May 2019.0
## 2214 C.corindum North_Key_Largo   M 5.33   2.46  6.85  9.35       May 2019.0
## 2215 C.corindum North_Key_Largo   M 5.18   2.61  4.47  7.49       May 2019.0
## 2216 C.corindum North_Key_Largo   M 4.98   2.47  4.14  6.89       May 2019.0
## 2217 C.corindum North_Key_Largo   M 5.47   2.60  5.38  8.41       May 2019.0
## 2218 C.corindum North_Key_Largo   M 5.44   2.57  4.65  7.60       May 2019.0
## 2219 C.corindum North_Key_Largo   M 5.73   2.87  7.73 10.69       May 2019.0
## 2220 C.corindum North_Key_Largo   F 5.71   2.73  4.51  7.49       May 2019.0
## 2221 C.corindum North_Key_Largo   F 5.67   2.58  4.44  7.55       May 2019.0
## 2222 C.corindum North_Key_Largo   F 6.85   3.06  4.53  8.26       May 2019.0
## 2223 C.corindum North_Key_Largo   F 8.11   3.58  9.45 12.86       May 2019.0
## 2224 C.corindum North_Key_Largo   M 5.91   2.85  7.61 10.42       May 2019.0
## 2225 C.corindum North_Key_Largo   F 7.76   3.44  5.99  9.68       May 2019.0
## 2226 C.corindum North_Key_Largo   M 5.93   2.84  7.56 10.29       May 2019.0
## 2227 C.corindum North_Key_Largo   F 6.85   2.79  4.77  8.03       May 2019.0
## 2228 C.corindum North_Key_Largo   F 7.07   3.03  5.21  8.29       May 2019.0
## 2229 C.corindum North_Key_Largo   F 7.00   3.12  5.23  8.70       May 2019.0
## 2230 C.corindum North_Key_Largo   F 6.85   3.10  5.65  8.83       May 2019.0
## 2231 C.corindum North_Key_Largo   F 6.03   2.78  4.78  8.05       May 2019.0
## 2232 C.corindum North_Key_Largo   F 6.75   2.87  5.35  8.72       May 2019.0
## 2233 C.corindum North_Key_Largo   F 7.89   3.44  8.95 12.39       May 2019.0
## 2234 C.corindum North_Key_Largo   M 5.72   2.74  5.91  8.62       May 2019.0
## 2235 C.corindum North_Key_Largo   F 6.38   2.93  5.19  8.24       May 2019.0
## 2236 C.corindum North_Key_Largo   F 7.77   3.42  9.07 12.61       May 2019.0
## 2237 C.corindum North_Key_Largo   M 6.30   3.06  7.84 10.76       May 2019.0
## 2238 C.corindum North_Key_Largo   M 5.23   2.37  4.67  7.68       May 2019.0
## 2239 C.corindum North_Key_Largo   F 8.73   3.90 10.42 14.30       May 2019.0
## 2240 C.corindum North_Key_Largo   M 6.73   3.31  8.99 12.06       May 2019.0
## 2241 C.corindum North_Key_Largo   F 6.78   3.01  4.59  8.11       May 2019.0
## 2242 C.corindum North_Key_Largo   F 7.09   3.23  6.19  9.61       May 2019.0
## 2243 C.corindum North_Key_Largo   M 6.17   3.42  8.80 11.94       May 2019.0
## 2244 C.corindum North_Key_Largo   M 6.08   3.03  8.21 11.08       May 2019.0
## 2245 C.corindum North_Key_Largo   F 8.43   3.27  8.68 12.17       May 2019.0
## 2246 C.corindum North_Key_Largo   F 8.73   3.73  9.51 13.01       May 2019.0
## 2247 C.corindum North_Key_Largo   F 8.79   3.73 10.31 13.87       May 2019.0
## 2248 C.corindum North_Key_Largo   F 6.71   3.14  5.35  8.69       May 2019.0
## 2249 C.corindum North_Key_Largo   M 6.13   3.11  8.11 11.14       May 2019.0
## 2250 C.corindum North_Key_Largo   M 6.33   2.84  5.12  8.23       May 2019.0
## 2251 C.corindum North_Key_Largo   F 7.41   3.26  8.23 11.43       May 2019.0
## 2252 C.corindum North_Key_Largo   F 7.11   3.18  6.11  9.59       May 2019.0
## 2253 C.corindum North_Key_Largo   M 5.61   2.63  4.86  7.75       May 2019.0
## 2254 C.corindum North_Key_Largo   M 6.31   3.39  7.94 11.35       May 2019.0
## 2255 C.corindum North_Key_Largo   M 5.32   2.60  4.47  7.36       May 2019.0
## 2256 C.corindum North_Key_Largo   M 5.37   2.75  4.65  7.60       May 2019.0
## 2257 C.corindum North_Key_Largo   F 6.53   2.84  4.42  7.79       May 2019.0
## 2258 C.corindum North_Key_Largo   F 6.39   2.83  4.59  7.75       May 2019.0
## 2259 C.corindum North_Key_Largo   F 6.54   2.88  5.00  8.42       May 2019.0
## 2260 C.corindum North_Key_Largo   M 5.42   2.58  4.97  7.88       May 2019.0
## 2261 C.corindum North_Key_Largo   F 7.08   3.01  5.71  9.02       May 2019.0
## 2262 C.corindum North_Key_Largo   F 6.02   2.80  4.81  7.92       May 2019.0
## 2263 C.corindum North_Key_Largo   M 6.20   3.05  8.04 10.90       May 2019.0
## 2264 C.corindum North_Key_Largo   M 5.97   3.01  8.08 10.97       May 2019.0
## 2265 C.corindum North_Key_Largo   F 8.16   3.50  8.92 12.44       May 2019.0
## 2266 C.corindum North_Key_Largo   F 8.35   3.90  9.53 13.14       May 2019.0
## 2267 C.corindum North_Key_Largo   M 5.60   2.67  4.65  7.89       May 2019.0
## 2268 C.corindum North_Key_Largo   M 6.03   2.79  7.32  9.96       May 2019.0
## 2269 C.corindum North_Key_Largo   F 8.02   3.73  9.65 13.41       May 2019.0
## 2270 C.corindum North_Key_Largo   F 8.28   3.63  9.08 12.60       May 2019.0
## 2271 C.corindum North_Key_Largo   M 6.09   2.90  8.24 11.35       May 2019.0
## 2272 C.corindum North_Key_Largo   M 5.95   2.70  7.65 10.58       May 2019.0
## 2273 C.corindum North_Key_Largo   M 5.40   2.57  4.67  7.48       May 2019.0
## 2274 C.corindum North_Key_Largo   F 7.83   3.42  8.92 12.28       May 2019.0
## 2275 C.corindum North_Key_Largo   F 6.35   2.82  4.84  8.16       May 2019.0
## 2276 C.corindum North_Key_Largo   F 6.72   3.06  5.12  8.63       May 2019.0
## 2277 C.corindum North_Key_Largo   F 8.32   3.33  8.82 12.31       May 2019.0
## 2278 C.corindum North_Key_Largo   F 7.08   2.98  4.99  8.25       May 2019.0
## 2279 C.corindum North_Key_Largo   M 6.02   3.05  8.40 11.35       May 2019.0
## 2280 C.corindum North_Key_Largo   F 6.18   2.78  4.85  8.09       May 2019.0
## 2281 C.corindum North_Key_Largo   F 8.52   3.51  9.63 12.95       May 2019.0
## 2282 C.corindum North_Key_Largo   M 4.98   2.12  3.88  6.52       May 2019.0
## 2283 C.corindum North_Key_Largo   M 5.27   2.58  4.71  7.51       May 2019.0
## 2284 C.corindum North_Key_Largo   M 5.38   2.68  4.98  7.84       May 2019.0
## 2285 C.corindum North_Key_Largo   F 8.23   3.57  9.52 12.80       May 2019.0
## 2286 C.corindum North_Key_Largo   F 7.39   3.15  8.47 11.62       May 2019.0
## 2287 C.corindum North_Key_Largo   M 5.15   2.43  4.20  6.81       May 2019.0
## 2288 C.corindum North_Key_Largo   M 5.93   2.92  7.94 10.86       May 2019.0
## 2289 C.corindum North_Key_Largo   F 6.05   2.90  4.69  7.93       May 2019.0
## 2290 C.corindum North_Key_Largo   M 6.01   3.07  8.20 11.22       May 2019.0
## 2291 C.corindum North_Key_Largo   M 6.22   3.24  8.32 11.46       May 2019.0
## 2292 C.corindum North_Key_Largo   M 5.83   2.79  7.17 10.15       May 2019.0
## 2293 C.corindum North_Key_Largo   F 8.56   3.62  9.23 12.44       May 2019.0
## 2294 C.corindum North_Key_Largo   F 8.22   3.73  9.36 12.69       May 2019.0
## 2295 C.corindum North_Key_Largo   M 4.94   2.52  4.25  6.83       May 2019.0
## 2296 C.corindum North_Key_Largo   F 7.16   3.34  5.11  8.80       May 2019.0
## 2297 C.corindum North_Key_Largo   F 7.60   3.20  8.69 12.19       May 2019.0
## 2298 C.corindum North_Key_Largo   M 5.57   2.68  4.66  7.64       May 2019.0
## 2299 C.corindum North_Key_Largo   M 5.81   2.68  4.51  7.35       May 2019.0
## 2300 C.corindum North_Key_Largo   F 7.28   3.23  5.45  9.14       May 2019.0
## 2301 C.corindum North_Key_Largo   F 6.17   2.77  4.89  8.57       May 2019.0
## 2302 C.corindum North_Key_Largo   F 8.75   3.73  9.47 13.07       May 2019.0
## 2303 C.corindum North_Key_Largo   M 5.77   2.82  5.36  8.36       May 2019.0
## 2304 C.corindum North_Key_Largo   F 8.17   3.65  9.16 12.56       May 2019.0
## 2305 C.corindum North_Key_Largo   M 6.11   2.63  4.79  7.80       May 2019.0
## 2306 C.corindum North_Key_Largo   F 6.19   2.84  4.61  7.94       May 2019.0
## 2307 C.corindum North_Key_Largo   M 5.65   2.61  4.84  7.80       May 2019.0
## 2308 C.corindum North_Key_Largo   M 5.74   2.91  8.26 11.18       May 2019.0
## 2309 C.corindum North_Key_Largo   M 5.29   2.39  3.99  6.78       May 2019.0
## 2310 C.corindum North_Key_Largo   M 5.63   2.90  8.40 11.29       May 2019.0
## 2311 C.corindum North_Key_Largo   M 5.89   2.95  8.03 10.77       May 2019.0
## 2312 C.corindum North_Key_Largo   M 5.91   2.84  7.23 10.09       May 2019.0
## 2313 C.corindum North_Key_Largo   F 8.73   3.65  9.64 12.92       May 2019.0
## 2314 C.corindum North_Key_Largo   M 5.53   2.68  5.33  8.47       May 2019.0
## 2315 C.corindum North_Key_Largo   F 6.89   2.95  4.64  7.71       May 2019.0
## 2316 C.corindum North_Key_Largo   M 6.09   2.84  7.42 10.38       May 2019.0
## 2317 C.corindum North_Key_Largo   M 5.76   2.65  4.48  7.35       May 2019.0
## 2318 C.corindum North_Key_Largo   F 7.17   3.09  5.85  9.35       May 2019.0
## 2319 C.corindum North_Key_Largo   M 5.79   2.52  5.18  8.25       May 2019.0
## 2320 C.corindum North_Key_Largo   M 5.51   2.59  4.77  7.56       May 2019.0
## 2321 C.corindum North_Key_Largo   F 6.87   3.20  8.61 11.87       May 2019.0
## 2322 C.corindum North_Key_Largo   M 5.35   2.57  4.30  7.11       May 2019.0
## 2323 C.corindum North_Key_Largo   F 5.92   2.75  4.59  7.71       May 2019.0
## 2324 C.corindum North_Key_Largo   M 5.43   2.63  4.26  7.11       May 2019.0
## 2325 C.corindum North_Key_Largo   M 5.04   2.39  3.98  6.80       May 2019.0
## 2326 C.corindum North_Key_Largo   M 4.91   2.24  3.91  6.70       May 2019.0
## 2327 C.corindum North_Key_Largo   M 5.18   2.33  4.03  6.73       May 2019.0
## 2328 C.corindum North_Key_Largo   M 5.97   2.92  7.90 10.89       May 2019.0
## 2329 C.corindum North_Key_Largo   M 5.43   2.75  4.75  8.11       May 2019.0
## 2330 C.corindum North_Key_Largo   M 5.75   2.72  4.87  7.79       May 2019.0
## 2331 C.corindum North_Key_Largo   M 5.24   2.64  4.12  7.09       May 2019.0
## 2332 C.corindum North_Key_Largo   M 5.99   2.67  4.28  7.27       May 2019.0
## 2333 C.corindum North_Key_Largo   M 6.22   3.09  8.24 11.48       May 2019.0
## 2334 C.corindum North_Key_Largo   F 8.12   3.72  9.08 12.61       May 2019.0
## 2335 C.corindum North_Key_Largo   F 7.53   3.67  9.57 12.90       May 2019.0
## 2336 C.corindum North_Key_Largo   F 6.54   3.07  7.63 10.85       May 2019.0
## 2337 C.corindum North_Key_Largo   M 6.53   3.34  9.46 12.50       May 2019.0
## 2338 C.corindum North_Key_Largo   F 6.33   2.73  5.18  8.80       May 2019.0
## 2339 C.corindum North_Key_Largo   M 5.92   3.17  8.55 11.76       May 2019.0
## 2340 C.corindum North_Key_Largo   F 9.11   3.69  9.84 13.46       May 2019.0
## 2341 C.corindum North_Key_Largo   F 8.15   3.43  9.08 12.23       May 2019.0
## 2342 C.corindum North_Key_Largo   M 6.02   3.62 10.07 13.23       May 2019.0
## 2343 C.corindum North_Key_Largo   F 7.98   3.33  8.83 12.04       May 2019.0
## 2344 C.corindum North_Key_Largo   M 5.96   2.81  7.79 10.71       May 2019.0
## 2345 C.corindum North_Key_Largo   F 7.94   3.64  9.61 13.23       May 2019.0
## 2346 C.corindum North_Key_Largo   M 6.41   3.06  8.31 11.68       May 2019.0
## 2347 C.corindum North_Key_Largo   M 4.96   2.65  6.97  9.80       May 2019.0
## 2348 C.corindum North_Key_Largo   F 7.25   3.23  8.40 11.60       May 2019.0
## 2349 C.corindum North_Key_Largo   M 5.96   2.95  7.89 10.83       May 2019.0
## 2350 C.corindum North_Key_Largo   M 6.16   2.84  7.89 10.89       May 2019.0
## 2351 C.corindum North_Key_Largo   F 6.62   3.82 10.01 13.65       May 2019.0
## 2352 C.corindum North_Key_Largo   M 5.75   2.97  9.03 10.96       May 2019.0
## 2353 C.corindum North_Key_Largo   F 8.43   3.54  9.34 12.55       May 2019.0
## 2354 C.corindum North_Key_Largo   M 6.19   3.08  8.16 11.37       May 2019.0
## 2355 C.corindum North_Key_Largo   M 5.40   2.61  4.22  7.14       May 2019.0
## 2356 C.corindum North_Key_Largo   F 9.84   4.11 10.91 15.02       May 2019.0
## 2357 C.corindum North_Key_Largo   M 6.05   3.03  7.85 10.85       May 2019.0
## 2358 C.corindum North_Key_Largo   M 5.77   3.04  7.74 10.84       May 2019.0
## 2359 C.corindum North_Key_Largo   M 5.95   2.82  7.63 10.57       May 2019.0
## 2360 C.corindum North_Key_Largo   F 6.22   2.64  5.07  8.21       May 2019.0
## 2361 C.corindum North_Key_Largo   M 5.81   2.85  7.36  9.92       May 2019.0
## 2362 C.corindum North_Key_Largo   F 7.77   3.36  8.77 12.28       May 2019.0
## 2363 C.corindum North_Key_Largo   F 8.33   3.42  8.94 12.64       May 2019.0
## 2364 C.corindum North_Key_Largo   F 8.37   3.49  9.35 12.71       May 2019.0
## 2365 C.corindum North_Key_Largo   F 7.19   3.17  5.54  8.91       May 2019.0
## 2366 C.corindum North_Key_Largo   F 8.17   3.31  8.73 12.37       May 2019.0
## 2367 C.corindum North_Key_Largo   M 5.61   2.79  6.00  9.00       May 2019.0
## 2368 C.corindum North_Key_Largo   F 7.02   3.22  5.13  8.61       May 2019.0
## 2369 C.corindum  Plantation_Key   M 5.68   2.73  4.43  7.45       May 2019.0
## 2370 C.corindum  Plantation_Key   M 5.57   2.58  7.07  9.84       May 2019.0
## 2371 C.corindum  Plantation_Key   M 5.08   2.27  3.48  6.11       May 2019.0
## 2372 C.corindum  Plantation_Key   M 6.01   3.22  8.72 11.55       May 2019.0
## 2373 C.corindum  Plantation_Key   M 6.26   3.15  7.99 11.20       May 2019.0
## 2374 C.corindum  Plantation_Key   F 8.50   3.69  9.52 13.16       May 2019.0
## 2375 C.corindum  Plantation_Key   F 6.41   3.14  5.73  8.94       May 2019.0
## 2376 C.corindum  Plantation_Key   M 5.20   2.47  4.09  7.00       May 2019.0
## 2377 C.corindum  Plantation_Key   F 6.58   2.86  5.10  8.48       May 2019.0
## 2378 C.corindum  Plantation_Key   F 6.37   2.89  4.88  8.20       May 2019.0
## 2379 C.corindum  Plantation_Key   F 5.90   2.69  4.89  7.98       May 2019.0
## 2380 C.corindum  Plantation_Key   M 6.37   2.96  8.23 11.22       May 2019.0
## 2381 C.corindum  Plantation_Key   M 5.21   2.47  3.95  6.72       May 2019.0
## 2382 C.corindum  Plantation_Key   M 5.23   2.49  4.51  7.47       May 2019.0
## 2383 C.corindum  Plantation_Key   F 6.10   2.88  4.62  8.15       May 2019.0
## 2384 C.corindum  Plantation_Key   F 7.34   3.05  5.01  8.52       May 2019.0
## 2385 C.corindum  Plantation_Key   F 6.73   3.05  4.89  8.47       May 2019.0
## 2386 C.corindum  Plantation_Key   M 5.01   2.27  4.17  6.86       May 2019.0
## 2387 C.corindum  Plantation_Key   M 5.29   2.49  4.09  7.05       May 2019.0
## 2388 C.corindum  Plantation_Key   M 5.63   2.72  7.30 10.17       May 2019.0
## 2389 C.corindum  Plantation_Key   M 5.37   2.63  4.88  7.78       May 2019.0
## 2390 C.corindum  Plantation_Key   M 6.14   2.96  7.90 11.18       May 2019.0
## 2391 C.corindum  Plantation_Key   M 6.17   2.93  7.69 11.07       May 2019.0
## 2392 C.corindum  Plantation_Key   F 6.72   2.94  5.29  8.39       May 2019.0
## 2393 C.corindum  Plantation_Key   M 5.42   2.63  4.06  6.97       May 2019.0
## 2394 C.corindum  Plantation_Key   M 5.98   3.07  7.75 10.84       May 2019.0
## 2395 C.corindum  Plantation_Key   F 8.56   3.79 10.06 13.66       May 2019.0
## 2396 C.corindum  Plantation_Key   M 5.39   2.67  4.47  7.53       May 2019.0
## 2397 C.corindum  Plantation_Key   M 5.34   2.75  4.34  7.51       May 2019.0
## 2398 C.corindum  Plantation_Key   F 5.93   2.82  4.34  7.53       May 2019.0
## 2399 C.corindum  Plantation_Key   F 5.93   2.75  4.55  7.69       May 2019.0
## 2400 C.corindum  Plantation_Key   F 8.07   3.48  9.28 12.55       May 2019.0
## 2401 C.corindum  Plantation_Key   F 7.00   3.05  5.40  8.97       May 2019.0
## 2402 C.corindum  Plantation_Key   M 5.54   2.59  4.49  7.39       May 2019.0
## 2403  K.elegans     Gainesville   F 7.81   3.58  9.57 13.13   October 2019.0
## 2404  K.elegans     Gainesville   M 6.54   3.36  8.93 12.33   October 2019.0
## 2405  K.elegans     Gainesville   M 5.64   3.20  8.34 11.50   October 2019.0
## 2406  K.elegans     Gainesville   F 7.86   3.59  9.82 13.37   October 2019.0
## 2407  K.elegans     Gainesville   F 8.57   3.90 11.30 14.72   October 2019.0
## 2408  K.elegans     Gainesville   M 5.60   2.74  7.07 10.00   October 2019.0
## 2409  K.elegans     Gainesville   M 5.98   3.08  8.61 11.28   October 2019.0
## 2410  K.elegans     Gainesville   M 6.16   3.30  8.42 11.70   October 2019.0
## 2411  K.elegans     Gainesville   M 5.72   3.18  8.53 11.55   October 2019.0
## 2412  K.elegans     Gainesville   F 7.96   3.51  9.45 13.02   October 2019.0
## 2413  K.elegans     Gainesville   F 6.78   3.25  9.03 11.85   October 2019.0
## 2414  K.elegans     Gainesville   F 7.86   3.63  9.89 13.68   October 2019.0
## 2415  K.elegans     Gainesville   M 5.86   3.09  4.89  8.09   October 2019.0
## 2416  K.elegans     Gainesville   M 5.90   2.87  5.20  8.18   October 2019.0
## 2417  K.elegans     Gainesville   M 5.79   3.37  9.34 12.55   October 2019.0
## 2418  K.elegans     Gainesville   M 5.60   3.41  9.25 12.19   October 2019.0
## 2419  K.elegans       Homestead   M 6.20   3.31  8.85 12.20   October 2019.0
## 2420  K.elegans       Homestead   F 7.94   3.75 10.28 13.41   October 2019.0
## 2421  K.elegans       Homestead   M 5.93   3.21  8.53 11.82   October 2019.0
## 2422  K.elegans       Homestead   M 5.92   3.19  8.71 11.52   October 2019.0
## 2423  K.elegans       Homestead   F 8.37   3.80 10.22 14.17   October 2019.0
## 2424  K.elegans       Homestead   M 5.69   3.10  8.70 11.60   October 2019.0
## 2425  K.elegans       Homestead   F 7.88   4.07 10.46 14.08   October 2019.0
## 2426  K.elegans       Homestead   M 5.95   3.03  8.89 11.69   October 2019.0
## 2427  K.elegans       Homestead   M 5.84   3.15  8.74 11.55   October 2019.0
## 2428  K.elegans       Homestead   F 8.54   3.59  9.63 13.36   October 2019.0
## 2429  K.elegans       Homestead   M 5.86   3.12  8.64 11.82   October 2019.0
## 2430  K.elegans       Homestead   F 8.02   3.69  9.86 13.57   October 2019.0
## 2431  K.elegans       Homestead   F 8.33   3.74  9.30 12.73   October 2019.0
## 2432  K.elegans       Homestead   F 7.96   3.67 10.00 13.34   October 2019.0
## 2433  K.elegans       Homestead   F 7.98   3.66 10.23 13.60   October 2019.0
## 2434  K.elegans       Homestead   F 6.29   2.62  4.78  8.52   October 2019.0
## 2435  K.elegans       Homestead   M 5.38   3.00  8.22 10.99   October 2019.0
## 2436  K.elegans       Homestead   M 5.88   3.15  8.60 11.69   October 2019.0
## 2437  K.elegans       Homestead   M 6.00   3.23  9.32 12.26   October 2019.0
## 2438  K.elegans       Homestead   M 6.08   3.05  8.29 11.20   October 2019.0
## 2439  K.elegans       Homestead   M 5.74   3.15  8.74 11.78   October 2019.0
## 2440  K.elegans       Homestead   M 5.57   3.04  8.33 11.11   October 2019.0
## 2441  K.elegans       Homestead   M 5.70   3.23  8.54 11.59   October 2019.0
## 2442  K.elegans       Homestead   M 6.12   3.26  9.14 12.22   October 2019.0
## 2443  K.elegans       Homestead   M 6.06   3.29  8.80 12.10   October 2019.0
## 2444  K.elegans       Homestead   M 6.14   3.19  9.02 12.10   October 2019.0
## 2445  K.elegans       Homestead   M 5.88   3.39  9.00 12.18   October 2019.0
## 2446  K.elegans       Homestead   M 5.32   2.87  7.66 10.65   October 2019.0
## 2447  K.elegans       Homestead   M 5.88   2.89  7.94 10.62   October 2019.0
## 2448  K.elegans       Homestead   M 5.58   3.11  8.49 11.18   October 2019.0
## 2449  K.elegans       Homestead   F 7.97   3.91  9.98 13.19   October 2019.0
## 2450  K.elegans       Homestead   M 5.75   3.32  9.04 11.98   October 2019.0
## 2451  K.elegans       Homestead   M 5.27   3.16  8.45 11.21   October 2019.0
## 2452  K.elegans       Homestead   F 7.61   3.46  9.41 12.90   October 2019.0
## 2453  K.elegans       Homestead   M 5.50   3.01  8.61 11.37   October 2019.0
## 2454 C.corindum       Key_Largo   F 8.17   3.18  8.37 11.91   October 2019.0
## 2455 C.corindum       Key_Largo   F 7.78   3.44  8.82 11.79   October 2019.0
## 2456 C.corindum       Key_Largo   M 5.56   2.76  4.59  7.77   October 2019.0
## 2457 C.corindum       Key_Largo   F 7.93   3.74  9.31 13.21   October 2019.0
## 2458 C.corindum       Key_Largo   M 6.63   3.07  7.87 11.37   October 2019.0
## 2459 C.corindum       Key_Largo   F 8.56   3.55  9.12 12.58   October 2019.0
## 2460 C.corindum       Key_Largo   M 6.58   3.33  9.56 12.32   October 2019.0
## 2461 C.corindum       Key_Largo   M 6.25   3.37  8.67 11.84   October 2019.0
## 2462 C.corindum       Key_Largo   F 6.95   3.70  9.47 13.09   October 2019.0
## 2463 C.corindum       Key_Largo   M 3.60   2.37  7.13  9.19   October 2019.0
## 2464 C.corindum       Key_Largo   M 5.91   2.86  7.62 10.64   October 2019.0
## 2465 C.corindum       Key_Largo   F 9.66   3.89  9.95 13.57   October 2019.0
## 2466 C.corindum       Key_Largo   M 6.34   3.43  8.32 11.36   October 2019.0
## 2467 C.corindum       Key_Largo   F 7.58   3.23  8.24 11.90   October 2019.0
## 2468 C.corindum       Key_Largo   F 7.68   3.25  8.39 11.53   October 2019.0
## 2469 C.corindum       Key_Largo   F 7.33   3.23  8.13 11.92   October 2019.0
## 2470  K.elegans     Lake_Placid   M 5.30   3.16  8.59 11.62   October 2019.0
## 2471  K.elegans     Lake_Placid   F 7.58   3.10  8.07 11.40   October 2019.0
## 2472  K.elegans     Lake_Placid   F 7.75   3.60  9.68 13.39   October 2019.0
## 2473  K.elegans     Lake_Placid   M 5.61   3.02  8.38 11.54   October 2019.0
## 2474  K.elegans     Lake_Placid   M 5.92   3.21  8.33 11.33   October 2019.0
## 2475  K.elegans     Lake_Placid   F 6.97   3.64 10.09 13.49   October 2019.0
## 2476  K.elegans     Lake_Placid   F 7.64   3.51  9.50 13.20   October 2019.0
## 2477  K.elegans     Lake_Placid   F 8.79   3.96 10.25 14.29   October 2019.0
## 2478  K.elegans     Lake_Placid   M 5.83   3.22  8.29 11.55   October 2019.0
## 2479  K.elegans     Lake_Placid   F 7.99   3.65 10.04 13.85   October 2019.0
## 2480  K.elegans     Lake_Placid   M 5.59   3.37  8.71 11.86   October 2019.0
## 2481  K.elegans     Lake_Placid   M 5.58   3.23  8.46 11.53   October 2019.0
## 2482  K.elegans     Lake_Placid   F 7.64   3.51  9.40 12.83   October 2019.0
## 2483  K.elegans     Lake_Placid   F 7.04   3.56  9.86 12.73   October 2019.0
## 2484  K.elegans     Lake_Placid   F 7.35   3.29  8.79 12.27   October 2019.0
## 2485  K.elegans     Lake_Placid   M 5.41   2.90  8.04 10.86   October 2019.0
## 2486  K.elegans     Lake_Placid   F 8.51   3.85 10.32 14.10   October 2019.0
## 2487  K.elegans     Lake_Placid   F 7.72   3.54  9.30 12.79   October 2019.0
## 2488  K.elegans     Lake_Placid   M 5.69   3.33  9.49 12.73   October 2019.0
## 2489  K.elegans     Lake_Placid   M 5.74   2.99  8.38 11.33   October 2019.0
## 2490  K.elegans     Lake_Placid   F 7.97   3.86  9.85 13.47   October 2019.0
## 2491  K.elegans     Lake_Placid   M 5.73   3.27  9.02 12.22   October 2019.0
## 2492  K.elegans     Lake_Placid   M 5.46   3.04  8.09 11.18   October 2019.0
## 2493  K.elegans     Lake_Placid   F 7.86   3.28  8.98 12.41   October 2019.0
## 2494  K.elegans     Lake_Placid   M 5.87   3.23  8.59 11.76   October 2019.0
## 2495  K.elegans     Lake_Placid   M 5.81   3.18  8.57 11.66   October 2019.0
## 2496  K.elegans     Lake_Placid   F 8.19   3.58  9.47 13.32   October 2019.0
## 2497  K.elegans     Lake_Placid   M 5.78   3.19  8.86 11.93   October 2019.0
## 2498  K.elegans     Lake_Placid   F 7.57   3.61  9.94 13.58   October 2019.0
## 2499  K.elegans     Lake_Placid   M 5.55   2.98  8.23 11.32   October 2019.0
## 2500  K.elegans     Lake_Placid   F 7.79   3.72  9.73 13.44   October 2019.0
## 2501  K.elegans     Lake_Placid   F 7.70   3.27  9.00 12.50   October 2019.0
## 2502  K.elegans     Lake_Placid   M 5.92   3.34  8.90 11.94   October 2019.0
## 2503  K.elegans     Lake_Placid   M 6.08   3.41  8.60 11.88   October 2019.0
## 2504  K.elegans     Lake_Placid   F 7.43   3.51  9.38 12.71   October 2019.0
## 2505  K.elegans     Lake_Placid   F 7.97   3.47  9.65 13.23   October 2019.0
## 2506  K.elegans     Lake_Placid   M 5.70   2.71  7.56 10.58   October 2019.0
## 2507  K.elegans     Lake_Placid   M 5.45   2.74  7.52 10.31   October 2019.0
## 2508  K.elegans     Lake_Placid   M 5.66   3.08  7.97 10.97   October 2019.0
## 2509  K.elegans     Lake_Placid   M 6.15   3.27  8.47 11.54   October 2019.0
## 2510  K.elegans     Lake_Placid   M 6.20   3.12  8.73 11.82   October 2019.0
## 2511  K.elegans     Lake_Placid   M 5.62   3.07  8.09 11.08   October 2019.0
## 2512  K.elegans     Lake_Placid   F 7.46   3.13  8.26 11.36   October 2019.0
## 2513  K.elegans      Lake_Wales   F 6.97   3.45  9.61 12.86   October 2019.0
## 2514  K.elegans      Lake_Wales   F 7.62   3.49  9.78 13.42   October 2019.0
## 2515  K.elegans      Lake_Wales   F 8.27   3.77 10.10 13.86   October 2019.0
## 2516  K.elegans      Lake_Wales   M 5.53   3.12  8.19 11.19   October 2019.0
## 2517  K.elegans      Lake_Wales   F 8.18   3.73 10.05 13.89   October 2019.0
## 2518  K.elegans      Lake_Wales   M 6.16   3.22  8.75 11.93   October 2019.0
## 2519  K.elegans      Lake_Wales   F 7.30   3.70 10.42 13.97   October 2019.0
## 2520  K.elegans      Lake_Wales   F 7.72   3.54 10.05 13.24   October 2019.0
## 2521  K.elegans      Lake_Wales   M 6.07   3.09  8.31 11.48   October 2019.0
## 2522  K.elegans      Lake_Wales   M 5.54   2.64  5.53  8.33   October 2019.0
## 2523  K.elegans      Lake_Wales   M 5.51   3.18  8.44 11.46   October 2019.0
## 2524  K.elegans      Lake_Wales   F 8.10   3.90 10.31 14.12   October 2019.0
## 2525  K.elegans      Lake_Wales   M 5.85   3.20  8.94 12.08   October 2019.0
## 2526  K.elegans      Lake_Wales   F 8.11   3.68  9.99 13.67   October 2019.0
## 2527  K.elegans      Lake_Wales   F 7.52   3.39  9.67 13.10   October 2019.0
## 2528  K.elegans      Lake_Wales   M 5.27   2.87  8.55 11.31   October 2019.0
## 2529  K.elegans      Lake_Wales   M 5.61   2.98  8.03 11.21   October 2019.0
## 2530  K.elegans      Lake_Wales   M 5.76   3.23  8.37 11.35   October 2019.0
## 2531  K.elegans      Lake_Wales   F 8.25   3.82 10.40 14.32   October 2019.0
## 2532  K.elegans      Lake_Wales   F 6.58   3.02  5.57  9.10   October 2019.0
## 2533  K.elegans      Lake_Wales   M 5.65   3.09  8.35 11.43   October 2019.0
## 2534  K.elegans      Lake_Wales   F 7.92   3.49  9.17 12.87   October 2019.0
## 2535  K.elegans      Lake_Wales   F 6.98   3.88  9.70 13.06   October 2019.0
## 2536  K.elegans        Leesburg   F 6.83   3.44  8.54 12.25   October 2019.0
## 2537  K.elegans        Leesburg   F 8.27   3.71 10.48 14.35   October 2019.0
## 2538  K.elegans        Leesburg   F 8.13   3.71  9.98 13.78   October 2019.0
## 2539  K.elegans        Leesburg   F 8.15   3.47  9.36 13.06   October 2019.0
## 2540  K.elegans        Leesburg   F 8.12   3.79  9.92 13.78   October 2019.0
## 2541  K.elegans        Leesburg   M 5.29   2.55  4.39  7.34   October 2019.0
## 2542  K.elegans        Leesburg   M 5.22   2.80  7.42 10.60   October 2019.0
## 2543  K.elegans        Leesburg   M 5.61   2.81  6.07  9.31   October 2019.0
## 2544  K.elegans        Leesburg   F 7.49   3.25  8.54 11.88   October 2019.0
## 2545  K.elegans        Leesburg   M 5.65   3.06  8.46 11.52   October 2019.0
## 2546  K.elegans        Leesburg   M 5.67   2.94  7.15 10.36   October 2019.0
## 2547  K.elegans        Leesburg   F 8.21   3.90 10.35 13.85   October 2019.0
## 2548  K.elegans        Leesburg   M 5.53   2.99  8.42 11.40   October 2019.0
## 2549  K.elegans        Leesburg   M 5.85   2.99  8.04 11.10   October 2019.0
## 2550  K.elegans        Leesburg   M 5.23   2.75  7.36 10.14   October 2019.0
## 2551  K.elegans        Leesburg   F 8.20   3.66  9.55 13.17   October 2019.0
## 2552  K.elegans        Leesburg   M 5.97   2.69  6.04  8.88   October 2019.0
## 2553  K.elegans        Leesburg   M 5.76   3.28  8.84 11.73   October 2019.0
## 2554  K.elegans        Leesburg   F 7.97   3.49  9.98 13.80   October 2019.0
## 2555  K.elegans        Leesburg   F 7.59   3.65  9.85 12.89   October 2019.0
## 2556  K.elegans        Leesburg   M 6.05   3.12  8.66 11.77   October 2019.0
## 2557  K.elegans        Leesburg   F 8.15   3.62  9.81 13.32   October 2019.0
## 2558  K.elegans        Leesburg   F 8.42   3.91 10.56 14.66   October 2019.0
## 2559  K.elegans        Leesburg   F 7.79   3.69  9.86 13.21   October 2019.0
## 2560  K.elegans        Leesburg   M 5.31   2.88  7.37 10.29   October 2019.0
## 2561  K.elegans        Leesburg   M 6.04   3.25  8.34 11.57   October 2019.0
## 2562 C.corindum North_Key_Largo   F 8.10   3.42  8.88 12.66   October 2019.0
## 2563 C.corindum North_Key_Largo   M 6.23   2.94  7.76 10.94   October 2019.0
## 2564 C.corindum North_Key_Largo   F 8.26   3.77 10.11 13.74   October 2019.0
## 2565 C.corindum North_Key_Largo   F 8.74   3.43  8.99 12.55   October 2019.0
## 2566 C.corindum North_Key_Largo   M 5.92   3.07  8.41 11.38   October 2019.0
## 2567 C.corindum North_Key_Largo   F 8.80   3.51  9.27 12.74   October 2019.0
## 2568 C.corindum North_Key_Largo   F 6.53   3.18  5.89  9.30   October 2019.0
## 2569 C.corindum North_Key_Largo   M 5.79   2.78  7.88 10.34   October 2019.0
## 2570 C.corindum North_Key_Largo   M 6.60   2.89  7.98 11.27   October 2019.0
## 2571 C.corindum North_Key_Largo   M 6.31   3.09  8.15 11.11   October 2019.0
## 2572 C.corindum North_Key_Largo   M 6.62   2.99  8.62 11.57   October 2019.0
## 2573 C.corindum North_Key_Largo   F 8.67   3.52  9.46 13.17   October 2019.0
## 2574 C.corindum North_Key_Largo   M 6.19   2.84  7.69 10.69   October 2019.0
## 2575 C.corindum North_Key_Largo   M 6.06   2.77  5.44  8.43   October 2019.0
## 2576 C.corindum North_Key_Largo   M 6.56   3.06  8.04 10.92   October 2019.0
## 2577 C.corindum North_Key_Largo   F 8.98   3.68  9.06 12.81   October 2019.0
## 2578 C.corindum North_Key_Largo   M 5.42   2.57  4.51  7.69   October 2019.0
## 2579 C.corindum North_Key_Largo   M 5.63   2.77  5.22  8.44   October 2019.0
## 2580 C.corindum North_Key_Largo   M 6.03   3.04  8.25 11.01   October 2019.0
## 2581 C.corindum North_Key_Largo   M 6.22   3.08  8.29 10.99   October 2019.0
## 2582 C.corindum North_Key_Largo   F 6.93   3.07  5.38  8.57   October 2019.0
## 2583 C.corindum North_Key_Largo   M 5.75   2.73  7.82 10.43   October 2019.0
## 2584 C.corindum North_Key_Largo   F 7.51   3.00  8.21 11.68   October 2019.0
## 2585 C.corindum North_Key_Largo   F 6.86   3.06  5.86  9.31   October 2019.0
## 2586 C.corindum North_Key_Largo   F 7.79   3.45  9.24 12.54   October 2019.0
## 2587 C.corindum North_Key_Largo   M 6.21   2.94  6.89  9.95   October 2019.0
## 2588 C.corindum North_Key_Largo   M 5.78   2.81  7.14 10.16   October 2019.0
## 2589 C.corindum North_Key_Largo   F 8.86   3.75  9.60 13.42   October 2019.0
## 2590 C.corindum North_Key_Largo   M 6.46   3.37  8.66 11.77   October 2019.0
## 2591 C.corindum North_Key_Largo   M 5.12   2.35  3.86  6.85   October 2019.0
## 2592 C.corindum North_Key_Largo   F 9.07   3.66  9.48 13.11   October 2019.0
## 2593 C.corindum North_Key_Largo   F 8.57   3.59  8.91 12.73   October 2019.0
## 2594 C.corindum North_Key_Largo   M 5.48   2.92  7.85 10.66   October 2019.0
## 2595 C.corindum North_Key_Largo   M 6.34   2.91  8.08 11.25   October 2019.0
## 2596 C.corindum North_Key_Largo   F 7.66   3.16  8.36 11.67   October 2019.0
## 2597 C.corindum North_Key_Largo   F 8.64   3.99  9.71 13.56   October 2019.0
## 2598 C.corindum North_Key_Largo   F 9.09   3.66  9.75 13.43   October 2019.0
## 2599 C.corindum North_Key_Largo   F 7.79   3.37  8.52 12.15   October 2019.0
## 2600 C.corindum North_Key_Largo   F 8.26   3.48  9.41 13.56   October 2019.0
## 2601 C.corindum North_Key_Largo   F 8.77   3.51  9.26 12.35   October 2019.0
## 2602 C.corindum North_Key_Largo   F 5.83   2.68  4.53  7.45   October 2019.0
## 2603 C.corindum North_Key_Largo   F 9.07   3.67  9.91 13.69   October 2019.0
## 2604 C.corindum North_Key_Largo   F 8.22   3.50  8.73 12.27   October 2019.0
## 2605 C.corindum North_Key_Largo   F 7.37   3.25  6.22  9.77   October 2019.0
## 2606 C.corindum North_Key_Largo   F 8.40   3.46  9.33 12.94   October 2019.0
## 2607 C.corindum North_Key_Largo   F 8.50   3.75  9.46 13.32   October 2019.0
## 2608 C.corindum North_Key_Largo   M 6.03   3.08  7.77 10.65   October 2019.0
## 2609 C.corindum North_Key_Largo   M 6.23   3.10  8.29 11.01   October 2019.0
## 2610 C.corindum North_Key_Largo   F 9.25   3.93 10.08 13.78   October 2019.0
## 2611 C.corindum North_Key_Largo   M 5.56   2.67  7.25 10.31   October 2019.0
## 2612 C.corindum North_Key_Largo   M 6.60   3.23  8.34 11.71   October 2019.0
## 2613 C.corindum North_Key_Largo   M 6.16   3.10  8.34 11.57   October 2019.0
## 2614 C.corindum North_Key_Largo   M 5.81   3.18  7.82 10.83   October 2019.0
## 2615 C.corindum North_Key_Largo   M 6.28   3.11  8.59 11.75   October 2019.0
## 2616 C.corindum North_Key_Largo   F 6.56   3.19  8.32 11.34   October 2019.0
## 2617 C.corindum North_Key_Largo   M 5.95   3.05  8.21 11.33   October 2019.0
## 2618 C.corindum North_Key_Largo   F 8.85   3.30  8.85 12.36   October 2019.0
## 2619 C.corindum North_Key_Largo   M 6.20   3.13  8.35 11.47   October 2019.0
## 2620 C.corindum North_Key_Largo   F 9.24   3.99 10.05 13.42   October 2019.0
## 2621 C.corindum North_Key_Largo   M 6.66   3.23  8.63 11.63   October 2019.0
## 2622 C.corindum North_Key_Largo   F 9.35   3.78 10.19 14.01   October 2019.0
## 2623 C.corindum North_Key_Largo   M 6.44   3.29  8.69 11.64   October 2019.0
## 2624 C.corindum North_Key_Largo   M 5.69   2.88  7.83 10.83   October 2019.0
## 2625 C.corindum North_Key_Largo   M 6.17   3.24  8.40 11.61   October 2019.0
## 2626 C.corindum North_Key_Largo   M 6.49   3.29  8.87 12.41   October 2019.0
## 2627 C.corindum North_Key_Largo   M 6.84   3.32  8.23 11.38   October 2019.0
## 2628 C.corindum North_Key_Largo   F 7.97   3.33  8.09 11.76   October 2019.0
## 2629 C.corindum North_Key_Largo   M 5.39   2.89  7.61 10.10   October 2019.0
## 2630 C.corindum North_Key_Largo   F 8.61   3.68  9.53 13.47   October 2019.0
## 2631 C.corindum North_Key_Largo   M 5.73   2.85  7.25 10.10   October 2019.0
## 2632 C.corindum North_Key_Largo   M 5.94   3.07  7.99 10.94   October 2019.0
## 2633 C.corindum North_Key_Largo   M 5.42   2.89  8.59 11.97   October 2019.0
## 2634 C.corindum North_Key_Largo   M 5.70   2.74  5.23  8.33   October 2019.0
## 2635 C.corindum North_Key_Largo   M 5.66   2.65  4.49  7.30   October 2019.0
## 2636 C.corindum North_Key_Largo   F 6.89   2.95  8.13 11.14   October 2019.0
## 2637 C.corindum North_Key_Largo   M 5.58   2.40  4.38  7.16   October 2019.0
## 2638 C.corindum North_Key_Largo   F 7.98   3.56  9.41 12.68   October 2019.0
## 2639 C.corindum North_Key_Largo   F 8.43   3.32  8.88 12.02   October 2019.0
## 2640 C.corindum North_Key_Largo   M 5.08   2.54  4.11  6.92   October 2019.0
## 2641 C.corindum North_Key_Largo   M 5.41   2.52  5.14  7.79   October 2019.0
## 2642 C.corindum North_Key_Largo   M 5.48   2.64  4.54  7.54   October 2019.0
## 2643 C.corindum  Plantation_Key   F 8.26   3.33  6.94 10.92   October 2019.0
## 2644 C.corindum  Plantation_Key   F 7.17   3.09  6.10  9.65   October 2019.0
## 2645 C.corindum  Plantation_Key   F 8.50   3.67  9.20 12.91   October 2019.0
## 2646 C.corindum  Plantation_Key   M 6.75   3.39  8.71 11.97   October 2019.0
## 2647 C.corindum  Plantation_Key   M 6.01   2.97  7.62 10.51   October 2019.0
## 2648 C.corindum  Plantation_Key   F 7.76   3.44  9.12 12.56   October 2019.0
## 2649 C.corindum  Plantation_Key   M 5.74   2.61  4.39  7.52   October 2019.0
## 2650 C.corindum  Plantation_Key   M 5.52   2.44  4.31  7.19   October 2019.0
## 2651 C.corindum  Plantation_Key   M 5.26   2.64  4.98  7.87   October 2019.0
## 2652 C.corindum  Plantation_Key   M 6.36   3.53  9.33 11.98   October 2019.0
## 2653 C.corindum  Plantation_Key   F 8.10   3.32  8.38 11.68   October 2019.0
## 2654 C.corindum  Plantation_Key   M 5.87   2.70  7.40 10.53   October 2019.0
## 2655 C.corindum  Plantation_Key   M 5.36   2.57  4.27  4.33   October 2019.0
## 2656 C.corindum  Plantation_Key   F 9.08   3.88  9.80 13.68   October 2019.0
## 2657 C.corindum  Plantation_Key   M 5.72   2.97  7.96 11.05   October 2019.0
## 2658  K.elegans     Gainesville   M 6.03   3.36  8.90 12.29  February 2020.0
## 2659  K.elegans     Gainesville   M 6.33   3.26  8.42 11.89  February 2020.0
## 2660  K.elegans     Gainesville   M 5.18   3.05  8.23 11.06  February 2020.0
## 2661  K.elegans     Gainesville   M 5.65   3.05  8.35 11.34  February 2020.0
## 2662  K.elegans     Gainesville   M 5.56   3.10  8.23 11.32  February 2020.0
## 2663  K.elegans     Gainesville   M 6.30   3.33  8.29 11.49  February 2020.0
## 2664  K.elegans     Gainesville   M 5.73   3.10  6.99 10.13  February 2020.0
## 2665  K.elegans     Gainesville   M 5.61   3.31  8.84 11.93  February 2020.0
## 2666  K.elegans     Gainesville   M 5.65   2.99  7.95 11.06  February 2020.0
## 2667  K.elegans     Gainesville   M 5.34   2.80  7.67 10.67  February 2020.0
## 2668  K.elegans     Gainesville   F 6.49   3.22  8.96 12.25  February 2020.0
## 2669  K.elegans     Gainesville   M 5.67   2.97  8.31 11.47  February 2020.0
## 2670  K.elegans     Gainesville   F 8.24   3.92  9.50 13.32  February 2020.0
## 2671  K.elegans     Gainesville   M 6.05   3.11  7.79 10.78  February 2020.0
## 2672  K.elegans     Gainesville   M 5.23   3.08  8.14 11.03  February 2020.0
## 2673  K.elegans     Gainesville   M 5.12   3.03  7.77 10.64  February 2020.0
## 2674  K.elegans     Gainesville   M 5.76   3.42  8.96 12.03  February 2020.0
## 2675  K.elegans     Gainesville   F 6.65   3.52  9.59 12.99  February 2020.0
## 2676  K.elegans     Gainesville   M 6.30   3.16  7.56 10.44  February 2020.0
## 2677  K.elegans     Gainesville   F 5.76   3.20  7.60 10.63  February 2020.0
## 2678  K.elegans     Gainesville   M 5.26   3.02  8.11 11.26  February 2020.0
## 2679  K.elegans     Gainesville   F 5.97   3.55  8.08 11.15  February 2020.0
## 2680  K.elegans     Gainesville   M 5.07   2.90  8.04 10.80  February 2020.0
## 2681  K.elegans     Gainesville   M 6.20   3.31  7.98 11.11  February 2020.0
## 2682  K.elegans     Gainesville   M 6.11   3.14  7.87 10.81  February 2020.0
## 2683  K.elegans     Gainesville   M 6.12   3.27  8.21 11.14  February 2020.0
## 2684  K.elegans     Gainesville   M 5.02   2.83  7.44 10.22  February 2020.0
## 2685  K.elegans     Gainesville   M 5.68   3.13  7.23 10.17  February 2020.0
## 2686  K.elegans     Gainesville   M 6.00   3.38  7.75 10.97  February 2020.0
## 2687  K.elegans     Gainesville   M 6.04   3.22  8.05 11.17  February 2020.0
## 2688  K.elegans     Gainesville   M 5.94   3.34  7.95 11.19  February 2020.0
## 2689  K.elegans     Gainesville   F 7.98   3.54  8.75 12.30  February 2020.0
## 2690  K.elegans     Gainesville   M 6.13   3.44  9.16 12.60  February 2020.0
## 2691  K.elegans     Gainesville   F 5.25   3.07  8.26 11.03  February 2020.0
## 2692  K.elegans     Gainesville   M 5.22   3.16  8.30 11.16  February 2020.0
## 2693  K.elegans     Gainesville   M 5.51   3.08  8.28 11.13  February 2020.0
## 2694  K.elegans       Homestead   M 5.59   2.84  7.50 10.55  February 2020.0
## 2695  K.elegans       Homestead   F 7.47   3.82  9.66 13.31  February 2020.0
## 2696  K.elegans       Homestead   F 7.70   3.53  9.43 12.83  February 2020.0
## 2697  K.elegans       Homestead   F 6.14   2.95  7.81 11.09  February 2020.0
## 2698  K.elegans       Homestead   F 7.74   3.38  9.09 12.86  February 2020.0
## 2699  K.elegans       Homestead   M 5.06   2.75  7.68 10.18  February 2020.0
## 2700  K.elegans       Homestead   M 5.14   2.55  7.08  9.77  February 2020.0
## 2701  K.elegans       Homestead   F 7.83   3.40  8.98 12.67  February 2020.0
## 2702  K.elegans       Homestead   M 6.05   3.37  8.45 11.71  February 2020.0
## 2703  K.elegans       Homestead   M 6.01   3.30  8.34 11.64  February 2020.0
## 2704  K.elegans       Homestead   M 5.39   3.22  7.50 10.79  February 2020.0
## 2705  K.elegans       Homestead   M 5.17   2.69  6.93  9.64  February 2020.0
## 2706  K.elegans       Homestead   M 5.32   2.57  7.47 10.35  February 2020.0
## 2707  K.elegans       Homestead   M 5.20   2.62  6.58  9.22  February 2020.0
## 2708  K.elegans       Homestead   F 7.01   3.25  8.17 11.63  February 2020.0
## 2709  K.elegans       Homestead   F 6.63   3.15  8.18 11.58  February 2020.0
## 2710  K.elegans       Homestead   F 7.09   3.13  8.73 12.08  February 2020.0
## 2711  K.elegans       Homestead   M 5.27   2.55  7.03  9.72  February 2020.0
## 2712  K.elegans       Homestead   M 5.19   2.75  7.24  9.97  February 2020.0
## 2713  K.elegans       Homestead   F 6.98   3.15  8.23 11.59  February 2020.0
## 2714  K.elegans       Homestead   M 5.81   2.80  7.91 10.81  February 2020.0
## 2715  K.elegans       Homestead   F 7.68   3.76 10.40 14.34  February 2020.0
## 2716  K.elegans       Homestead   F 6.21   3.04  8.11 11.33  February 2020.0
## 2717  K.elegans       Homestead   M 5.19   2.61  6.48  9.30  February 2020.0
## 2718  K.elegans       Homestead   M 5.42   2.78  7.72 10.74  February 2020.0
## 2719  K.elegans       Homestead   M 5.49   2.65  7.22 10.07  February 2020.0
## 2720  K.elegans       Homestead   M 5.19   2.68  7.12  9.99  February 2020.0
## 2721  K.elegans       Homestead   M 4.98   2.49  6.24  8.84  February 2020.0
## 2722  K.elegans       Homestead   F 6.48   3.05  5.29  8.97  February 2020.0
## 2723  K.elegans       Homestead   F 5.97   2.98  4.94  8.27  February 2020.0
## 2724  K.elegans       Homestead   M 5.35   2.77  5.25  8.36  February 2020.0
## 2725  K.elegans       Homestead   M 5.13   2.89  7.42 10.08  February 2020.0
## 2726  K.elegans       Homestead   M 5.04   3.25  8.62 11.62  February 2020.0
## 2727  K.elegans       Homestead   M 5.18   2.60  5.93  7.98  February 2020.0
## 2728  K.elegans       Homestead   M 5.54   2.63  4.78  7.88  February 2020.0
## 2729  K.elegans       Homestead   M 5.22   2.51  4.53  7.44  February 2020.0
## 2730  K.elegans       Homestead   F 6.52   3.01  5.06  8.40  February 2020.0
## 2731  K.elegans       Homestead   F 7.26   3.06  8.52 11.96  February 2020.0
## 2732  K.elegans       Homestead   M 5.54   2.84  7.72 10.60  February 2020.0
## 2733  K.elegans       Homestead   M 5.62   3.04  8.29 11.42  February 2020.0
## 2734  K.elegans       Homestead   M 5.40   3.29  8.90 11.88  February 2020.0
## 2735  K.elegans       Homestead   M 5.73   3.11  8.39 11.14  February 2020.0
## 2736 C.corindum       Key_Largo   M 5.88   3.14  8.39 11.68  February 2020.0
## 2737 C.corindum       Key_Largo   F 8.79   3.86 10.07 14.00  February 2020.0
## 2738 C.corindum       Key_Largo   F 6.99   3.69  9.20 13.11  February 2020.0
## 2739 C.corindum       Key_Largo   M 5.25   2.72  7.87 10.31  February 2020.0
## 2740 C.corindum       Key_Largo   M 6.53   3.08  8.08 11.31  February 2020.0
## 2741 C.corindum       Key_Largo   F 6.33   3.33  8.78 12.13  February 2020.0
## 2742 C.corindum       Key_Largo   M 6.18   3.03  8.04 10.94  February 2020.0
## 2743 C.corindum       Key_Largo   M 6.08   2.97  7.80 10.95  February 2020.0
## 2744 C.corindum       Key_Largo   F 7.54   3.41  8.42 11.99  February 2020.0
## 2745 C.corindum       Key_Largo   M 8.73   3.59  9.71 13.59  February 2020.0
## 2746 C.corindum       Key_Largo   F 8.45   3.65  9.24 13.04  February 2020.0
## 2747 C.corindum       Key_Largo   F 7.94   3.27  8.52 11.96  February 2020.0
## 2748 C.corindum       Key_Largo   M 5.63   3.01  8.64 11.48  February 2020.0
## 2749 C.corindum       Key_Largo   M 5.98   3.19  8.32 11.62  February 2020.0
## 2750 C.corindum       Key_Largo   F 7.57   3.33  8.38 12.11  February 2020.0
## 2751 C.corindum       Key_Largo   M 5.57   3.01  8.53 11.47  February 2020.0
## 2752 C.corindum       Key_Largo   F 6.96   3.18  8.31 11.78  February 2020.0
## 2753 C.corindum       Key_Largo   M 6.27   2.96  8.02 11.09  February 2020.0
## 2754 C.corindum       Key_Largo   F 7.70   3.36  9.15 12.65  February 2020.0
## 2755 C.corindum       Key_Largo   M 6.11   3.01  8.43 11.32  February 2020.0
## 2756 C.corindum       Key_Largo   M 5.99   3.16  8.02 11.12  February 2020.0
## 2757 C.corindum       Key_Largo   F 7.98   3.57  8.95 12.72  February 2020.0
## 2758 C.corindum       Key_Largo   M 6.16   3.09  8.38 11.50  February 2020.0
## 2759 C.corindum       Key_Largo   M 6.54   2.99  8.03 11.33  February 2020.0
## 2760 C.corindum       Key_Largo   F 8.10   3.79  9.83 13.54  February 2020.0
## 2761 C.corindum       Key_Largo   M 5.94   3.04  8.70 11.56  February 2020.0
## 2762 C.corindum       Key_Largo   F 7.62   3.14  8.16 11.49  February 2020.0
## 2763 C.corindum       Key_Largo   M 6.22   3.03  8.05 11.38  February 2020.0
## 2764 C.corindum       Key_Largo   M 5.72   3.06  8.40 11.36  February 2020.0
## 2765 C.corindum       Key_Largo   M 5.63   3.02  8.20 11.33  February 2020.0
## 2766 C.corindum       Key_Largo   F 7.92   3.47  9.99 13.92  February 2020.0
## 2767 C.corindum       Key_Largo   M 5.37   3.08  8.01 10.80  February 2020.0
## 2768 C.corindum       Key_Largo   M 6.97   3.18  8.55 11.66  February 2020.0
## 2769 C.corindum       Key_Largo   F 7.51   3.31  9.00 12.27  February 2020.0
## 2770 C.corindum       Key_Largo   F 7.84   3.37  8.61 12.22  February 2020.0
## 2771 C.corindum       Key_Largo   M 6.22   3.13  8.02 11.31  February 2020.0
## 2772 C.corindum       Key_Largo   M 5.98   3.18  8.23 11.41  February 2020.0
## 2773 C.corindum       Key_Largo   M 6.69   3.25  8.53 11.76  February 2020.0
## 2774 C.corindum       Key_Largo   M 5.56   3.35  8.80 12.08  February 2020.0
## 2775 C.corindum       Key_Largo   M 5.35   3.23  8.61 11.71  February 2020.0
## 2776 C.corindum       Key_Largo   M 5.98   3.12  8.40 11.48  February 2020.0
## 2777 C.corindum       Key_Largo   F 6.38   2.80  6.91 10.04  February 2020.0
## 2778 C.corindum       Key_Largo   M 5.40   2.63  7.17  9.73  February 2020.0
## 2779 C.corindum       Key_Largo   M 6.28   3.28  8.80 11.96  February 2020.0
## 2780 C.corindum       Key_Largo   M 5.35   2.52  4.34  7.34  February 2020.0
## 2781 C.corindum       Key_Largo   M 5.70   2.72  4.88  8.20  February 2020.0
## 2782 C.corindum       Key_Largo   M 5.26   2.62  5.42  8.47  February 2020.0
## 2783 C.corindum       Key_Largo   M 5.35   2.59  4.40  7.07  February 2020.0
## 2784 C.corindum       Key_Largo   M 5.81   2.83  5.95  8.68  February 2020.0
## 2785 C.corindum       Key_Largo   M 5.17   2.59  4.40  7.44  February 2020.0
## 2786 C.corindum       Key_Largo   M 5.74   2.74  4.52  7.67  February 2020.0
## 2787 C.corindum       Key_Largo   M 5.48   2.46  3.66  6.68  February 2020.0
## 2788 C.corindum       Key_Largo   F 7.10   3.23  4.80  8.61  February 2020.0
## 2789 C.corindum       Key_Largo   F 6.51   3.00  5.07  8.91  February 2020.0
## 2790 C.corindum       Key_Largo   F 6.67   3.09  5.13  8.69  February 2020.0
## 2791 C.corindum       Key_Largo   M 6.00   2.82  4.76  8.30  February 2020.0
## 2792 C.corindum       Key_Largo   M 5.56   2.69  4.80  7.70  February 2020.0
## 2793 C.corindum       Key_Largo   F 6.27   2.92  5.24  8.78  February 2020.0
## 2794 C.corindum       Key_Largo   F 6.62   2.88  4.79  8.33  February 2020.0
## 2795 C.corindum       Key_Largo   M 5.55   2.50  4.71  7.77  February 2020.0
## 2796 C.corindum       Key_Largo   F 6.48   2.80  4.57  8.15  February 2020.0
## 2797 C.corindum       Key_Largo   M 5.18   2.56  4.05  6.90  February 2020.0
## 2798 C.corindum       Key_Largo   M 5.15   2.40  4.07  6.91  February 2020.0
## 2799 C.corindum       Key_Largo   F 6.88   3.29  5.46  9.24  February 2020.0
## 2800 C.corindum       Key_Largo   M 5.28   2.58  4.92  7.52  February 2020.0
## 2801 C.corindum       Key_Largo   F 7.11   2.88  4.95  8.65  February 2020.0
## 2802 C.corindum       Key_Largo   F 6.85   3.16  5.24  8.65  February 2020.0
## 2803 C.corindum       Key_Largo   F 8.83   3.54  9.23 12.92  February 2020.0
## 2804 C.corindum       Key_Largo   F 6.65   3.11  5.37  8.76  February 2020.0
## 2805 C.corindum       Key_Largo   M 5.74   2.65  4.57  7.38  February 2020.0
## 2806 C.corindum       Key_Largo   M 5.81   2.84  5.01  8.14  February 2020.0
## 2807 C.corindum       Key_Largo   M 5.68   2.73  4.57  7.67  February 2020.0
## 2808 C.corindum       Key_Largo   F 7.22   3.60  9.21 12.56  February 2020.0
## 2809 C.corindum       Key_Largo   F 6.43   2.95  4.87  8.47  February 2020.0
## 2810 C.corindum       Key_Largo   M 6.09   2.92  5.42  8.52  February 2020.0
## 2811 C.corindum       Key_Largo   M 6.48   3.18  8.06 11.20  February 2020.0
## 2812  K.elegans     Lake_Placid   M 5.46   3.00  8.23 11.57  February 2020.0
## 2813  K.elegans     Lake_Placid   F 8.31   3.71  9.77 13.61  February 2020.0
## 2814  K.elegans     Lake_Placid   F 6.44   3.38  9.42 12.99  February 2020.0
## 2815  K.elegans     Lake_Placid   M 5.85   2.98  8.35 11.53  February 2020.0
## 2816  K.elegans     Lake_Placid   M 5.31   2.96  7.77 10.89  February 2020.0
## 2817  K.elegans     Lake_Placid   F 6.06   3.20  9.63 12.74  February 2020.0
## 2818  K.elegans     Lake_Placid   F 6.55   3.27  9.44 12.93  February 2020.0
## 2819  K.elegans     Lake_Placid   F 6.38   3.46  9.10 12.75  February 2020.0
## 2820  K.elegans     Lake_Placid   M 4.77   2.62  6.73  9.41  February 2020.0
## 2821  K.elegans     Lake_Placid   F 7.38   3.40  9.21 12.73  February 2020.0
## 2822  K.elegans     Lake_Placid   M 5.88   3.05  9.00 12.01  February 2020.0
## 2823  K.elegans     Lake_Placid   M 5.73   3.17  9.12 11.97  February 2020.0
## 2824  K.elegans     Lake_Placid   M 5.41   3.01  8.68 11.48  February 2020.0
## 2825  K.elegans     Lake_Placid   M 5.41   2.99  8.30 11.21  February 2020.0
## 2826  K.elegans     Lake_Placid   F 8.01   3.46  9.39 12.63  February 2020.0
## 2827  K.elegans     Lake_Placid   M 5.18   2.87  7.29 10.06  February 2020.0
## 2828  K.elegans     Lake_Placid   F 6.44   3.36  8.43 11.86  February 2020.0
## 2829  K.elegans     Lake_Placid   M 5.17   2.76  7.84 10.65  February 2020.0
## 2830  K.elegans     Lake_Placid   M 5.56   3.10  8.99 12.33  February 2020.0
## 2831  K.elegans     Lake_Placid   M 5.58   2.84  7.80 10.96  February 2020.0
## 2832  K.elegans     Lake_Placid   F 6.98   3.71  9.85 13.50  February 2020.0
## 2833  K.elegans     Lake_Placid   M 5.43   2.88  7.66 10.56  February 2020.0
## 2834  K.elegans     Lake_Placid   M 5.37   2.84  7.73 10.82  February 2020.0
## 2835  K.elegans     Lake_Placid   F 7.92   3.37  9.53 13.16  February 2020.0
## 2836  K.elegans     Lake_Placid   F 6.96   3.59  9.18 12.80  February 2020.0
## 2837  K.elegans     Lake_Placid   M 5.56   2.96  7.91 10.89  February 2020.0
## 2838  K.elegans     Lake_Placid   F 7.61   3.44  9.09 12.74  February 2020.0
## 2839  K.elegans     Lake_Placid   F 6.51   3.36  8.88 12.00  February 2020.0
## 2840  K.elegans     Lake_Placid   M 5.14   2.75  6.93  9.83  February 2020.0
## 2841  K.elegans     Lake_Placid   M 5.45   2.95  7.64 10.72  February 2020.0
## 2842  K.elegans     Lake_Placid   M 5.72   3.00  8.36 11.56  February 2020.0
## 2843  K.elegans     Lake_Placid   M 5.46   2.98  7.47 10.46  February 2020.0
## 2844  K.elegans     Lake_Placid   M 5.24   3.14  8.71 11.91  February 2020.0
## 2845  K.elegans     Lake_Placid   M 5.26   2.93  7.93 10.82  February 2020.0
## 2846  K.elegans     Lake_Placid   F 6.88   3.50  9.48 12.92  February 2020.0
## 2847  K.elegans     Lake_Placid   M 5.37   2.85  7.63 10.52  February 2020.0
## 2848  K.elegans     Lake_Placid   F 7.67   3.68  9.78 13.35  February 2020.0
## 2849  K.elegans     Lake_Placid   M 4.97   2.72  7.62 10.18  February 2020.0
## 2850  K.elegans     Lake_Placid   M 5.34   2.85  8.15 11.03  February 2020.0
## 2851  K.elegans     Lake_Placid   M 5.14   2.73  6.58  9.23  February 2020.0
## 2852  K.elegans     Lake_Placid   F 8.05   3.76 10.18 13.84  February 2020.0
## 2853  K.elegans     Lake_Placid   M 5.30   3.01  8.36 11.44  February 2020.0
## 2854  K.elegans     Lake_Placid   M 6.31   3.38  8.83 11.96  February 2020.0
## 2855  K.elegans      Lake_Wales   M 5.41   2.98  8.03 11.18  February 2020.0
## 2856  K.elegans      Lake_Wales   F 7.75   3.58  9.34 13.26  February 2020.0
## 2857  K.elegans      Lake_Wales   M 5.46   2.90  8.21 11.14  February 2020.0
## 2858  K.elegans      Lake_Wales   F 7.44   3.33  8.98 12.36  February 2020.0
## 2859  K.elegans      Lake_Wales   F 7.50   3.28  8.63 12.08  February 2020.0
## 2860  K.elegans      Lake_Wales   F 6.99   3.39  8.98 12.65  February 2020.0
## 2861  K.elegans      Lake_Wales   F 7.59   3.31  9.21 12.82  February 2020.0
## 2862  K.elegans      Lake_Wales   M 5.58   2.89  7.56 10.97  February 2020.0
## 2863  K.elegans      Lake_Wales   M 5.31   2.68  7.65 10.44  February 2020.0
## 2864  K.elegans      Lake_Wales   F 6.62   3.60  9.83 13.61  February 2020.0
## 2865  K.elegans      Lake_Wales   M 5.27   2.74  8.04 10.94  February 2020.0
## 2866  K.elegans      Lake_Wales   M 5.73   2.99  7.88 11.13  February 2020.0
## 2867  K.elegans      Lake_Wales   M 5.96   3.37  8.93 12.11  February 2020.0
## 2868  K.elegans      Lake_Wales   F 7.02   3.53  9.35 12.62  February 2020.0
## 2869  K.elegans      Lake_Wales   F 7.16   3.37  9.22 12.66  February 2020.0
## 2870  K.elegans      Lake_Wales   M 5.54   3.14  8.32 11.48  February 2020.0
## 2871  K.elegans      Lake_Wales   M 5.16   3.04  7.99 11.03  February 2020.0
## 2872  K.elegans      Lake_Wales   M 5.71   3.24  8.09 11.05  February 2020.0
## 2873  K.elegans      Lake_Wales   F 7.25   3.85  9.90 13.48  February 2020.0
## 2874  K.elegans      Lake_Wales   M 5.47   3.21  8.33 11.21  February 2020.0
## 2875  K.elegans      Lake_Wales   M 6.26   2.89  8.07 10.93  February 2020.0
## 2876  K.elegans      Lake_Wales   F 6.44   3.63  9.21 12.82  February 2020.0
## 2877  K.elegans      Lake_Wales   M 5.40   2.90  8.08 11.02  February 2020.0
## 2878  K.elegans      Lake_Wales   F 7.60   3.44  9.21 12.52  February 2020.0
## 2879  K.elegans      Lake_Wales   M 5.05   2.79  7.91 10.82  February 2020.0
## 2880  K.elegans      Lake_Wales   F 6.44   3.68  9.52 12.91  February 2020.0
## 2881  K.elegans      Lake_Wales   F 7.58   3.36  9.24 12.63  February 2020.0
## 2882  K.elegans      Lake_Wales   M 5.54   3.00  7.98 10.91  February 2020.0
## 2883  K.elegans      Lake_Wales   M 5.29   2.67  7.47 10.23  February 2020.0
## 2884  K.elegans      Lake_Wales   F 7.28   3.32  9.46 12.61  February 2020.0
## 2885  K.elegans      Lake_Wales   F 7.68   3.28  9.13 12.48  February 2020.0
## 2886  K.elegans      Lake_Wales   F 6.61   3.59  9.57 12.89  February 2020.0
## 2887  K.elegans      Lake_Wales   M 5.56   2.85  7.61 10.46  February 2020.0
## 2888  K.elegans      Lake_Wales   M 5.67   2.63  4.54  7.41  February 2020.0
## 2889  K.elegans      Lake_Wales   F 6.74   3.23  8.77 11.70  February 2020.0
## 2890  K.elegans      Lake_Wales   M 5.85   3.09  8.13 11.21  February 2020.0
## 2891  K.elegans      Lake_Wales   M 5.87   3.05  8.64 11.58  February 2020.0
## 2892  K.elegans      Lake_Wales   M 5.51   2.79  7.19  9.69  February 2020.0
## 2893  K.elegans      Lake_Wales   M 7.41   3.36  9.13 12.34  February 2020.0
## 2894  K.elegans      Lake_Wales   M 5.73   3.13  8.61 11.54  February 2020.0
## 2895  K.elegans      Lake_Wales   F 6.47   3.54  9.08 12.37  February 2020.0
## 2896  K.elegans      Lake_Wales   M 5.48   2.98  8.32 11.23  February 2020.0
## 2897  K.elegans      Lake_Wales   M 5.22   2.87  7.38 10.01  February 2020.0
## 2898  K.elegans      Lake_Wales   M 5.37   2.88  8.24 10.93  February 2020.0
## 2899  K.elegans      Lake_Wales   F 7.85   3.60  9.49 12.76  February 2020.0
## 2900  K.elegans      Lake_Wales   M 5.02   2.68  8.13 10.86  February 2020.0
## 2901  K.elegans      Lake_Wales   F 6.70   3.35  8.00 11.37  February 2020.0
## 2902  K.elegans      Lake_Wales   F 6.50   3.49  8.99 12.20  February 2020.0
## 2903  K.elegans      Lake_Wales   M 5.64   3.04  8.22 10.85  February 2020.0
## 2904  K.elegans      Lake_Wales   M 5.04   2.86  7.87 10.61  February 2020.0
## 2905  K.elegans        Leesburg   M 5.32   2.94  7.39 10.85  February 2020.0
## 2906  K.elegans        Leesburg   M 5.89   3.32  8.37 11.70  February 2020.0
## 2907  K.elegans        Leesburg   M 5.11   2.81  7.98 10.98  February 2020.0
## 2908  K.elegans        Leesburg   M 5.42   2.98  8.49 11.19  February 2020.0
## 2909  K.elegans        Leesburg   M 5.59   2.99  7.82 11.02  February 2020.0
## 2910  K.elegans        Leesburg   M 5.35   2.92  7.45 10.24  February 2020.0
## 2911  K.elegans        Leesburg   F 6.14   3.66  8.79 12.14  February 2020.0
## 2912  K.elegans        Leesburg   F 6.17   2.97  8.04 11.35  February 2020.0
## 2913  K.elegans        Leesburg   F 6.07   3.45  8.93 12.33  February 2020.0
## 2914  K.elegans        Leesburg   M 5.99   3.22  8.59 11.72  February 2020.0
## 2915  K.elegans        Leesburg   M 5.14   2.72  6.94  9.98  February 2020.0
## 2916  K.elegans        Leesburg   M 5.72   3.10  8.59 11.72  February 2020.0
## 2917  K.elegans        Leesburg   F 6.47   3.50  9.35 12.66  February 2020.0
## 2918  K.elegans        Leesburg   M 5.54   2.94  8.29 11.12  February 2020.0
## 2919  K.elegans        Leesburg   F 6.36   2.74  5.09  8.22  February 2020.0
## 2920  K.elegans        Leesburg   F 6.41   3.00  7.97 11.17  February 2020.0
## 2921  K.elegans        Leesburg   M 5.83   3.26  8.21 11.29  February 2020.0
## 2922  K.elegans        Leesburg   M 4.87   2.96  7.94 10.68  February 2020.0
## 2923  K.elegans        Leesburg   M 5.53   3.19  8.56 11.64  February 2020.0
## 2924  K.elegans        Leesburg   M 5.51   3.31  8.82 12.06  February 2020.0
## 2925  K.elegans        Leesburg   M 5.05   2.89  8.15 10.94  February 2020.0
## 2926  K.elegans        Leesburg   M 5.00   2.99  8.36 11.05  February 2020.0
## 2927  K.elegans        Leesburg   F 6.54   3.46  9.50 13.09  February 2020.0
## 2928  K.elegans        Leesburg   F 6.31   3.47  9.17 12.53  February 2020.0
## 2929  K.elegans        Leesburg   M 5.60   3.10  7.95 11.32  February 2020.0
## 2930  K.elegans        Leesburg   F 7.62   3.37  8.17 11.62  February 2020.0
## 2931  K.elegans        Leesburg   M 5.19   2.88  4.99  7.88  February 2020.0
## 2932  K.elegans        Leesburg   M 5.40   3.05  8.11 10.98  February 2020.0
## 2933  K.elegans        Leesburg   M 4.99   2.96  7.30 10.28  February 2020.0
## 2934 C.corindum North_Key_Largo   M 6.03   2.90  7.68 10.67  February 2020.0
## 2935 C.corindum North_Key_Largo   M 5.75   2.94  8.30 11.40  February 2020.0
## 2936 C.corindum North_Key_Largo   M 5.44   2.97  7.66 10.67  February 2020.0
## 2937 C.corindum North_Key_Largo   M 6.07   3.24  8.40 11.40  February 2020.0
## 2938 C.corindum North_Key_Largo   F 8.03   3.42  9.08 12.77  February 2020.0
## 2939 C.corindum North_Key_Largo   F 7.15   3.01  7.91 11.29  February 2020.0
## 2940 C.corindum North_Key_Largo   F 7.58   3.55  8.72 12.28  February 2020.0
## 2941 C.corindum North_Key_Largo   M 5.50   2.90  7.57 10.73  February 2020.0
## 2942 C.corindum North_Key_Largo   F 6.24   2.98  7.58 10.98  February 2020.0
## 2943 C.corindum North_Key_Largo   F 7.56   3.26  8.18 11.71  February 2020.0
## 2944 C.corindum North_Key_Largo   F 8.12   3.25  8.28 11.71  February 2020.0
## 2945 C.corindum North_Key_Largo   F 8.17   3.54  9.33 12.79  February 2020.0
## 2946 C.corindum North_Key_Largo   M 6.05   3.38  8.39 11.52  February 2020.0
## 2947 C.corindum North_Key_Largo   M 6.21   3.25  8.58 11.64  February 2020.0
## 2948 C.corindum North_Key_Largo   M 5.99   2.99  7.55 10.80  February 2020.0
## 2949 C.corindum North_Key_Largo   M 5.95   3.10  8.20 11.48  February 2020.0
## 2950 C.corindum North_Key_Largo   F 7.44   3.07  7.86 11.20  February 2020.0
## 2951 C.corindum North_Key_Largo   M 5.72   2.82  7.46 10.43  February 2020.0
## 2952 C.corindum North_Key_Largo   F 7.85   3.73  9.71 13.20  February 2020.0
## 2953 C.corindum North_Key_Largo   F 7.19   3.32  8.56 12.21  February 2020.0
## 2954 C.corindum North_Key_Largo   M 6.30   3.04  8.07 11.40  February 2020.0
## 2955 C.corindum North_Key_Largo   F 8.18   3.48  8.57 12.28  February 2020.0
## 2956 C.corindum North_Key_Largo   F 8.45   3.95 10.00 14.16  February 2020.0
## 2957 C.corindum North_Key_Largo   M 6.23   2.97  7.76 10.83  February 2020.0
## 2958 C.corindum North_Key_Largo   M 5.58   2.77  7.22 10.02  February 2020.0
## 2959 C.corindum North_Key_Largo   M 6.41   3.25  8.62 11.65  February 2020.0
## 2960 C.corindum North_Key_Largo   M 5.67   2.98  7.01 10.08  February 2020.0
## 2961 C.corindum North_Key_Largo   M 6.13   2.99  7.43 10.56  February 2020.0
## 2962 C.corindum North_Key_Largo   M 6.44   3.09  8.24 11.42  February 2020.0
## 2963 C.corindum North_Key_Largo   M 5.91   3.22  8.43 11.41  February 2020.0
## 2964 C.corindum North_Key_Largo   F 8.97   3.78 10.05 13.61  February 2020.0
## 2965 C.corindum North_Key_Largo   M 5.94   2.92  7.98 10.85  February 2020.0
## 2966 C.corindum North_Key_Largo   F 9.02   3.71  9.47 13.43  February 2020.0
## 2967 C.corindum North_Key_Largo   M 5.93   2.94  8.16 11.08  February 2020.0
## 2968 C.corindum North_Key_Largo   F 8.29   3.64  9.99 13.81  February 2020.0
## 2969 C.corindum North_Key_Largo   F 8.44   3.70  9.31 13.44  February 2020.0
## 2970 C.corindum North_Key_Largo   F 8.64   3.27  8.90 12.61  February 2020.0
## 2971 C.corindum North_Key_Largo   F 7.58   3.32  8.58 12.21  February 2020.0
## 2972 C.corindum North_Key_Largo   M 6.07   3.15  8.18 11.15  February 2020.0
## 2973 C.corindum North_Key_Largo   M 6.01   3.17  8.18 11.15  February 2020.0
## 2974 C.corindum North_Key_Largo   M 5.75   2.92  7.78 10.93  February 2020.0
## 2975 C.corindum North_Key_Largo   F 9.08   3.71  9.68 13.81  February 2020.0
## 2976 C.corindum North_Key_Largo   F 6.91   3.02  7.75 11.25  February 2020.0
## 2977 C.corindum North_Key_Largo   F 9.87   4.14 10.47 14.34  February 2020.0
## 2978 C.corindum North_Key_Largo   M 5.78   2.83  7.38 10.46  February 2020.0
## 2979 C.corindum North_Key_Largo   M 6.09   2.90  8.08 10.86  February 2020.0
## 2980 C.corindum North_Key_Largo   M 6.88   3.16  8.84 12.06  February 2020.0
## 2981 C.corindum North_Key_Largo   M 5.42   2.70  7.20 10.15  February 2020.0
## 2982 C.corindum North_Key_Largo   F 8.04   3.32  8.36 11.72  February 2020.0
## 2983 C.corindum North_Key_Largo   F 7.41   3.79  9.98 13.66  February 2020.0
## 2984 C.corindum North_Key_Largo   F 7.61   3.82  9.80 13.86  February 2020.0
## 2985 C.corindum North_Key_Largo   M 5.72   3.06  7.80 10.72  February 2020.0
## 2986 C.corindum North_Key_Largo   M 6.85   3.08  8.92 11.99  February 2020.0
## 2987 C.corindum North_Key_Largo   M 5.34   2.93  7.63 10.63  February 2020.0
## 2988 C.corindum North_Key_Largo   F 7.90   3.33  8.50 12.37  February 2020.0
## 2989 C.corindum North_Key_Largo   M 6.39   3.18  8.41 11.86  February 2020.0
## 2990 C.corindum North_Key_Largo   F 8.17   3.48  9.37 13.09  February 2020.0
## 2991 C.corindum North_Key_Largo   M 5.78   2.94  7.97 11.14  February 2020.0
## 2992 C.corindum North_Key_Largo   M 5.94   2.89  7.83 11.00  February 2020.0
## 2993 C.corindum North_Key_Largo   M 6.40   3.08  8.37 11.69  February 2020.0
## 2994 C.corindum North_Key_Largo   F 6.39   2.88  7.56 10.70  February 2020.0
## 2995 C.corindum North_Key_Largo   F 7.35   3.74  9.77 13.20  February 2020.0
## 2996 C.corindum North_Key_Largo   M 5.58   3.11  8.65 11.52  February 2020.0
## 2997 C.corindum North_Key_Largo   M 6.17   2.61  8.01 10.53  February 2020.0
## 2998 C.corindum North_Key_Largo   F 8.51   3.67  9.15 12.95  February 2020.0
## 2999 C.corindum North_Key_Largo   M 5.55   2.77  6.58  9.52  February 2020.0
## 3000 C.corindum North_Key_Largo   M 5.42   2.82  7.60 10.59  February 2020.0
## 3001 C.corindum North_Key_Largo   M 6.16   3.20  8.37 11.71  February 2020.0
## 3002 C.corindum North_Key_Largo   M 6.15   3.04  8.24 11.48  February 2020.0
## 3003 C.corindum North_Key_Largo   F 7.99   3.50  8.71 12.31  February 2020.0
## 3004 C.corindum North_Key_Largo   M 6.38   2.99  7.66 10.66  February 2020.0
## 3005 C.corindum North_Key_Largo   M 5.77   2.91  7.40 10.49  February 2020.0
## 3006 C.corindum North_Key_Largo   M 6.35   3.17  8.53 11.52  February 2020.0
## 3007 C.corindum North_Key_Largo   M 5.95   3.11  8.26 11.56  February 2020.0
## 3008 C.corindum North_Key_Largo   M 5.79   3.06  8.16 11.14  February 2020.0
## 3009 C.corindum North_Key_Largo   F 8.15   4.04 10.52 14.50  February 2020.0
## 3010 C.corindum North_Key_Largo   F 9.17   3.73  9.38 12.86  February 2020.0
## 3011 C.corindum North_Key_Largo   F 8.28   3.46  8.71 12.32  February 2020.0
## 3012 C.corindum North_Key_Largo   M 6.41   3.02  8.13 11.12  February 2020.0
## 3013 C.corindum North_Key_Largo   M 6.67   3.20  8.46 11.40  February 2020.0
## 3014 C.corindum North_Key_Largo   M 5.71   3.34  8.49 11.61  February 2020.0
## 3015 C.corindum North_Key_Largo   F 9.44   4.00 10.17 14.13  February 2020.0
## 3016 C.corindum North_Key_Largo   F 6.90   3.05  7.79 11.22  February 2020.0
## 3017 C.corindum North_Key_Largo   F 8.04   3.53  9.18 12.63  February 2020.0
## 3018 C.corindum North_Key_Largo   F 8.49   3.25  8.52 12.17  February 2020.0
## 3019 C.corindum North_Key_Largo   F 8.54   3.50  9.35 13.05  February 2020.0
## 3020 C.corindum North_Key_Largo   M 5.97   2.88  7.99 10.86  February 2020.0
## 3021 C.corindum North_Key_Largo   M 5.84   2.87  7.55 10.62  February 2020.0
## 3022 C.corindum North_Key_Largo   M 5.78   2.85  7.10 10.18  February 2020.0
## 3023 C.corindum North_Key_Largo   F 8.32   3.39  9.09 12.47  February 2020.0
## 3024 C.corindum North_Key_Largo   M 5.54   3.01  7.68 10.57  February 2020.0
## 3025 C.corindum North_Key_Largo   F 7.84   3.49  9.01 12.59  February 2020.0
## 3026 C.corindum North_Key_Largo   M 6.00   3.30  7.35 10.71  February 2020.0
## 3027 C.corindum North_Key_Largo   F 7.53   3.27  8.13 12.13  February 2020.0
## 3028 C.corindum North_Key_Largo   M 6.05   3.03  8.31 11.52  February 2020.0
## 3029 C.corindum North_Key_Largo   F 6.84   3.02  6.00  9.41  February 2020.0
## 3030 C.corindum North_Key_Largo   M 6.08   3.16  8.42 11.66  February 2020.0
## 3031 C.corindum North_Key_Largo   M 5.47   2.92  8.29 11.29  February 2020.0
## 3032 C.corindum North_Key_Largo   M 5.84   2.98  7.83 10.88  February 2020.0
## 3033 C.corindum North_Key_Largo   M 6.16   3.01  7.88 10.90  February 2020.0
## 3034 C.corindum North_Key_Largo   M 5.51   2.75  7.11  9.94  February 2020.0
## 3035 C.corindum North_Key_Largo   M 6.43   3.27  8.85 11.84  February 2020.0
## 3036 C.corindum North_Key_Largo   M 5.47   2.72  6.73  9.77  February 2020.0
## 3037 C.corindum North_Key_Largo   M 5.69   2.94  7.27 10.38  February 2020.0
## 3038 C.corindum North_Key_Largo   M 6.02   2.76  7.12 10.08  February 2020.0
## 3039 C.corindum North_Key_Largo   M 5.98   2.76  7.15 10.13  February 2020.0
## 3040 C.corindum North_Key_Largo   M 5.24   2.49  6.06  8.89  February 2020.0
## 3041 C.corindum North_Key_Largo   M 5.52   2.64  7.17  9.95  February 2020.0
## 3042 C.corindum North_Key_Largo   F 8.50   3.28  8.65 12.35  February 2020.0
## 3043 C.corindum North_Key_Largo   M 6.08   2.98  7.63 10.70  February 2020.0
## 3044 C.corindum North_Key_Largo   M 5.77   2.77  7.30 10.22  February 2020.0
## 3045 C.corindum North_Key_Largo   M 5.99   3.26  8.25 11.39  February 2020.0
## 3046 C.corindum North_Key_Largo   M 6.12   3.10  8.56 11.66  February 2020.0
## 3047 C.corindum North_Key_Largo   M 5.78   3.00  8.35 11.27  February 2020.0
## 3048 C.corindum North_Key_Largo   M 6.07   2.82  7.53 10.73  February 2020.0
## 3049 C.corindum North_Key_Largo   M 6.56   2.91  8.02 11.22  February 2020.0
## 3050 C.corindum North_Key_Largo   M 6.09   3.08  8.05 11.21  February 2020.0
## 3051 C.corindum North_Key_Largo   F 7.02   3.06  7.35 10.48  February 2020.0
## 3052 C.corindum North_Key_Largo   M 6.65   3.31  8.30 11.50  February 2020.0
## 3053 C.corindum North_Key_Largo   M 5.83   2.69  7.11 10.03  February 2020.0
## 3054 C.corindum North_Key_Largo   F 7.32   3.05  8.34 11.68  February 2020.0
## 3055 C.corindum North_Key_Largo   M 6.17   2.91  7.57 10.44  February 2020.0
## 3056 C.corindum North_Key_Largo   M 6.03   3.05  8.01 11.00  February 2020.0
## 3057 C.corindum North_Key_Largo   M 5.81   2.78  7.32 10.12  February 2020.0
## 3058 C.corindum North_Key_Largo   F 6.35   3.03  7.38 10.93  February 2020.0
## 3059 C.corindum North_Key_Largo   F 7.51   3.09  7.91 11.42  February 2020.0
## 3060 C.corindum North_Key_Largo   M 6.13   3.22  8.68 11.83  February 2020.0
## 3061 C.corindum North_Key_Largo   M 6.59   2.96  7.87 11.05  February 2020.0
## 3062 C.corindum North_Key_Largo   M 5.88   3.07  8.12 11.04  February 2020.0
## 3063 C.corindum North_Key_Largo   M 6.30   2.99  7.93 11.11  February 2020.0
## 3064 C.corindum North_Key_Largo   M 5.93   3.03  7.89 10.85  February 2020.0
## 3065 C.corindum North_Key_Largo   M 5.92   3.35  8.93 12.04  February 2020.0
## 3066 C.corindum North_Key_Largo   F 6.79   3.61  9.77 13.39  February 2020.0
## 3067 C.corindum North_Key_Largo   M 5.68   2.78  7.72 10.29  February 2020.0
## 3068 C.corindum North_Key_Largo   M 6.23   3.34  8.89 12.04  February 2020.0
## 3069 C.corindum North_Key_Largo   M 5.86   2.91  7.99 11.06  February 2020.0
## 3070 C.corindum North_Key_Largo   M 5.56   3.24  8.16 11.42  February 2020.0
## 3071 C.corindum North_Key_Largo   M 6.29   2.90  7.78 10.89  February 2020.0
## 3072 C.corindum North_Key_Largo   M 5.33   2.95  7.70 10.75  February 2020.0
## 3073 C.corindum North_Key_Largo   M 5.97   2.92  8.10 10.84  February 2020.0
## 3074 C.corindum North_Key_Largo   F 7.71   3.47  8.42 11.78  February 2020.0
## 3075 C.corindum North_Key_Largo   F 8.23   3.76  9.40 13.00  February 2020.0
## 3076 C.corindum North_Key_Largo   M 6.06   2.83  5.88  8.77  February 2020.0
## 3077 C.corindum North_Key_Largo   F 8.59   3.68  9.92 13.59  February 2020.0
## 3078 C.corindum North_Key_Largo   M 5.18   2.60  5.45  8.60  February 2020.0
## 3079 C.corindum North_Key_Largo   M 5.50   3.02  8.18 11.11  February 2020.0
## 3080 C.corindum North_Key_Largo   M 5.51   2.66  5.05  7.74  February 2020.0
## 3081 C.corindum North_Key_Largo   M 5.64   2.90  4.80  7.98  February 2020.0
## 3082 C.corindum North_Key_Largo   F 6.88   3.23  5.25  9.09  February 2020.0
## 3083 C.corindum North_Key_Largo   M 5.50   2.75  5.56  8.52  February 2020.0
## 3084 C.corindum North_Key_Largo   F 8.79   3.65  9.15 12.49  February 2020.0
## 3085 C.corindum North_Key_Largo   F 6.14   2.82  4.19  7.63  February 2020.0
## 3086 C.corindum North_Key_Largo   F 6.10   2.94  4.68  8.01  February 2020.0
## 3087 C.corindum North_Key_Largo   F 5.59   2.56  4.49  7.42  February 2020.0
## 3088 C.corindum North_Key_Largo   F 7.76   3.44  6.22 10.32  February 2020.0
## 3089 C.corindum North_Key_Largo   F 6.55   2.91  4.62  7.93  February 2020.0
## 3090 C.corindum North_Key_Largo   M 4.90   2.24  3.67  6.59  February 2020.0
## 3091 C.corindum North_Key_Largo   M 5.76   2.86  7.33 10.26  February 2020.0
## 3092 C.corindum North_Key_Largo   F 8.53   3.58  8.92 12.60  February 2020.0
## 3093 C.corindum North_Key_Largo   F 8.21   3.60  9.06 12.65  February 2020.0
## 3094 C.corindum North_Key_Largo   M 5.89   3.00  7.67 10.66  February 2020.0
## 3095 C.corindum North_Key_Largo   M 5.36   2.69  7.59 10.46  February 2020.0
## 3096 C.corindum North_Key_Largo   M 5.86   2.82  4.69  7.99  February 2020.0
## 3097 C.corindum North_Key_Largo   F 6.22   2.99  4.84  8.34  February 2020.0
## 3098 C.corindum North_Key_Largo   M 5.14   2.48  4.55  7.11  February 2020.0
## 3099 C.corindum North_Key_Largo   M 5.75   2.65  4.47  7.64  February 2020.0
## 3100 C.corindum North_Key_Largo   F 7.97   3.67  9.36 12.93  February 2020.0
## 3101 C.corindum North_Key_Largo   M 6.40   3.34  7.67 10.86  February 2020.0
## 3102 C.corindum North_Key_Largo   M 5.41   3.18  8.00 11.02  February 2020.0
## 3103 C.corindum North_Key_Largo   F 8.51   3.69  9.63 13.47  February 2020.0
## 3104 C.corindum North_Key_Largo   M 5.99   3.03  5.14  8.48  February 2020.0
## 3105 C.corindum North_Key_Largo   M 5.51   2.48  4.24  7.19  February 2020.0
## 3106 C.corindum North_Key_Largo   F 6.85   2.91  4.76  8.20  February 2020.0
## 3107 C.corindum North_Key_Largo   F 6.44   2.75  4.20  7.74  February 2020.0
## 3108 C.corindum North_Key_Largo   M 5.41   2.41  4.45  7.56  February 2020.0
## 3109 C.corindum North_Key_Largo   M 5.91   2.85  5.43  8.28  February 2020.0
## 3110 C.corindum North_Key_Largo   F 6.07   2.78  4.41  7.88  February 2020.0
## 3111 C.corindum North_Key_Largo   M 5.64   2.72  4.73  7.72  February 2020.0
## 3112 C.corindum North_Key_Largo   F 7.51   2.99  5.07  8.70  February 2020.0
## 3113 C.corindum North_Key_Largo   M 5.36   2.44  3.71  6.51  February 2020.0
## 3114 C.corindum North_Key_Largo   F 5.82   2.56  3.86  6.93  February 2020.0
## 3115 C.corindum North_Key_Largo   F 5.88   2.65  4.14  7.31  February 2020.0
## 3116 C.corindum North_Key_Largo   M 5.47   2.41  4.22  6.97  February 2020.0
## 3117 C.corindum North_Key_Largo   M 5.26   2.39  3.66  6.57  February 2020.0
## 3118 C.corindum North_Key_Largo   M 5.31   2.58  4.05  7.11  February 2020.0
## 3119 C.corindum North_Key_Largo   F 6.65   3.19  5.34  9.01  February 2020.0
## 3120 C.corindum North_Key_Largo   M 5.42   2.43  5.10  7.86  February 2020.0
## 3121 C.corindum North_Key_Largo   M 5.64   2.71  4.48  7.30  February 2020.0
## 3122 C.corindum North_Key_Largo   M 5.47   2.85  4.55  7.61  February 2020.0
## 3123 C.corindum North_Key_Largo   F 7.25   3.21  5.47  9.28  February 2020.0
## 3124 C.corindum North_Key_Largo   F 6.07   2.80  4.26  7.67  February 2020.0
## 3125 C.corindum North_Key_Largo   M 5.72   2.73  4.95  8.15  February 2020.0
## 3126 C.corindum North_Key_Largo   M 5.46   2.58  4.52  7.80  February 2020.0
## 3127 C.corindum North_Key_Largo   M 5.31   2.52  4.20  7.30  February 2020.0
## 3128 C.corindum North_Key_Largo   F 6.89   3.03  5.29  9.03  February 2020.0
## 3129 C.corindum North_Key_Largo   F 6.51   3.09  4.87  8.15  February 2020.0
## 3130 C.corindum North_Key_Largo   M 5.65   2.68  4.36  7.38  February 2020.0
## 3131 C.corindum North_Key_Largo   F 8.22   3.70  9.58 13.14  February 2020.0
## 3132 C.corindum North_Key_Largo   M 5.18   2.62  4.39  7.80  February 2020.0
## 3133 C.corindum North_Key_Largo   M 5.08   2.36  3.94  6.79  February 2020.0
## 3134 C.corindum North_Key_Largo   M 5.04   2.51  3.89  6.96  February 2020.0
## 3135 C.corindum North_Key_Largo   F 6.38   2.78  4.47  8.09  February 2020.0
## 3136 C.corindum North_Key_Largo   F 9.21   3.76  9.44 13.19  February 2020.0
## 3137 C.corindum North_Key_Largo   M 6.12   2.93  5.38  8.63  February 2020.0
## 3138 C.corindum North_Key_Largo   F 6.97   3.07  5.12  8.62  February 2020.0
## 3139 C.corindum North_Key_Largo   M 5.94   2.81  4.95  8.11  February 2020.0
## 3140 C.corindum North_Key_Largo   F 7.23   3.18  4.94  8.55  February 2020.0
## 3141 C.corindum North_Key_Largo   M 5.35   2.52  4.32  7.36  February 2020.0
## 3142 C.corindum North_Key_Largo   M 5.62   2.89  4.58  7.70  February 2020.0
## 3143 C.corindum North_Key_Largo   F 7.32   3.25  8.61 11.88  February 2020.0
## 3144 C.corindum North_Key_Largo   M 5.06   2.61  4.47  7.02  February 2020.0
## 3145 C.corindum North_Key_Largo   F 6.00   2.93  4.68  8.05  February 2020.0
## 3146 C.corindum North_Key_Largo   F 6.57   3.20  8.36 11.92  February 2020.0
## 3147 C.corindum North_Key_Largo   F 6.36   2.94  4.67  8.09  February 2020.0
## 3148 C.corindum North_Key_Largo   M 6.48   3.19  8.69 11.99  February 2020.0
## 3149 C.corindum North_Key_Largo   F 6.11   2.72  5.10  8.40  February 2020.0
## 3150 C.corindum North_Key_Largo   F 7.53   3.25  8.75 12.00  February 2020.0
## 3151 C.corindum North_Key_Largo   F 8.37   3.85 10.09 14.09  February 2020.0
## 3152 C.corindum North_Key_Largo   M 5.85   2.83  6.92  9.83  February 2020.0
## 3153 C.corindum North_Key_Largo   F 8.25   3.54  8.75 12.44  February 2020.0
## 3154 C.corindum North_Key_Largo   M 5.40   3.19  8.22 11.20  February 2020.0
## 3155 C.corindum  Plantation_Key   M 5.50   3.18  8.39 11.83  February 2020.0
## 3156 C.corindum  Plantation_Key   M 5.64   3.12  7.88 11.09  February 2020.0
## 3157 C.corindum  Plantation_Key   M 5.75   3.36  8.48 11.90  February 2020.0
## 3158 C.corindum  Plantation_Key   M 6.21   2.97  7.87 10.90  February 2020.0
## 3159 C.corindum  Plantation_Key   F 7.47   3.32  8.33 11.89  February 2020.0
## 3160 C.corindum  Plantation_Key   M 5.76   3.04  8.03 11.00  February 2020.0
## 3161 C.corindum  Plantation_Key   F 8.19   3.64  9.30 13.02  February 2020.0
## 3162 C.corindum  Plantation_Key   F 8.39   3.54  9.38 13.09  February 2020.0
## 3163 C.corindum  Plantation_Key   M 6.10   3.39  9.06 12.14  February 2020.0
## 3164 C.corindum  Plantation_Key   M 6.09   3.28  8.56 12.21  February 2020.0
## 3165 C.corindum  Plantation_Key   F 7.01   3.68  9.23 13.04  February 2020.0
## 3166 C.corindum  Plantation_Key   M 5.69   3.11  8.41 11.60  February 2020.0
## 3167 C.corindum  Plantation_Key   F 8.26   3.53  9.00 12.53  February 2020.0
## 3168 C.corindum  Plantation_Key   M 6.83   3.36  8.61 12.01  February 2020.0
## 3169 C.corindum  Plantation_Key   M 6.14   3.21  8.40 11.85  February 2020.0
## 3170 C.corindum  Plantation_Key   F 7.29   3.16  8.15 11.51  February 2020.0
## 3171 C.corindum  Plantation_Key   M 5.67   3.13  8.17 11.13  February 2020.0
## 3172 C.corindum  Plantation_Key   M 6.06   3.26  8.50 11.93  February 2020.0
## 3173 C.corindum  Plantation_Key   F 6.76   3.59  9.29 12.87  February 2020.0
## 3174 C.corindum  Plantation_Key   M 5.61   2.70  7.20  9.96  February 2020.0
## 3175 C.corindum  Plantation_Key   M 5.72   3.05  8.13 11.52  February 2020.0
## 3176 C.corindum  Plantation_Key   M 5.59   3.13  8.35 11.45  February 2020.0
## 3177 C.corindum  Plantation_Key   M 5.82   3.34  8.52 11.93  February 2020.0
## 3178 C.corindum  Plantation_Key   M 5.79   2.70  7.65 10.51  February 2020.0
## 3179 C.corindum  Plantation_Key   M 5.81   2.96  8.47 11.75  February 2020.0
## 3180 C.corindum  Plantation_Key   M 5.51   2.82  7.41 10.82  February 2020.0
## 3181 C.corindum  Plantation_Key   M 5.77   2.86  8.00 11.06  February 2020.0
## 3182 C.corindum  Plantation_Key   M 5.99   2.96  7.84 10.83  February 2020.0
## 3183 C.corindum  Plantation_Key   F 9.02   3.45  9.36 13.06  February 2020.0
## 3184 C.corindum  Plantation_Key   M 6.20   3.15  8.75 11.74  February 2020.0
## 3185 C.corindum  Plantation_Key   M 5.54   3.20  8.52 11.64  February 2020.0
## 3186 C.corindum  Plantation_Key   M 5.53   2.95  8.12 10.90  February 2020.0
## 3187 C.corindum  Plantation_Key   M 6.25   3.16  8.57 11.73  February 2020.0
## 3188 C.corindum  Plantation_Key   M 5.52   2.88  7.48 10.51  February 2020.0
## 3189 C.corindum  Plantation_Key   F 8.04   3.40  9.11 12.60  February 2020.0
## 3190 C.corindum  Plantation_Key   M 5.84   2.93  7.77 10.76  February 2020.0
## 3191 C.corindum  Plantation_Key   M 6.12   2.94  8.00 11.00  February 2020.0
## 3192 C.corindum  Plantation_Key   M 5.63   2.77  7.55 10.32  February 2020.0
## 3193 C.corindum  Plantation_Key   M 6.30   3.31  8.78 11.97  February 2020.0
## 3194 C.corindum  Plantation_Key   M 5.70   2.91  7.79 10.77  February 2020.0
## 3195 C.corindum  Plantation_Key   F 7.77   3.30  9.02 12.44  February 2020.0
## 3196 C.corindum  Plantation_Key   F 6.58   3.21  8.32 11.70  February 2020.0
## 3197 C.corindum  Plantation_Key   M 6.23   3.11  8.31 11.45  February 2020.0
## 3198 C.corindum  Plantation_Key   F 7.21   3.59 10.02 13.53  February 2020.0
## 3199 C.corindum  Plantation_Key   F 8.53   3.30  8.48 11.98  February 2020.0
## 3200 C.corindum  Plantation_Key   M 5.89   2.14  6.30  9.34  February 2020.0
## 3201 C.corindum  Plantation_Key   M 6.09   2.68  7.57 10.67  February 2020.0
## 3202 C.corindum  Plantation_Key   F 9.01   3.77 10.53 13.86  February 2020.0
## 3203 C.corindum  Plantation_Key   M 6.17   3.16  8.55 11.85  February 2020.0
## 3204 C.corindum  Plantation_Key   M 5.45   2.65  7.20 10.09  February 2020.0
## 3205 C.corindum  Plantation_Key   F 6.37   2.99  7.40 10.73  February 2020.0
## 3206 C.corindum  Plantation_Key   M 5.43   2.58  4.49  7.58  February 2020.0
## 3207 C.corindum  Plantation_Key   M 5.30   2.51  4.09  6.76  February 2020.0
## 3208 C.corindum  Plantation_Key   F 7.03   2.92  4.94  8.71  February 2020.0
## 3209 C.corindum  Plantation_Key   M 5.57   2.63  4.34  7.44  February 2020.0
## 3210 C.corindum  Plantation_Key   F 7.26   3.23  4.78  8.53  February 2020.0
## 3211 C.corindum  Plantation_Key   F 6.48   3.33  9.03 12.18  February 2020.0
## 3212 C.corindum  Plantation_Key   M 6.22   3.44  8.17 11.65  February 2020.0
## 3213 C.corindum  Plantation_Key   M 5.71   2.66  4.46  7.60  February 2020.0
## 3214 C.corindum  Plantation_Key   F 6.04   2.85  4.48  7.84  February 2020.0
## 3215 C.corindum  Plantation_Key   M 4.46   2.23  3.69  6.29  February 2020.0
## 3216 C.corindum  Plantation_Key   M 5.77   2.75  7.82 10.62  February 2020.0
## 3217 C.corindum  Plantation_Key   F 6.33   3.06  5.18  8.61  February 2020.0
## 3218 C.corindum  Plantation_Key   F 7.03   3.11  4.79  8.51  February 2020.0
## 3219 C.corindum  Plantation_Key   F 6.99   3.30  4.87  8.97  February 2020.0
## 3220 C.corindum  Plantation_Key   M 5.64   2.68  4.48  7.56  February 2020.0
## 3221 C.corindum  Plantation_Key   M 5.37   2.50  3.99  7.06  February 2020.0
## 3222 C.corindum  Plantation_Key   F 7.75   3.48  6.27 10.10  February 2020.0
## 3223 C.corindum  Plantation_Key   F 7.50   3.86 10.09 13.60  February 2020.0
## 3224 C.corindum  Plantation_Key   F 7.88   3.99 10.07 13.76  February 2020.0
## 3225 C.corindum  Plantation_Key   F 8.75   3.88  9.79 13.63  February 2020.0
## 3226 C.corindum  Plantation_Key   M 6.08   3.05  8.06 11.28   October 2019.0
## 3227 C.corindum  Plantation_Key   F 6.43   3.18  8.05 11.22   October 2019.0
## 3228 C.corindum  Plantation_Key   F 8.59   3.73  9.18 12.82   October 2019.0
## 3229 C.corindum  Plantation_Key   M 6.60   3.33  8.48 11.61   October 2019.0
## 3230 C.corindum  Plantation_Key   M 6.23   3.25  8.48 11.67   October 2019.0
## 3231 C.corindum  Plantation_Key   F 8.12   3.36  8.71 12.20   October 2019.0
## 3232 C.corindum  Plantation_Key   F 9.33   4.06 10.48 14.57   October 2019.0
## 3233 C.corindum  Plantation_Key   M 5.97   2.89  7.70 10.97   October 2019.0
## 3234 C.corindum  Plantation_Key   F 7.46   3.30  5.36  9.04   October 2019.0
## 3235 C.corindum  Plantation_Key   F 8.02   3.60  9.55 13.19   October 2019.0
## 3236 C.corindum  Plantation_Key   M 6.04   3.00  7.99 11.01   October 2019.0
## 3237 C.corindum  Plantation_Key   M 6.36   2.93  7.71 10.62   October 2019.0
## 3238 C.corindum  Plantation_Key   M 6.19   2.91  7.95 10.87   October 2019.0
## 3239 C.corindum  Plantation_Key   M 6.17   3.13  8.38 11.48   October 2019.0
## 3240 C.corindum  Plantation_Key   F 7.14   2.91  5.41  8.80   October 2019.0
## 3241 C.corindum  Plantation_Key   F 6.46   2.85  4.89  8.38   October 2019.0
## 3242 C.corindum  Plantation_Key   M 6.10   3.07  7.85 11.02   October 2019.0
## 3243 C.corindum  Plantation_Key   F 8.14   3.67  9.15 12.75   October 2019.0
## 3244 C.corindum  Plantation_Key   F 6.79   2.98  5.22  8.39   October 2019.0
## 3245 C.corindum  Plantation_Key   F 8.54   3.62  9.27 12.71   October 2019.0
## 3246 C.corindum  Plantation_Key   M 5.76   2.90  8.39 11.18   October 2019.0
## 3247 C.corindum  Plantation_Key   M 5.98   2.93  8.01 10.81   October 2019.0
## 3248 C.corindum  Plantation_Key   M 5.96   3.02  8.10 11.24   October 2019.0
## 3249 C.corindum  Plantation_Key   F 8.37   3.51  9.58 13.02   October 2019.0
## 3250 C.corindum  Plantation_Key   F 8.33   3.28  8.90 12.08   October 2019.0
## 3251  K.elegans       Homestead   M 5.64   3.25  8.64 11.54   October 2019.0
## 3252  K.elegans       Homestead   M 5.50   3.10  8.11 11.09   October 2019.0
## 3253  K.elegans       Homestead   F 8.16   3.69  9.64 12.97   October 2019.0
## 3254  K.elegans       Homestead   M 5.85   2.98  8.39 11.44   October 2019.0
## 3255  K.elegans       Homestead   F 7.62   3.62  9.65 12.95   October 2019.0
## 3256  K.elegans       Homestead   F 7.69   3.55  9.52 12.94   October 2019.0
## 3257  K.elegans       Homestead   M 6.07   3.36  9.52 12.53   October 2019.0
## 3258  K.elegans       Homestead   F 7.76   3.68  9.58 13.12   October 2019.0
## 3259  K.elegans       Homestead   F 7.57   3.65  9.37 12.73   October 2019.0
## 3260  K.elegans       Homestead   F 6.36   2.93  5.08  8.27   October 2019.0
## 3261  K.elegans       Homestead   M 5.51   2.98  7.68 10.54   October 2019.0
## 3262  K.elegans       Homestead   F 7.96   3.62 10.02 13.60   October 2019.0
## 3263 C.corindum North_Key_Largo   F 8.72   3.85 10.29 14.16   October 2019.0
## 3264 C.corindum North_Key_Largo   F 9.02   3.76  9.98 13.29   October 2019.0
## 3265 C.corindum North_Key_Largo   F 7.97   3.42  9.15 12.72   October 2019.0
## 3266 C.corindum North_Key_Largo   F 9.67   3.81 10.21 13.96   October 2019.0
## 3267 C.corindum North_Key_Largo   M 6.80   3.32  9.09 12.43   October 2019.0
## 3268 C.corindum North_Key_Largo   F 8.52   3.59 10.04 13.44   October 2019.0
## 3269 C.corindum North_Key_Largo   M 6.20   3.31  8.93 12.10   October 2019.0
## 3270 C.corindum North_Key_Largo   F 8.45   3.45  9.00 12.28   October 2019.0
## 3271 C.corindum North_Key_Largo   F 8.73   3.71  9.92 13.28   October 2019.0
## 3272 C.corindum North_Key_Largo   F   NA   3.45  9.02 12.58   October 2019.0
## 3273 C.corindum North_Key_Largo   M 6.18   3.06  8.37 11.44   October 2019.0
## 3274 C.corindum North_Key_Largo   F 7.95   3.51  8.96 12.38   October 2019.0
## 3275 C.corindum North_Key_Largo   F 6.40   2.82  5.37  8.61   October 2019.0
## 3276 C.corindum North_Key_Largo   M 6.01   2.98  8.15 11.23   October 2019.0
## 3277 C.corindum North_Key_Largo   F 8.05   3.68  9.00 12.68   October 2019.0
## 3278 C.corindum North_Key_Largo   M 5.93   2.90  7.74 10.61   October 2019.0
## 3279 C.corindum North_Key_Largo   F 8.69   3.65  9.30 12.76   October 2019.0
## 3280 C.corindum North_Key_Largo   M 5.67   2.75  7.22 10.06   October 2019.0
## 3281 C.corindum North_Key_Largo   F 8.75   3.69  9.63 13.05   October 2019.0
## 3282 C.corindum North_Key_Largo   M 5.65   2.94  7.89 10.77   October 2019.0
## 3283 C.corindum North_Key_Largo   F 8.89   3.68  9.26 12.64   October 2019.0
## 3284 C.corindum North_Key_Largo   M 6.10   3.19  8.48 11.62   October 2019.0
## 3285 C.corindum North_Key_Largo   F 8.13   3.38  8.78 12.31   October 2019.0
## 3286 C.corindum North_Key_Largo   M 5.90   3.13  8.31 11.15   October 2019.0
## 3287 C.corindum North_Key_Largo   M 6.95   3.66  9.36 12.42   October 2019.0
## 3288 C.corindum North_Key_Largo   M 6.87   3.50  9.37 12.72   October 2019.0
## 3289  K.elegans     Lake_Placid   M 5.16   2.59  7.27 10.03   October 2019.0
## 3290  K.elegans     Lake_Placid   F 8.19   3.88 10.19 13.56   October 2019.0
## 3291  K.elegans     Lake_Placid   M 5.65   2.90  7.59 10.56   October 2019.0
## 3292  K.elegans     Lake_Placid   M 5.73   3.19  9.15 12.22   October 2019.0
## 3293  K.elegans     Lake_Placid   F 7.96   3.55 10.10 13.72   October 2019.0
## 3294  K.elegans     Lake_Placid   F 7.61   3.35  9.04 12.49   October 2019.0
## 3295  K.elegans     Lake_Placid   F 8.55   3.51  9.41 13.04   October 2019.0
## 3296  K.elegans     Lake_Placid   M 5.26   2.49  4.75  7.85   October 2019.0
## 3297  K.elegans     Lake_Placid   M 5.34   3.29  8.27 11.53   October 2019.0
## 3298  K.elegans     Lake_Placid   F 8.58   4.01 10.29 14.13   October 2019.0
## 3299  K.elegans     Lake_Placid   M 5.67   3.13  8.83 11.97   October 2019.0
## 3300  K.elegans     Lake_Placid   F 7.28   3.39  9.20 12.70   October 2019.0
## 3301  K.elegans     Lake_Placid   M 5.45   2.73  7.55 10.53   October 2019.0
## 3302  K.elegans     Lake_Placid   F 7.77   3.57  9.38 13.25   October 2019.0
## 3303  K.elegans     Lake_Placid   M 5.60   3.18  8.56 11.45   October 2019.0
## 3304  K.elegans     Lake_Placid   F 7.01   3.26  8.98 12.27   October 2019.0
## 3305  K.elegans     Lake_Placid   F 8.30   3.56  9.82 13.30   October 2019.0
## 3306  K.elegans     Lake_Placid   M 5.52   3.03  8.63 11.83   October 2019.0
## 3307  K.elegans     Lake_Placid   F 8.05   3.98 10.30 13.68   October 2019.0
## 3308  K.elegans     Lake_Placid   M 5.45   2.98  8.20 11.36   October 2019.0
## 3309  K.elegans     Lake_Placid   M 5.23   2.70  7.29 10.23   October 2019.0
## 3310 C.corindum North_Key_Largo   M 6.13   3.31  8.68 11.69   October 2019.0
## 3311 C.corindum North_Key_Largo   F 7.86   3.39  8.71 12.27   October 2019.0
## 3312 C.corindum North_Key_Largo   M 6.32   2.97  8.00 11.25   October 2019.0
## 3313 C.corindum North_Key_Largo   M 5.96   3.11  8.01 11.00   October 2019.0
## 3314  K.elegans       Homestead   F 6.67   3.83 10.20 13.74  December 2016.0
## 3315  K.elegans       Homestead   M 5.04   3.01  4.90  8.22  December 2016.0
## 3316  K.elegans       Homestead   F 5.98   3.43  6.56 10.01  December 2016.0
## 3317  K.elegans       Homestead   M 4.99   3.01  5.16  8.13  December 2016.0
## 3318 C.corindum       Key_Largo   M 6.63   3.48  9.29 12.39   October 2019.0
## 3319 C.corindum       Key_Largo   M 5.74   3.33  9.12 12.96   October 2019.0
## 3320 C.corindum       Key_Largo   F 7.99   3.39  8.82 12.51   October 2019.0
## 3321 C.corindum       Key_Largo   M 6.48   3.08  8.66 11.97   October 2019.0
## 3322 C.corindum       Key_Largo   F 9.08   3.80  9.96 13.69   October 2019.0
## 3323 C.corindum       Key_Largo   F 8.51   3.39  8.87 12.56   October 2019.0
## 3324 C.corindum       Key_Largo   F 8.10   3.33  8.81 12.46   October 2019.0
## 3325 C.corindum North_Key_Largo   M 6.46   3.17  8.67 11.75   October 2019.0
## 3326 C.corindum North_Key_Largo   F 9.38   3.79  9.78 13.51   October 2019.0
## 3327 C.corindum North_Key_Largo   F 7.63   3.31  8.50 11.85   October 2019.0
## 3328 C.corindum North_Key_Largo   M 5.53   2.67  4.40  7.45   October 2019.0
## 3329 C.corindum North_Key_Largo   M 6.08   3.08  8.26 11.10   October 2019.0
## 3330 C.corindum North_Key_Largo   M 5.13   2.30  3.98  6.74   October 2019.0
## 3331 C.corindum       Key_Largo   M 6.24   3.11  8.16 10.98   October 2019.0
## 3332 C.corindum       Key_Largo   F 7.62   3.56 10.13 13.24   October 2019.0
## 3333 C.corindum       Key_Largo   M 6.21   2.72  7.57 10.43   October 2019.0
## 3334 C.corindum North_Key_Largo   F 8.70   3.65  8.90 12.61   October 2019.0
## 3335 C.corindum North_Key_Largo   F 6.85   3.46  8.84 12.45   October 2019.0
## 3336 C.corindum North_Key_Largo   M 6.29   3.17  8.33 11.61   October 2019.0
## 3337 C.corindum North_Key_Largo   F 9.20   3.71  9.88 13.59   October 2019.0
## 3338 C.corindum North_Key_Largo   M 6.10   2.79  7.52 10.50   October 2019.0
## 3339 C.corindum North_Key_Largo   F 8.19   3.33  8.56 12.04   October 2019.0
## 3340  K.elegans      Lake_Wales   F 7.30   3.55  8.87 12.19       May 2019.0
## 3341  K.elegans      Lake_Wales   M 5.60   3.03  4.81  9.19       May 2019.0
## 3342  K.elegans      Lake_Wales   F 5.39   3.24  9.04 11.42       May 2019.0
## 3343  K.elegans      Lake_Wales   F 8.77   3.47  9.86 13.11       May 2019.0
## 3344  K.elegans      Lake_Wales   F 5.54   3.56  9.36 11.96       May 2019.0
## 3345  K.elegans      Lake_Wales   F 5.61   2.90  7.85 10.94       May 2019.0
## 3346  K.elegans      Lake_Wales   F 5.41   3.07  7.81 11.49       May 2019.0
## 3347  K.elegans      Lake_Wales   F 5.38   2.85  7.73 10.62       May 2019.0
## 3348  K.elegans      Lake_Wales   F 5.30   2.84  7.71 10.18       May 2019.0
## 3349  K.elegans      Lake_Wales   M 5.53   3.19  8.23 11.62       May 2019.0
## 3350  K.elegans      Lake_Wales   F 7.60   3.42  9.66 12.71       May 2019.0
## 3351  K.elegans      Lake_Wales   M 6.16   3.20  8.74 11.26       May 2019.0
## 3352  K.elegans      Lake_Wales   F 5.68   3.02  8.76 11.36       May 2019.0
## 3353  K.elegans      Lake_Wales   F 5.82   3.44  7.86 10.52       May 2019.0
## 3354  K.elegans      Lake_Wales   F 7.61   3.63  9.68 13.46       May 2019.0
## 3355  K.elegans      Lake_Wales   F 5.33   3.25  8.99 11.19       May 2019.0
## 3356  K.elegans      Lake_Wales   F 8.11   3.81 10.20 13.80       May 2019.0
## 3357  K.elegans      Lake_Wales   F 5.83   2.75  7.85 10.90       May 2019.0
## 3358  K.elegans      Lake_Wales   F 5.58   3.06  7.93 10.52       May 2019.0
## 3359  K.elegans      Lake_Wales   F 6.99   3.29  7.65 11.30       May 2019.0
## 3360  K.elegans      Lake_Wales   F 5.63   3.27  8.88 12.22       May 2019.0
## 3361  K.elegans      Lake_Wales   F 5.45   3.13  7.90 11.27       May 2019.0
## 3362  K.elegans      Lake_Wales   M 5.93   3.02  8.30 10.91       May 2019.0
## 3363  K.elegans      Lake_Wales   M 5.55   2.82  9.16 12.70       May 2019.0
## 3364  K.elegans      Lake_Wales   F 7.93   3.35  9.39 12.66       May 2019.0
## 3365  K.elegans      Lake_Wales   F 7.61   3.43  9.91 13.19       May 2019.0
## 3366  K.elegans      Lake_Wales   F 7.29   3.83  9.95 12.89       May 2019.0
## 3367  K.elegans      Lake_Wales   F 8.09   3.91  9.54 13.15       May 2019.0
## 3368  K.elegans      Lake_Wales   M 7.90   3.83 10.57 13.70       May 2019.0
## 3369  K.elegans      Lake_Wales   M 6.01   3.05  8.95 11.03       May 2019.0
## 3370  K.elegans      Lake_Wales   F 8.21   3.66  9.95 13.04       May 2019.0
## 3371  K.elegans      Lake_Wales   F 5.89   3.32  8.94 11.76       May 2019.0
## 3372  K.elegans      Lake_Wales   F 5.76   3.15  8.24 10.60       May 2019.0
## 3373  K.elegans      Lake_Wales   M 5.91   2.96  8.98 11.53       May 2019.0
## 3374  K.elegans      Lake_Wales   F 6.94   3.15  8.86 11.75       May 2019.0
## 3375  K.elegans      Lake_Wales   M 5.98   3.23  8.82 12.13       May 2019.0
## 3376  K.elegans      Lake_Wales   F 5.72   3.30  7.89 11.83       May 2019.0
## 3377  K.elegans      Lake_Wales   F 6.52   3.07  8.38 11.57       May 2019.0
## 3378  K.elegans      Lake_Wales   F 7.74   3.78 10.61 14.29       May 2019.0
## 3379  K.elegans      Lake_Wales   M 8.29   3.87  9.00 13.42       May 2019.0
## 3380  K.elegans      Lake_Wales   M 6.01   3.20  8.47 11.67       May 2019.0
## 3381  K.elegans      Lake_Wales   F 7.97   3.77 10.33 13.31       May 2019.0
## 3382  K.elegans      Lake_Wales   M 4.91   2.50  5.52  8.20       May 2019.0
## 3383  K.elegans      Lake_Wales   F 5.38   2.41  5.35  7.90       May 2019.0
## 3384  K.elegans      Lake_Wales   F 7.94   3.46 10.47 13.06       May 2019.0
## 3385  K.elegans      Lake_Wales   F 5.03   3.33  9.30 11.71       May 2019.0
## 3386  K.elegans      Lake_Wales   M 7.70   3.75  9.54 14.35       May 2019.0
## 3387  K.elegans      Lake_Wales   F 8.74   3.83 10.33 13.42       May 2019.0
## 3388  K.elegans      Lake_Wales   M 5.27   2.82  7.38 11.04       May 2019.0
## 3389  K.elegans      Lake_Wales   F 8.03   4.02 10.32 14.91       May 2019.0
## 3390  K.elegans      Lake_Wales   F 5.89   3.16  7.98 11.63       May 2019.0
## 3391  K.elegans      Lake_Wales   F 7.58   3.31  9.31 12.52       May 2019.0
## 3392  K.elegans      Lake_Wales   F 6.15   2.68  8.15 10.95       May 2019.0
## 3393  K.elegans      Lake_Wales   M 5.86   3.10  9.14 13.17       May 2019.0
## 3394  K.elegans        Leesburg   M 4.95   2.94  8.49 11.75       May 2019.0
## 3395  K.elegans        Leesburg   F 7.61   3.69  9.49 12.75       May 2019.0
## 3396  K.elegans        Leesburg   F 6.04   3.38  8.12 11.15       May 2019.0
## 3397  K.elegans        Leesburg   F 8.20   3.76 10.23 13.56       May 2019.0
## 3398  K.elegans        Leesburg   F 5.63   3.00  7.86 11.44       May 2019.0
## 3399  K.elegans        Leesburg   M 6.32   3.07  8.06 12.65       May 2019.0
## 3400  K.elegans        Leesburg   F 5.98   3.14  9.34 11.99       May 2019.0
## 3401  K.elegans        Leesburg   F 5.64   2.64  7.54 11.01       May 2019.0
## 3402  K.elegans        Leesburg   F 5.71   3.21  7.17 10.12       May 2019.0
## 3403  K.elegans        Leesburg   F 6.80   3.26  9.16 12.20       May 2019.0
## 3404  K.elegans        Leesburg   M 8.02   4.11 10.30 13.75       May 2019.0
## 3405  K.elegans        Leesburg   M 6.01   3.03  8.36 11.29       May 2019.0
## 3406  K.elegans        Leesburg   M 8.45   3.79  9.95 13.41       May 2019.0
## 3407  K.elegans        Leesburg   F 5.74   2.78  7.73 10.04       May 2019.0
## 3408  K.elegans        Leesburg   F 8.01   3.75  9.69 13.09       May 2019.0
## 3409  K.elegans        Leesburg   F 5.52   3.02  8.25 11.29       May 2019.0
## 3410  K.elegans        Leesburg   F 5.72   3.07  8.30 10.99       May 2019.0
## 3411  K.elegans        Leesburg   M 5.92   3.40  8.73 11.31       May 2019.0
## 3412  K.elegans        Leesburg   F 5.49   3.13  9.05 11.96       May 2019.0
## 3413  K.elegans        Leesburg   F 5.65   3.09  9.00 11.77       May 2019.0
## 3414  K.elegans        Leesburg   M 5.69   3.09  8.69 11.57       May 2019.0
## 3415  K.elegans        Leesburg   M 6.63   3.60  7.98 11.85       May 2019.0
## 3416  K.elegans        Leesburg   F 6.15   3.32  9.87 11.65       May 2019.0
## 3417  K.elegans        Leesburg   F 6.59   3.46  8.66 12.22       May 2019.0
## 3418  K.elegans        Leesburg   F 6.45   2.89  8.35 11.29       May 2019.0
## 3419  K.elegans        Leesburg   F 8.15   3.58  9.72 12.69       May 2019.0
## 3420  K.elegans        Leesburg   F 6.74   2.99  7.77 11.37       May 2019.0
## 3421  K.elegans        Leesburg   F 7.56   3.68  8.50 11.51       May 2019.0
## 3422  K.elegans        Leesburg   F 6.49   3.46  8.32 11.53       May 2019.0
## 3423  K.elegans        Leesburg   F 5.46   2.75  7.71 10.50       May 2019.0
## 3424  K.elegans        Leesburg   F 6.77   3.49  8.87 11.43       May 2019.0
## 3425  K.elegans        Leesburg   F 7.32   3.86  9.21 12.80       May 2019.0
## 3426  K.elegans        Leesburg   F 6.26   3.33  8.34 11.48       May 2019.0
## 3427  K.elegans        Leesburg   F 6.58   3.89  9.46 12.71       May 2019.0
## 3428  K.elegans        Leesburg   F 5.73   3.29  8.17 10.88       May 2019.0
## 3429  K.elegans        Leesburg   F 8.16   3.80  8.72 12.91       May 2019.0
## 3430  K.elegans        Leesburg   M 7.92   3.68  9.96 13.18       May 2019.0
## 3431  K.elegans        Leesburg   F 5.22   2.56  4.47  7.37       May 2019.0
## 3432  K.elegans        Leesburg   F 6.61   3.47  8.06 11.23       May 2019.0
## 3433  K.elegans        Leesburg   M 7.55   3.34  9.36 12.18       May 2019.0
## 3434  K.elegans        Leesburg   F 5.68   3.12  8.47 11.10       May 2019.0
## 3435  K.elegans        Leesburg   F 6.65   3.31  9.43 12.04       May 2019.0
## 3436  K.elegans        Leesburg   F 7.11   3.62  8.37 11.98       May 2019.0
## 3437  K.elegans        Leesburg   F 5.72   3.26  8.98 11.43       May 2019.0
## 3438  K.elegans        Leesburg   F 6.46   3.28  9.18 12.11       May 2019.0
## 3439  K.elegans        Leesburg   M 5.84   3.46  8.42 11.28       May 2019.0
## 3440  K.elegans        Leesburg   F 4.99   3.36  8.48 11.44       May 2019.0
## 3441  K.elegans        Leesburg   F 6.26   3.31  8.11 11.90       May 2019.0
## 3442  K.elegans        Leesburg   M 5.64   3.66  9.15 11.84       May 2019.0
## 3443  K.elegans        Leesburg   F 6.78   3.90  9.55 13.74       May 2019.0
## 3444  K.elegans        Leesburg   F 6.17   3.85  8.72 12.44       May 2019.0
## 3445  K.elegans        Leesburg   F 8.11   4.17  9.65 13.41       May 2019.0
## 3446  K.elegans        Leesburg   M 6.20   3.92  8.52 12.01       May 2019.0
## 3447  K.elegans        Leesburg   F 5.55   3.55  8.36 11.87       May 2019.0
##      months_since_start season w_morph      lat      long
## 1                     0 spring       L 26.63401 -81.87987
## 2                     0 spring       L 26.63401 -81.87987
## 3                     0 spring       L 26.63401 -81.87987
## 4                     0 spring       L 26.63401 -81.87987
## 5                     0 spring       L 26.63401 -81.87987
## 6                     0 spring       L 26.63401 -81.87987
## 7                     0 spring       L 26.63401 -81.87987
## 8                     0 spring       L 26.63401 -81.87987
## 9                     0 spring       L 26.63401 -81.87987
## 10                    0 spring       L 26.63401 -81.87987
## 11                    0 spring       L 26.63401 -81.87987
## 12                    0 spring       L 26.63401 -81.87987
## 13                    0 spring       L 26.63401 -81.87987
## 14                    0 spring       L 26.63401 -81.87987
## 15                    0 spring       S 26.63401 -81.87987
## 16                    0 spring       L 26.63401 -81.87987
## 17                    0 spring       L 26.63401 -81.87987
## 18                    0 spring       L 26.63401 -81.87987
## 19                    0 spring       L 26.63401 -81.87987
## 20                    0 spring       L 26.63401 -81.87987
## 21                    0 spring       L 26.63401 -81.87987
## 22                    0 spring       L 26.63401 -81.87987
## 23                    0 spring       L 26.63401 -81.87987
## 24                    0 spring       L 26.63401 -81.87987
## 25                    0 spring       L 26.63401 -81.87987
## 26                    0 spring       L 26.63401 -81.87987
## 27                    0 spring       L 26.63401 -81.87987
## 28                    0 spring       L 26.63401 -81.87987
## 29                    0 spring       S 26.63401 -81.87987
## 30                    0 spring       S 26.63401 -81.87987
## 31                    0 spring       L 26.63401 -81.87987
## 32                    0 spring       L 26.63401 -81.87987
## 33                    0 spring       L 26.63401 -81.87987
## 34                    0 spring       L 26.63401 -81.87987
## 35                    0 spring       S 26.63401 -81.87987
## 36                    0 spring       L 26.63401 -81.87987
## 37                    0 spring       L 26.63401 -81.87987
## 38                    0 spring       L 26.63401 -81.87987
## 39                    0 spring       L 26.63401 -81.87987
## 40                    0 spring       L 26.63401 -81.87987
## 41                    0 spring       L 26.63401 -81.87987
## 42                    0 spring       L 26.63401 -81.87987
## 43                    0 spring       L 26.63401 -81.87987
## 44                    0 spring       S 26.63401 -81.87987
## 45                    0 spring       L 26.63401 -81.87987
## 46                    0 spring       L 26.63401 -81.87987
## 47                    0 spring       L 26.63401 -81.87987
## 48                    0 spring       S 26.63401 -81.87987
## 49                    0 spring       L 26.63401 -81.87987
## 50                    0 spring       L 26.63401 -81.87987
## 51                    0 spring       L 26.63401 -81.87987
## 52                    0 spring       L 26.63401 -81.87987
## 53                    0 spring       L 26.63401 -81.87987
## 54                    0 spring       L 26.63401 -81.87987
## 55                    0 spring       L 26.63401 -81.87987
## 56                    0 spring       L 26.63401 -81.87987
## 57                    0 spring       L 26.63401 -81.87987
## 58                    0 spring       L 26.63401 -81.87987
## 59                    0 spring       L 26.63401 -81.87987
## 60                    0 spring       L 26.63401 -81.87987
## 61                    0 spring       L 26.63401 -81.87987
## 62                    0 spring       L 26.63401 -81.87987
## 63                    0 spring       L 26.63401 -81.87987
## 64                    0 spring       L 26.63401 -81.87987
## 65                    0 spring       L 26.63401 -81.87987
## 66                    0 spring       L 26.63401 -81.87987
## 67                    0 spring       L 26.63401 -81.87987
## 68                    0 spring       L 26.63401 -81.87987
## 69                    0 spring       L 26.63401 -81.87987
## 70                    0 spring       L 26.63401 -81.87987
## 71                    0 spring       L 26.63401 -81.87987
## 72                    0 spring       L 26.63401 -81.87987
## 73                    0 spring       L 26.63401 -81.87987
## 74                    0 spring       L 26.63401 -81.87987
## 75                    0 spring       L 26.63401 -81.87987
## 76                    0 spring       S 25.49172 -80.48586
## 77                    0 spring       L 25.49172 -80.48586
## 78                    0 spring       L 25.49172 -80.48586
## 79                    0 spring       L 25.49172 -80.48586
## 80                    0 spring       S 25.49172 -80.48586
## 81                    0 spring       L 25.49172 -80.48586
## 82                    0 spring       S 25.49172 -80.48586
## 83                    0 spring       S 25.49172 -80.48586
## 84                    0 spring       L 25.49172 -80.48586
## 85                    0 spring       S 25.49172 -80.48586
## 86                    0 spring       S 25.49172 -80.48586
## 87                    0 spring       S 25.49172 -80.48586
## 88                    0 spring       S 25.49172 -80.48586
## 89                    0 spring       S 25.49172 -80.48586
## 90                    0 spring       S 25.49172 -80.48586
## 91                    0 spring       S 25.49172 -80.48586
## 92                    0 spring       S 25.49172 -80.48586
## 93                    0 spring       L 25.49172 -80.48586
## 94                    0 spring       L 25.49172 -80.48586
## 95                    0 spring       S 25.49172 -80.48586
## 96                    0 spring       L 25.49172 -80.48586
## 97                    0 spring       L 25.49172 -80.48586
## 98                    0 spring       L 25.49172 -80.48586
## 99                    0 spring       L 25.49172 -80.48586
## 100                   0 spring       S 25.49172 -80.48586
## 101                   0 spring       L 25.49172 -80.48586
## 102                   0 spring       L 25.49172 -80.48586
## 103                   0 spring       L 25.49172 -80.48586
## 104                   0 spring       L 25.49172 -80.48586
## 105                   0 spring       L 25.49172 -80.48586
## 106                   0 spring       L 25.49172 -80.48586
## 107                   0 spring       S 25.49172 -80.48586
## 108                   0 spring       L 25.49172 -80.48586
## 109                   0 spring       L 25.49172 -80.48586
## 110                   0 spring       L 25.49172 -80.48586
## 111                   0 spring       L 25.49172 -80.48586
## 112                   0 spring       S 25.49172 -80.48586
## 113                   0 spring       L 25.49172 -80.48586
## 114                   0 spring       L 25.49172 -80.48586
## 115                   0 spring       L 25.49172 -80.48586
## 116                   0 spring       L 25.49172 -80.48586
## 117                   0 spring       L 25.49172 -80.48586
## 118                   0 spring       L 25.49172 -80.48586
## 119                   0 spring       L 25.49172 -80.48586
## 120                   0 spring       L 25.49172 -80.48586
## 121                   0 spring       L 25.49172 -80.48586
## 122                   0 spring       L 25.49172 -80.48586
## 123                   0 spring       L 25.49172 -80.48586
## 124                   0 spring       L 25.49172 -80.48586
## 125                   0 spring       L 25.49172 -80.48586
## 126                   0 spring       L 25.49172 -80.48586
## 127                   0 spring       L 25.49172 -80.48586
## 128                   0 spring       L 25.49172 -80.48586
## 129                   0 spring       L 25.49172 -80.48586
## 130                   0 spring       L 25.49172 -80.48586
## 131                   0 spring       L 25.49172 -80.48586
## 132                   0 spring       L 25.49172 -80.48586
## 133                   0 spring       L 25.49172 -80.48586
## 134                   0 spring       L 25.49172 -80.48586
## 135                   0 spring       L 25.49172 -80.48586
## 136                   0 spring       L 25.49172 -80.48586
## 137                   0 spring       L 25.49172 -80.48586
## 138                   0 spring       L 25.49172 -80.48586
## 139                   0 spring       L 25.49172 -80.48586
## 140                   0 spring       L 25.12308 -80.41528
## 141                   0 spring       L 25.12308 -80.41528
## 142                   0 spring       L 25.12308 -80.41528
## 143                   0 spring       L 25.12308 -80.41528
## 144                   0 spring       S 25.12308 -80.41528
## 145                   0 spring       L 25.12308 -80.41528
## 146                   0 spring       L 25.12308 -80.41528
## 147                   0 spring       L 25.12308 -80.41528
## 148                   0 spring       L 25.12308 -80.41528
## 149                   0 spring       L 25.12308 -80.41528
## 150                   0 spring       S 25.12308 -80.41528
## 151                   0 spring       L 25.12308 -80.41528
## 152                   0 spring       L 25.12308 -80.41528
## 153                   0 spring       L 25.12308 -80.41528
## 154                   0 spring       L 25.12308 -80.41528
## 155                   0 spring       L 25.12308 -80.41528
## 156                   0 spring       L 25.12308 -80.41528
## 157                   0 spring       L 25.12308 -80.41528
## 158                   0 spring       L 25.12308 -80.41528
## 159                   0 spring       S 25.12308 -80.41528
## 160                   0 spring       L 25.12308 -80.41528
## 161                   0 spring       S 25.12308 -80.41528
## 162                   0 spring       L 25.12308 -80.41528
## 163                   0 spring       L 25.12308 -80.41528
## 164                   0 spring       L 25.12308 -80.41528
## 165                   0 spring       L 25.12308 -80.41528
## 166                   0 spring       L 25.12308 -80.41528
## 167                   0 spring       L 25.12308 -80.41528
## 168                   0 spring       L 25.12308 -80.41528
## 169                   0 spring       L 25.12308 -80.41528
## 170                   0 spring       L 25.12308 -80.41528
## 171                   0 spring       L 25.12308 -80.41528
## 172                   0 spring       L 25.12308 -80.41528
## 173                   0 spring       L 25.12308 -80.41528
## 174                   0 spring       L 25.12308 -80.41528
## 175                   0 spring       S 25.12308 -80.41528
## 176                   0 spring       L 25.12308 -80.41528
## 177                   0 spring       L 25.12308 -80.41528
## 178                   0 spring       L 25.12308 -80.41528
## 179                   0 spring       L 25.12308 -80.41528
## 180                   0 spring       L 25.12308 -80.41528
## 181                   0 spring       L 25.12308 -80.41528
## 182                   0 spring       S 25.12308 -80.41528
## 183                   0 spring       L 25.12308 -80.41528
## 184                   0 spring       S 25.12308 -80.41528
## 185                   0 spring       L 25.12308 -80.41528
## 186                   0 spring       L 25.12308 -80.41528
## 187                   0 spring       L 25.12308 -80.41528
## 188                   0 spring       L 25.12308 -80.41528
## 189                   0 spring       S 25.12308 -80.41528
## 190                   0 spring       S 25.12308 -80.41528
## 191                   0 spring       L 25.12308 -80.41528
## 192                   0 spring       L 25.12308 -80.41528
## 193                   0 spring       S 25.12308 -80.41528
## 194                   0 spring       S 25.12308 -80.41528
## 195                   0 spring       L 25.12308 -80.41528
## 196                   0 spring       L 25.12308 -80.41528
## 197                   0 spring       L 25.12308 -80.41528
## 198                   0 spring       L 25.12308 -80.41528
## 199                   0 spring       L 25.12308 -80.41528
## 200                   0 spring       L 25.12308 -80.41528
## 201                   0 spring       L 27.90335 -81.58946
## 202                   0 spring       L 27.90335 -81.58946
## 203                   0 spring       L 27.90335 -81.58946
## 204                   0 spring       L 27.90335 -81.58946
## 205                   0 spring       L 27.90335 -81.58946
## 206                   0 spring       L 27.90335 -81.58946
## 207                   0 spring       L 27.90335 -81.58946
## 208                   0 spring       L 27.90335 -81.58946
## 209                   0 spring       L 27.90335 -81.58946
## 210                   0 spring       L 27.90335 -81.58946
## 211                   0 spring       L 27.90335 -81.58946
## 212                   0 spring       L 27.90335 -81.58946
## 213                   0 spring       L 27.90335 -81.58946
## 214                   0 spring       S 27.90335 -81.58946
## 215                   0 spring       L 27.90335 -81.58946
## 216                   0 spring       S 27.90335 -81.58946
## 217                   0 spring       L 27.90335 -81.58946
## 218                   0 spring       S 27.90335 -81.58946
## 219                   0 spring       L 27.90335 -81.58946
## 220                   0 spring       L 27.90335 -81.58946
## 221                   0 spring       L 27.90335 -81.58946
## 222                   0 spring       L 27.90335 -81.58946
## 223                   0 spring       L 27.90335 -81.58946
## 224                   0 spring       L 27.90335 -81.58946
## 225                   0 spring       S 27.90335 -81.58946
## 226                   0 spring       L 27.90335 -81.58946
## 227                   0 spring       L 27.90335 -81.58946
## 228                   0 spring       L 27.90335 -81.58946
## 229                   0 spring       S 27.90335 -81.58946
## 230                   0 spring       L 27.90335 -81.58946
## 231                   0 spring       L 27.90335 -81.58946
## 232                   0 spring       L 27.90335 -81.58946
## 233                   0 spring       L 27.90335 -81.58946
## 234                   0 spring       L 27.90335 -81.58946
## 235                   0 spring       L 27.90335 -81.58946
## 236                   0 spring       L 27.90335 -81.58946
## 237                   0 spring       L 27.90335 -81.58946
## 238                   0 spring       L 27.90335 -81.58946
## 239                   0 spring       L 27.90335 -81.58946
## 240                   0 spring       L 27.90335 -81.58946
## 241                   0 spring       L 27.90335 -81.58946
## 242                   0 spring       S 27.90335 -81.58946
## 243                   0 spring       L 27.90335 -81.58946
## 244                   0 spring       L 27.90335 -81.58946
## 245                   0 spring       L 27.90335 -81.58946
## 246                   0 spring       L 27.90335 -81.58946
## 247                   0 spring       L 27.90335 -81.58946
## 248                   0 spring       L 27.90335 -81.58946
## 249                   0 spring       L 27.90335 -81.58946
## 250                   0 spring       L 27.90335 -81.58946
## 251                   0 spring       L 27.90335 -81.58946
## 252                   0 spring       L 27.90335 -81.58946
## 253                   0 spring       L 27.90335 -81.58946
## 254                   0 spring       L 27.90335 -81.58946
## 255                   0 spring       L 27.90335 -81.58946
## 256                   0 spring       L 27.90335 -81.58946
## 257                   0 spring       L 27.90335 -81.58946
## 258                   0 spring       S 27.90335 -81.58946
## 259                   0 spring       L 27.90335 -81.58946
## 260                   0 spring       L 27.90335 -81.58946
## 261                   0 spring       S 28.79602 -81.87777
## 262                   0 spring       S 28.79602 -81.87777
## 263                   0 spring       L 28.79602 -81.87777
## 264                   0 spring       S 28.79602 -81.87777
## 265                   0 spring       L 28.79602 -81.87777
## 266                   0 spring       S 28.79602 -81.87777
## 267                   0 spring       L 28.79602 -81.87777
## 268                   0 spring       L 28.79602 -81.87777
## 269                   0 spring       L 28.79602 -81.87777
## 270                   0 spring       L 28.79602 -81.87777
## 271                   0 spring       L 28.79602 -81.87777
## 272                   0 spring       L 28.79602 -81.87777
## 273                   0 spring       L 28.79602 -81.87777
## 274                   0 spring       S 28.79602 -81.87777
## 275                   0 spring       L 28.79602 -81.87777
## 276                   0 spring       L 28.79602 -81.87777
## 277                   0 spring       L 28.79602 -81.87777
## 278                   0 spring       L 28.79602 -81.87777
## 279                   0 spring       L 28.79602 -81.87777
## 280                   0 spring       L 28.79602 -81.87777
## 281                   0 spring       S 28.79602 -81.87777
## 282                   0 spring       L 28.79602 -81.87777
## 283                   0 spring       L 28.79602 -81.87777
## 284                   0 spring       S 28.79602 -81.87777
## 285                   0 spring       L 28.79602 -81.87777
## 286                   0 spring       L 24.96448 -80.56739
## 287                   0 spring       S 24.96448 -80.56739
## 288                   0 spring       L 24.96448 -80.56739
## 289                   0 spring       L 24.96448 -80.56739
## 290                   0 spring       L 24.96448 -80.56739
## 291                   0 spring       L 24.96448 -80.56739
## 292                   0 spring       L 24.96448 -80.56739
## 293                   0 spring       S 24.96448 -80.56739
## 294                   0 spring       L 24.96448 -80.56739
## 295                   0 spring       S 24.96448 -80.56739
## 296                   0 spring       S 24.96448 -80.56739
## 297                   0 spring       S 24.96448 -80.56739
## 298                   0 spring       L 24.96448 -80.56739
## 299                   0 spring       S 24.96448 -80.56739
## 300                   0 spring       L 24.96448 -80.56739
## 301                   0 spring       L 24.96448 -80.56739
## 302                   0 spring       L 24.96448 -80.56739
## 303                   0 spring       L 24.96448 -80.56739
## 304                   0 spring       S 24.96448 -80.56739
## 305                   0 spring       L 24.96448 -80.56739
## 306                   0 spring       L 24.96448 -80.56739
## 307                   0 spring       S 24.96448 -80.56739
## 308                   0 spring       S 24.96448 -80.56739
## 309                   0 spring       L 24.96448 -80.56739
## 310                   0 spring       S 24.96448 -80.56739
## 311                   0 spring       S 24.96448 -80.56739
## 312                   0 spring       S 24.96448 -80.56739
## 313                   0 spring       L 24.96448 -80.56739
## 314                   0 spring       L 24.96448 -80.56739
## 315                   0 spring       L 24.96448 -80.56739
## 316                   0 spring       L 24.96448 -80.56739
## 317                   0 spring       S 24.96448 -80.56739
## 318                   0 spring       S 24.96448 -80.56739
## 319                   0 spring       L 24.96448 -80.56739
## 320                   0 spring       S 24.96448 -80.56739
## 321                   0 spring       L 24.96448 -80.56739
## 322                   7 winter       L 26.63401 -81.87987
## 323                   7 winter       L 26.63401 -81.87987
## 324                   7 winter       L 26.63401 -81.87987
## 325                   7 winter       L 26.63401 -81.87987
## 326                   7 winter       L 26.63401 -81.87987
## 327                   7 winter       L 26.63401 -81.87987
## 328                   7 winter       L 26.63401 -81.87987
## 329                   7 winter       L 26.63401 -81.87987
## 330                   7 winter       L 26.63401 -81.87987
## 331                   7 winter       L 26.63401 -81.87987
## 332                   7 winter       L 26.63401 -81.87987
## 333                   7 winter       S 26.63401 -81.87987
## 334                   7 winter       L 26.63401 -81.87987
## 335                   7 winter       L 26.63401 -81.87987
## 336                   7 winter       L 26.63401 -81.87987
## 337                   7 winter       L 26.63401 -81.87987
## 338                   7 winter       L 26.63401 -81.87987
## 339                   7 winter       L 26.63401 -81.87987
## 340                   7 winter       L 26.63401 -81.87987
## 341                   7 winter       L 26.63401 -81.87987
## 342                   7 winter       L 26.63401 -81.87987
## 343                   7 winter       L 26.63401 -81.87987
## 344                   7 winter       L 26.63401 -81.87987
## 345                   7 winter       L 26.63401 -81.87987
## 346                   7 winter       L 26.63401 -81.87987
## 347                   7 winter       L 26.63401 -81.87987
## 348                   7 winter       L 26.63401 -81.87987
## 349                   7 winter       L 26.63401 -81.87987
## 350                   7 winter       L 26.63401 -81.87987
## 351                   7 winter       L 26.63401 -81.87987
## 352                   7 winter       L 26.63401 -81.87987
## 353                   7 winter       L 26.63401 -81.87987
## 354                   7 winter       L 26.63401 -81.87987
## 355                   7 winter       L 26.63401 -81.87987
## 356                   7 winter       L 26.63401 -81.87987
## 357                   7 winter       L 26.63401 -81.87987
## 358                   7 winter       L 26.63401 -81.87987
## 359                   7 winter       L 26.63401 -81.87987
## 360                   7 winter       L 26.63401 -81.87987
## 361                   7 winter       L 26.63401 -81.87987
## 362                   7 winter       L 26.63401 -81.87987
## 363                   7 winter       L 26.63401 -81.87987
## 364                   7 winter       L 26.63401 -81.87987
## 365                   7 winter       L 26.63401 -81.87987
## 366                   7 winter       L 26.63401 -81.87987
## 367                   7 winter       L 26.63401 -81.87987
## 368                   7 winter       L 26.63401 -81.87987
## 369                   7 winter       L 26.63401 -81.87987
## 370                   7 winter       L 26.63401 -81.87987
## 371                   7 winter       L 26.63401 -81.87987
## 372                   7 winter       L 26.63401 -81.87987
## 373                   7 winter       L 26.63401 -81.87987
## 374                   7 winter       L 26.63401 -81.87987
## 375                   7 winter       L 26.63401 -81.87987
## 376                   7 winter       L 26.63401 -81.87987
## 377                   7 winter       L 26.63401 -81.87987
## 378                   7 winter       L 26.63401 -81.87987
## 379                   7 winter       L 26.63401 -81.87987
## 380                   7 winter       L 26.63401 -81.87987
## 381                   7 winter       L 26.63401 -81.87987
## 382                   7 winter       L 26.63401 -81.87987
## 383                   7 winter       L 26.63401 -81.87987
## 384                   7 winter       L 26.63401 -81.87987
## 385                   7 winter       L 26.63401 -81.87987
## 386                   7 winter       L 26.63401 -81.87987
## 387                   7 winter       L 26.63401 -81.87987
## 388                   7 winter       L 26.63401 -81.87987
## 389                   7 winter       L 26.63401 -81.87987
## 390                   7 winter       L 26.63401 -81.87987
## 391                   7 winter       L 26.63401 -81.87987
## 392                   7 winter       L 26.63401 -81.87987
## 393                   7 winter       L 26.63401 -81.87987
## 394                   7 winter       L 26.63401 -81.87987
## 395                   7 winter       L 26.63401 -81.87987
## 396                   7 winter       L 26.63401 -81.87987
## 397                   7 winter       L 29.66374 -82.36091
## 398                   7 winter       L 29.66374 -82.36091
## 399                   7 winter       L 29.66374 -82.36091
## 400                   7 winter       L 29.66374 -82.36091
## 401                   7 winter       L 29.66374 -82.36091
## 402                   7 winter       L 29.66374 -82.36091
## 403                   7 winter       L 29.66374 -82.36091
## 404                   7 winter       L 29.66374 -82.36091
## 405                   7 winter       L 29.66374 -82.36091
## 406                   7 winter       L 29.66374 -82.36091
## 407                   7 winter       L 29.66374 -82.36091
## 408                   7 winter       L 29.66374 -82.36091
## 409                   7 winter       L 29.66374 -82.36091
## 410                   7 winter       L 29.66374 -82.36091
## 411                   7 winter       S 25.49172 -80.48586
## 412                   7 winter       S 25.49172 -80.48586
## 413                   7 winter       L 25.49172 -80.48586
## 414                   7 winter       L 25.49172 -80.48586
## 415                   7 winter       S 25.49172 -80.48586
## 416                   7 winter       S 25.49172 -80.48586
## 417                   7 winter       L 25.49172 -80.48586
## 418                   7 winter       L 25.49172 -80.48586
## 419                   7 winter       S 25.49172 -80.48586
## 420                   7 winter       L 25.49172 -80.48586
## 421                   7 winter       S 25.49172 -80.48586
## 422                   7 winter       L 25.49172 -80.48586
## 423                   7 winter       S 25.49172 -80.48586
## 424                   7 winter       S 25.49172 -80.48586
## 425                   7 winter       L 25.49172 -80.48586
## 426                   7 winter       L 25.49172 -80.48586
## 427                   7 winter       S 25.49172 -80.48586
## 428                   7 winter       S 25.49172 -80.48586
## 429                   7 winter       S 25.49172 -80.48586
## 430                   7 winter       L 25.49172 -80.48586
## 431                   7 winter       L 25.49172 -80.48586
## 432                   7 winter       L 25.49172 -80.48586
## 433                   7 winter       L 25.49172 -80.48586
## 434                   7 winter       L 25.49172 -80.48586
## 435                   7 winter       S 25.49172 -80.48586
## 436                   7 winter       L 25.49172 -80.48586
## 437                   7 winter       S 25.49172 -80.48586
## 438                   7 winter       S 25.49172 -80.48586
## 439                   7 winter       L 25.49172 -80.48586
## 440                   7 winter       L 25.49172 -80.48586
## 441                   7 winter       L 25.49172 -80.48586
## 442                   7 winter       L 25.49172 -80.48586
## 443                   7 winter       L 25.49172 -80.48586
## 444                   7 winter       S 25.49172 -80.48586
## 445                   7 winter       L 25.49172 -80.48586
## 446                   7 winter       L 25.49172 -80.48586
## 447                   7 winter       L 25.49172 -80.48586
## 448                   7 winter       S 25.49172 -80.48586
## 449                   7 winter       S 25.49172 -80.48586
## 450                   7 winter       L 25.49172 -80.48586
## 451                   7 winter       S 25.49172 -80.48586
## 452                   7 winter       S 25.49172 -80.48586
## 453                   7 winter       L 25.49172 -80.48586
## 454                   7 winter       L 25.49172 -80.48586
## 455                   7 winter       S 25.49172 -80.48586
## 456                   7 winter       L 25.49172 -80.48586
## 457                   7 winter       L 25.49172 -80.48586
## 458                   7 winter       S 25.49172 -80.48586
## 459                   7 winter       L 25.49172 -80.48586
## 460                   7 winter       L 25.49172 -80.48586
## 461                   7 winter       L 25.49172 -80.48586
## 462                   7 winter       L 25.49172 -80.48586
## 463                   7 winter       L 25.12308 -80.41528
## 464                   7 winter       L 25.12308 -80.41528
## 465                   7 winter       S 25.12308 -80.41528
## 466                   7 winter       L 25.12308 -80.41528
## 467                   7 winter       L 25.12308 -80.41528
## 468                   7 winter       L 25.12308 -80.41528
## 469                   7 winter       L 25.12308 -80.41528
## 470                   7 winter       S 25.12308 -80.41528
## 471                   7 winter       L 25.12308 -80.41528
## 472                   7 winter       S 25.12308 -80.41528
## 473                   7 winter       L 25.12308 -80.41528
## 474                   7 winter       L 25.12308 -80.41528
## 475                   7 winter       L 25.12308 -80.41528
## 476                   7 winter       L 25.12308 -80.41528
## 477                   7 winter       L 25.12308 -80.41528
## 478                   7 winter       S 25.12308 -80.41528
## 479                   7 winter       S 25.12308 -80.41528
## 480                   7 winter       L 25.12308 -80.41528
## 481                   7 winter       L 25.12308 -80.41528
## 482                   7 winter       L 25.12308 -80.41528
## 483                   7 winter       L 25.12308 -80.41528
## 484                   7 winter       L 25.12308 -80.41528
## 485                   7 winter       L 25.12308 -80.41528
## 486                   7 winter       L 25.12308 -80.41528
## 487                   7 winter       L 25.12308 -80.41528
## 488                   7 winter       L 25.12308 -80.41528
## 489                   7 winter       L 25.12308 -80.41528
## 490                   7 winter       L 25.12308 -80.41528
## 491                   7 winter       L 25.12308 -80.41528
## 492                   7 winter       L 25.12308 -80.41528
## 493                   7 winter       S 25.12308 -80.41528
## 494                   7 winter       L 25.12308 -80.41528
## 495                   7 winter       L 27.90335 -81.58946
## 496                   7 winter       L 27.90335 -81.58946
## 497                   7 winter       L 27.90335 -81.58946
## 498                   7 winter       L 27.90335 -81.58946
## 499                   7 winter       L 27.90335 -81.58946
## 500                   7 winter       L 27.90335 -81.58946
## 501                   7 winter       L 27.90335 -81.58946
## 502                   7 winter       L 27.90335 -81.58946
## 503                   7 winter       L 27.90335 -81.58946
## 504                   7 winter       L 27.90335 -81.58946
## 505                   7 winter       L 27.90335 -81.58946
## 506                   7 winter       L 27.90335 -81.58946
## 507                   7 winter       L 27.90335 -81.58946
## 508                   7 winter       L 27.90335 -81.58946
## 509                   7 winter       L 27.90335 -81.58946
## 510                   7 winter       L 27.90335 -81.58946
## 511                   7 winter       L 27.90335 -81.58946
## 512                   7 winter       L 27.90335 -81.58946
## 513                   7 winter       L 27.90335 -81.58946
## 514                   7 winter       L 27.90335 -81.58946
## 515                   7 winter       L 27.90335 -81.58946
## 516                   7 winter       L 27.90335 -81.58946
## 517                   7 winter       L 27.90335 -81.58946
## 518                   7 winter       L 27.90335 -81.58946
## 519                   7 winter       L 27.90335 -81.58946
## 520                   7 winter       L 27.90335 -81.58946
## 521                   7 winter       L 27.90335 -81.58946
## 522                   7 winter       L 27.90335 -81.58946
## 523                   7 winter       L 27.90335 -81.58946
## 524                   7 winter       L 27.90335 -81.58946
## 525                   7 winter       L 27.90335 -81.58946
## 526                   7 winter       L 27.90335 -81.58946
## 527                   7 winter       L 27.90335 -81.58946
## 528                   7 winter       L 27.90335 -81.58946
## 529                   7 winter       L 27.90335 -81.58946
## 530                   7 winter       L 27.90335 -81.58946
## 531                   7 winter       L 27.90335 -81.58946
## 532                   7 winter       L 27.90335 -81.58946
## 533                   7 winter       L 27.90335 -81.58946
## 534                   7 winter       L 27.90335 -81.58946
## 535                   7 winter       L 27.90335 -81.58946
## 536                   7 winter       L 27.90335 -81.58946
## 537                   7 winter       L 27.90335 -81.58946
## 538                   7 winter       L 27.90335 -81.58946
## 539                   7 winter       L 27.90335 -81.58946
## 540                   7 winter       L 27.90335 -81.58946
## 541                   7 winter       L 27.90335 -81.58946
## 542                   7 winter       L 27.90335 -81.58946
## 543                   7 winter       L 27.90335 -81.58946
## 544                   7 winter       L 27.90335 -81.58946
## 545                   7 winter       L 27.90335 -81.58946
## 546                   7 winter       L 27.90335 -81.58946
## 547                   7 winter       L 27.90335 -81.58946
## 548                   7 winter       L 27.90335 -81.58946
## 549                   7 winter       L 27.90335 -81.58946
## 550                   7 winter       L 27.90335 -81.58946
## 551                   7 winter       L 27.90335 -81.58946
## 552                   7 winter       L 27.90335 -81.58946
## 553                   7 winter       L 27.90335 -81.58946
## 554                   7 winter       L 27.90335 -81.58946
## 555                   7 winter       L 27.90335 -81.58946
## 556                   7 winter       L 27.90335 -81.58946
## 557                   7 winter       L 27.90335 -81.58946
## 558                   7 winter       L 27.90335 -81.58946
## 559                   7 winter       L 27.90335 -81.58946
## 560                   7 winter       L 27.90335 -81.58946
## 561                   7 winter       L 27.90335 -81.58946
## 562                   7 winter       L 27.90335 -81.58946
## 563                   7 winter       L 27.90335 -81.58946
## 564                   7 winter       L 27.90335 -81.58946
## 565                   7 winter       L 27.90335 -81.58946
## 566                   7 winter       L 27.90335 -81.58946
## 567                   7 winter       L 27.90335 -81.58946
## 568                   7 winter       L 27.90335 -81.58946
## 569                   7 winter       L 27.90335 -81.58946
## 570                   7 winter       L 27.90335 -81.58946
## 571                   7 winter       L 27.90335 -81.58946
## 572                   7 winter       L 27.90335 -81.58946
## 573                   7 winter       L 27.90335 -81.58946
## 574                   7 winter       L 27.90335 -81.58946
## 575                   7 winter       L 27.90335 -81.58946
## 576                   7 winter       L 27.90335 -81.58946
## 577                   7 winter       L 27.90335 -81.58946
## 578                   7 winter       L 27.90335 -81.58946
## 579                   7 winter       L 28.79602 -81.87777
## 580                   7 winter       L 28.79602 -81.87777
## 581                   7 winter       L 28.79602 -81.87777
## 582                   7 winter       L 28.79602 -81.87777
## 583                   7 winter       L 28.79602 -81.87777
## 584                   7 winter       L 28.79602 -81.87777
## 585                   7 winter       L 28.79602 -81.87777
## 586                   7 winter       L 28.79602 -81.87777
## 587                   7 winter       L 28.79602 -81.87777
## 588                   7 winter       L 28.79602 -81.87777
## 589                   7 winter       L 28.79602 -81.87777
## 590                   7 winter       L 28.79602 -81.87777
## 591                   7 winter       L 28.79602 -81.87777
## 592                   7 winter       L 28.79602 -81.87777
## 593                   7 winter       L 28.79602 -81.87777
## 594                   7 winter       L 28.79602 -81.87777
## 595                   7 winter       L 28.79602 -81.87777
## 596                   7 winter       L 28.79602 -81.87777
## 597                   7 winter       L 28.79602 -81.87777
## 598                   7 winter       L 28.79602 -81.87777
## 599                   7 winter       L 28.79602 -81.87777
## 600                   7 winter       L 28.79602 -81.87777
## 601                   7 winter       L 28.79602 -81.87777
## 602                   7 winter       L 28.79602 -81.87777
## 603                   7 winter       L 28.79602 -81.87777
## 604                   7 winter       L 28.79602 -81.87777
## 605                   7 winter       L 28.79602 -81.87777
## 606                   7 winter       L 28.79602 -81.87777
## 607                   7 winter       L 28.79602 -81.87777
## 608                   7 winter       L 28.79602 -81.87777
## 609                   7 winter       L 28.79602 -81.87777
## 610                   7 winter       L 28.79602 -81.87777
## 611                   7 winter       L 28.79602 -81.87777
## 612                   7 winter       L 28.79602 -81.87777
## 613                   7 winter       L 28.79602 -81.87777
## 614                   7 winter       L 28.79602 -81.87777
## 615                   7 winter       L 28.79602 -81.87777
## 616                   7 winter       L 28.79602 -81.87777
## 617                   7 winter       L 28.79602 -81.87777
## 618                   7 winter       L 28.79602 -81.87777
## 619                   7 winter       L 28.79602 -81.87777
## 620                   7 winter       L 28.79602 -81.87777
## 621                   7 winter       L 28.79602 -81.87777
## 622                   7 winter       L 28.79602 -81.87777
## 623                   7 winter       L 28.79602 -81.87777
## 624                   7 winter       L 28.79602 -81.87777
## 625                   7 winter       L 28.79602 -81.87777
## 626                   7 winter       L 28.79602 -81.87777
## 627                   7 winter       S 28.79602 -81.87777
## 628                   7 winter       L 28.79602 -81.87777
## 629                   7 winter       L 28.79602 -81.87777
## 630                   7 winter       L 28.79602 -81.87777
## 631                   7 winter       L 28.79602 -81.87777
## 632                   7 winter       L 28.79602 -81.87777
## 633                   7 winter       L 28.79602 -81.87777
## 634                   7 winter       L 28.79602 -81.87777
## 635                   7 winter       L 28.79602 -81.87777
## 636                   7 winter       L 28.79602 -81.87777
## 637                   7 winter       L 28.79602 -81.87777
## 638                   7 winter       L 28.79602 -81.87777
## 639                   7 winter       L 28.79602 -81.87777
## 640                   7 winter       L 28.79602 -81.87777
## 641                   7 winter       L 28.79602 -81.87777
## 642                   7 winter       L 28.79602 -81.87777
## 643                   7 winter       L 28.79602 -81.87777
## 644                   7 winter       L 28.79602 -81.87777
## 645                   7 winter       L 28.79602 -81.87777
## 646                   7 winter       L 28.79602 -81.87777
## 647                   7 winter       L 28.79602 -81.87777
## 648                   7 winter       L 28.79602 -81.87777
## 649                   7 winter       L 28.79602 -81.87777
## 650                   7 winter       L 28.79602 -81.87777
## 651                   7 winter       L 28.79602 -81.87777
## 652                   7 winter       L 28.79602 -81.87777
## 653                   7 winter       L 28.79602 -81.87777
## 654                   7 winter       L 28.79602 -81.87777
## 655                   7 winter       L 28.79602 -81.87777
## 656                   7 winter       L 28.79602 -81.87777
## 657                   7 winter       L 28.79602 -81.87777
## 658                   7 winter       L 28.79602 -81.87777
## 659                   7 winter       L 28.79602 -81.87777
## 660                   7 winter       L 28.79602 -81.87777
## 661                   7 winter       L 28.79602 -81.87777
## 662                   7 winter       L 28.79602 -81.87777
## 663                   7 winter       L 28.79602 -81.87777
## 664                   7 winter       L 28.79602 -81.87777
## 665                   7 winter       S 28.79602 -81.87777
## 666                   7 winter       L 28.79602 -81.87777
## 667                   7 winter       L 28.79602 -81.87777
## 668                   7 winter       L 28.79602 -81.87777
## 669                   7 winter       L 28.79602 -81.87777
## 670                   7 winter       L 24.96448 -80.56739
## 671                   7 winter       L 24.96448 -80.56739
## 672                   7 winter       L 24.96448 -80.56739
## 673                   7 winter       L 24.96448 -80.56739
## 674                   7 winter       L 24.96448 -80.56739
## 675                   7 winter       L 24.96448 -80.56739
## 676                   7 winter       L 24.96448 -80.56739
## 677                   7 winter       L 24.96448 -80.56739
## 678                   7 winter       L 24.96448 -80.56739
## 679                   7 winter       S 24.96448 -80.56739
## 680                   7 winter       L 24.96448 -80.56739
## 681                   7 winter       L 24.96448 -80.56739
## 682                   7 winter       L 24.96448 -80.56739
## 683                   7 winter       L 24.96448 -80.56739
## 684                   7 winter       L 24.96448 -80.56739
## 685                   7 winter       L 24.96448 -80.56739
## 686                   7 winter       L 24.96448 -80.56739
## 687                   7 winter       L 24.96448 -80.56739
## 688                   7 winter       L 24.96448 -80.56739
## 689                   7 winter       L 24.96448 -80.56739
## 690                   7 winter       L 24.96448 -80.56739
## 691                   7 winter       L 24.96448 -80.56739
## 692                   7 winter       L 24.96448 -80.56739
## 693                   7 winter       L 24.96448 -80.56739
## 694                   7 winter       L 24.96448 -80.56739
## 695                   7 winter       L 24.96448 -80.56739
## 696                   7 winter       S 24.96448 -80.56739
## 697                   7 winter       L 24.96448 -80.56739
## 698                   7 winter       L 24.96448 -80.56739
## 699                   7 winter       L 24.96448 -80.56739
## 700                   7 winter       L 24.96448 -80.56739
## 701                   7 winter       S 24.96448 -80.56739
## 702                   7 winter       L 24.96448 -80.56739
## 703                   7 winter       S 24.96448 -80.56739
## 704                   7 winter       L 24.96448 -80.56739
## 705                  11 spring       L 29.66374 -82.36091
## 706                  11 spring       L 29.66374 -82.36091
## 707                  11 spring       L 29.66374 -82.36091
## 708                  11 spring       L 29.66374 -82.36091
## 709                  11 spring       L 29.66374 -82.36091
## 710                  11 spring       L 29.66374 -82.36091
## 711                  11 spring       L 29.66374 -82.36091
## 712                  11 spring       L 29.66374 -82.36091
## 713                  11 spring       L 29.66374 -82.36091
## 714                  11 spring       L 29.66374 -82.36091
## 715                  11 spring       L 29.66374 -82.36091
## 716                  11 spring       L 29.66374 -82.36091
## 717                  11 spring       L 29.66374 -82.36091
## 718                  11 spring       L 29.66374 -82.36091
## 719                  11 spring       L 29.66374 -82.36091
## 720                  11 spring       L 29.66374 -82.36091
## 721                  11 spring       L 29.66374 -82.36091
## 722                  11 spring       L 29.66374 -82.36091
## 723                  11 spring       L 29.66374 -82.36091
## 724                  11 spring       L 29.66374 -82.36091
## 725                  11 spring       L 29.66374 -82.36091
## 726                  11 spring       S 29.66374 -82.36091
## 727                  11 spring       L 29.66374 -82.36091
## 728                  11 spring       L 29.66374 -82.36091
## 729                  11 spring       L 29.66374 -82.36091
## 730                  11 spring       L 29.66374 -82.36091
## 731                  11 spring       L 29.66374 -82.36091
## 732                  11 spring       S 29.66374 -82.36091
## 733                  11 spring       L 29.66374 -82.36091
## 734                  11 spring       L 29.66374 -82.36091
## 735                  11 spring       L 29.66374 -82.36091
## 736                  11 spring       L 29.66374 -82.36091
## 737                  11 spring       L 29.66374 -82.36091
## 738                  11 spring       L 29.66374 -82.36091
## 739                  11 spring       L 29.66374 -82.36091
## 740                  11 spring       L 29.66374 -82.36091
## 741                  11 spring       L 29.66374 -82.36091
## 742                  11 spring       L 29.66374 -82.36091
## 743                  11 spring       L 29.66374 -82.36091
## 744                  11 spring       L 29.66374 -82.36091
## 745                  11 spring       L 29.66374 -82.36091
## 746                  11 spring       L 29.66374 -82.36091
## 747                  11 spring       L 29.66374 -82.36091
## 748                  11 spring       L 29.66374 -82.36091
## 749                  11 spring       L 29.66374 -82.36091
## 750                  11 spring       L 29.66374 -82.36091
## 751                  11 spring       L 29.66374 -82.36091
## 752                  11 spring       L 29.66374 -82.36091
## 753                  11 spring       L 25.49172 -80.48586
## 754                  11 spring       L 25.49172 -80.48586
## 755                  11 spring       L 25.49172 -80.48586
## 756                  11 spring       L 25.49172 -80.48586
## 757                  11 spring       L 25.49172 -80.48586
## 758                  11 spring       S 25.49172 -80.48586
## 759                  11 spring       S 25.49172 -80.48586
## 760                  11 spring       S 25.49172 -80.48586
## 761                  11 spring       S 25.49172 -80.48586
## 762                  11 spring       S 25.49172 -80.48586
## 763                  11 spring       S 25.49172 -80.48586
## 764                  11 spring       S 25.49172 -80.48586
## 765                  11 spring       L 25.49172 -80.48586
## 766                  11 spring       L 25.49172 -80.48586
## 767                  11 spring       L 25.49172 -80.48586
## 768                  11 spring       L 25.49172 -80.48586
## 769                  11 spring       S 25.49172 -80.48586
## 770                  11 spring       S 25.12308 -80.41528
## 771                  11 spring       S 25.12308 -80.41528
## 772                  11 spring       S 25.12308 -80.41528
## 773                  11 spring       L 25.12308 -80.41528
## 774                  11 spring       S 25.12308 -80.41528
## 775                  11 spring       S 25.12308 -80.41528
## 776                  11 spring       L 25.12308 -80.41528
## 777                  11 spring       S 25.12308 -80.41528
## 778                  11 spring       L 25.12308 -80.41528
## 779                  11 spring       S 25.12308 -80.41528
## 780                  11 spring       S 25.12308 -80.41528
## 781                  11 spring       L 25.12308 -80.41528
## 782                  11 spring       S 25.12308 -80.41528
## 783                  11 spring       L 25.12308 -80.41528
## 784                  11 spring       L 25.12308 -80.41528
## 785                  11 spring       S 25.12308 -80.41528
## 786                  11 spring       S 25.12308 -80.41528
## 787                  11 spring       S 25.12308 -80.41528
## 788                  11 spring       L 25.12308 -80.41528
## 789                  11 spring       L 25.12308 -80.41528
## 790                  11 spring       S 25.12308 -80.41528
## 791                  11 spring       L 25.12308 -80.41528
## 792                  11 spring       L 25.12308 -80.41528
## 793                  11 spring       S 25.12308 -80.41528
## 794                  11 spring       S 25.12308 -80.41528
## 795                  11 spring       S 25.12308 -80.41528
## 796                  11 spring       L 25.12308 -80.41528
## 797                  11 spring       S 25.12308 -80.41528
## 798                  11 spring       L 25.12308 -80.41528
## 799                  11 spring       S 25.12308 -80.41528
## 800                  11 spring       S 25.12308 -80.41528
## 801                  11 spring       L 25.12308 -80.41528
## 802                  11 spring       S 25.12308 -80.41528
## 803                  11 spring       L 25.12308 -80.41528
## 804                  11 spring       L 25.12308 -80.41528
## 805                  11 spring       L 25.12308 -80.41528
## 806                  11 spring       S 25.12308 -80.41528
## 807                  11 spring       S 25.12308 -80.41528
## 808                  11 spring       L 25.12308 -80.41528
## 809                  11 spring       L 25.12308 -80.41528
## 810                  11 spring       S 27.90335 -81.58946
## 811                  11 spring       L 27.90335 -81.58946
## 812                  11 spring       L 27.90335 -81.58946
## 813                  11 spring       L 27.90335 -81.58946
## 814                  11 spring       L 27.90335 -81.58946
## 815                  11 spring       L 27.90335 -81.58946
## 816                  11 spring       L 27.90335 -81.58946
## 817                  11 spring       L 27.90335 -81.58946
## 818                  11 spring       L 27.90335 -81.58946
## 819                  11 spring       L 27.90335 -81.58946
## 820                  11 spring       L 27.90335 -81.58946
## 821                  11 spring       L 27.90335 -81.58946
## 822                  11 spring       L 27.90335 -81.58946
## 823                  11 spring       L 27.90335 -81.58946
## 824                  11 spring       L 27.90335 -81.58946
## 825                  11 spring       L 27.90335 -81.58946
## 826                  11 spring       L 27.90335 -81.58946
## 827                  11 spring       S 27.90335 -81.58946
## 828                  11 spring       L 27.90335 -81.58946
## 829                  11 spring       L 27.90335 -81.58946
## 830                  11 spring       L 27.90335 -81.58946
## 831                  11 spring       L 27.90335 -81.58946
## 832                  11 spring       S 27.90335 -81.58946
## 833                  11 spring       L 27.90335 -81.58946
## 834                  11 spring       L 27.90335 -81.58946
## 835                  11 spring       L 27.90335 -81.58946
## 836                  11 spring       L 27.90335 -81.58946
## 837                  11 spring       L 27.90335 -81.58946
## 838                  11 spring       L 27.90335 -81.58946
## 839                  11 spring       S 27.90335 -81.58946
## 840                  11 spring       L 27.90335 -81.58946
## 841                  11 spring       L 27.90335 -81.58946
## 842                  11 spring       L 27.90335 -81.58946
## 843                  11 spring       L 27.90335 -81.58946
## 844                  11 spring       L 27.90335 -81.58946
## 845                  11 spring       L 27.90335 -81.58946
## 846                  11 spring       L 27.90335 -81.58946
## 847                  11 spring       L 27.90335 -81.58946
## 848                  11 spring       S 27.90335 -81.58946
## 849                  11 spring       L 27.90335 -81.58946
## 850                  11 spring       L 27.90335 -81.58946
## 851                  11 spring       L 27.90335 -81.58946
## 852                  11 spring       L 27.90335 -81.58946
## 853                  11 spring       L 27.90335 -81.58946
## 854                  11 spring       L 28.79602 -81.87777
## 855                  11 spring       L 28.79602 -81.87777
## 856                  11 spring       L 28.79602 -81.87777
## 857                  11 spring       L 28.79602 -81.87777
## 858                  11 spring       L 28.79602 -81.87777
## 859                  11 spring       L 28.79602 -81.87777
## 860                  11 spring       L 28.79602 -81.87777
## 861                  11 spring       L 28.79602 -81.87777
## 862                  11 spring       L 28.79602 -81.87777
## 863                  11 spring       L 28.79602 -81.87777
## 864                  11 spring       L 28.79602 -81.87777
## 865                  11 spring       L 28.79602 -81.87777
## 866                  11 spring       L 28.79602 -81.87777
## 867                  11 spring       L 28.79602 -81.87777
## 868                  11 spring       L 24.96448 -80.56739
## 869                  11 spring       S 24.96448 -80.56739
## 870                  11 spring       L 24.96448 -80.56739
## 871                  11 spring       S 24.96448 -80.56739
## 872                  11 spring       S 24.96448 -80.56739
## 873                  11 spring       S 24.96448 -80.56739
## 874                  11 spring       L 24.96448 -80.56739
## 875                  11 spring       L 24.96448 -80.56739
## 876                  11 spring       S 24.96448 -80.56739
## 877                  11 spring       S 24.96448 -80.56739
## 878                  11 spring       L 24.96448 -80.56739
## 879                  11 spring       S 24.96448 -80.56739
## 880                  11 spring       L 24.96448 -80.56739
## 881                  11 spring       L 24.96448 -80.56739
## 882                  11 spring       S 24.96448 -80.56739
## 883                  11 spring       L 24.96448 -80.56739
## 884                  11 spring       L 24.96448 -80.56739
## 885                  11 spring       S 24.96448 -80.56739
## 886                  11 spring       L 24.96448 -80.56739
## 887                  11 spring       L 24.96448 -80.56739
## 888                  11 spring       S 24.96448 -80.56739
## 889                  11 spring       L 24.96448 -80.56739
## 890                  11 spring       L 24.96448 -80.56739
## 891                  11 spring       L 24.96448 -80.56739
## 892                  11 spring       L 24.96448 -80.56739
## 893                  11 spring       S 24.96448 -80.56739
## 894                  11 spring       L 24.96448 -80.56739
## 895                  11 spring       S 24.96448 -80.56739
## 896                  11 spring       L 24.96448 -80.56739
## 897                  11 spring       L 24.96448 -80.56739
## 898                  11 spring       S 24.96448 -80.56739
## 899                  11 spring       S 24.96448 -80.56739
## 900                  11 spring       S 24.96448 -80.56739
## 901                  11 spring       S 24.96448 -80.56739
## 902                  11 spring       S 24.96448 -80.56739
## 903                  11 spring       L 24.96448 -80.56739
## 904                  11 spring       L 24.96448 -80.56739
## 905                  11 spring       S 24.96448 -80.56739
## 906                  11 spring       L 24.96448 -80.56739
## 907                  11 spring       L 24.96448 -80.56739
## 908                  11 spring       L 24.96448 -80.56739
## 909                  11 spring       S 24.96448 -80.56739
## 910                  11 spring       L 24.96448 -80.56739
## 911                  11 spring       L 24.96448 -80.56739
## 912                  23 spring       S 25.12308 -80.41528
## 913                  23 spring       S 25.12308 -80.41528
## 914                  23 spring       S 25.12308 -80.41528
## 915                  23 spring       L 25.12308 -80.41528
## 916                  23 spring       S 25.12308 -80.41528
## 917                  23 spring       S 25.12308 -80.41528
## 918                  23 spring       L 25.12308 -80.41528
## 919                  23 spring       S 25.12308 -80.41528
## 920                  23 spring       S 25.12308 -80.41528
## 921                  23 spring       S 25.12308 -80.41528
## 922                  23 spring       S 25.12308 -80.41528
## 923                  23 spring       S 25.12308 -80.41528
## 924                  23 spring       S 25.12308 -80.41528
## 925                  23 spring       S 25.12308 -80.41528
## 926                  23 spring       L 25.12308 -80.41528
## 927                  23 spring       S 25.12308 -80.41528
## 928                  23 spring       S 25.12308 -80.41528
## 929                  23 spring       S 25.12308 -80.41528
## 930                  23 spring       L 25.12308 -80.41528
## 931                  23 spring       S 25.12308 -80.41528
## 932                  23 spring       S 25.12308 -80.41528
## 933                  23 spring       L 25.12308 -80.41528
## 934                  23 spring       S 25.12308 -80.41528
## 935                  23 spring       L 25.12308 -80.41528
## 936                  23 spring       L 25.12308 -80.41528
## 937                  23 spring       L 25.12308 -80.41528
## 938                  23 spring       S 25.12308 -80.41528
## 939                  23 spring       S 25.12308 -80.41528
## 940                  23 spring       S 25.12308 -80.41528
## 941                  23 spring       L 25.12308 -80.41528
## 942                  23 spring       S 25.12308 -80.41528
## 943                  23 spring       S 25.12308 -80.41528
## 944                  23 spring       S 25.12308 -80.41528
## 945                  23 spring       S 25.12308 -80.41528
## 946                  23 spring       S 25.12308 -80.41528
## 947                  23 spring       S 25.12308 -80.41528
## 948                  23 spring       S 25.12308 -80.41528
## 949                  23 spring       S 25.12308 -80.41528
## 950                  23 spring       S 25.12308 -80.41528
## 951                  23 spring       S 25.12308 -80.41528
## 952                  23 spring       L 25.12308 -80.41528
## 953                  23 spring       S 25.12308 -80.41528
## 954                  23 spring       S 25.12308 -80.41528
## 955                  23 spring       S 25.12308 -80.41528
## 956                  23 spring       S 25.12308 -80.41528
## 957                  23 spring       L 25.12308 -80.41528
## 958                  23 spring       S 25.12308 -80.41528
## 959                  23 spring       S 25.12308 -80.41528
## 960                  23 spring       S 25.12308 -80.41528
## 961                  23 spring       S 25.12308 -80.41528
## 962                  23 spring       S 25.12308 -80.41528
## 963                  23 spring       L 27.90335 -81.58946
## 964                  23 spring       L 27.90335 -81.58946
## 965                  23 spring       L 27.90335 -81.58946
## 966                  23 spring       L 27.90335 -81.58946
## 967                  23 spring       L 27.90335 -81.58946
## 968                  23 spring       L 27.90335 -81.58946
## 969                  23 spring       L 27.90335 -81.58946
## 970                  23 spring       L 27.90335 -81.58946
## 971                  23 spring       L 27.90335 -81.58946
## 972                  23 spring       L 27.90335 -81.58946
## 973                  23 spring       L 27.90335 -81.58946
## 974                  23 spring       L 27.90335 -81.58946
## 975                  23 spring       L 27.90335 -81.58946
## 976                  23 spring       L 27.90335 -81.58946
## 977                  23 spring       L 27.90335 -81.58946
## 978                  23 spring       L 27.90335 -81.58946
## 979                  23 spring       L 27.90335 -81.58946
## 980                  23 spring       L 27.90335 -81.58946
## 981                  23 spring       L 27.90335 -81.58946
## 982                  23 spring       L 27.90335 -81.58946
## 983                  23 spring       L 27.90335 -81.58946
## 984                  23 spring       L 27.90335 -81.58946
## 985                  23 spring       L 27.90335 -81.58946
## 986                  23 spring       L 27.90335 -81.58946
## 987                  23 spring       L 27.90335 -81.58946
## 988                  23 spring       L 27.90335 -81.58946
## 989                  23 spring       L 27.90335 -81.58946
## 990                  23 spring       L 27.90335 -81.58946
## 991                  23 spring       L 27.90335 -81.58946
## 992                  23 spring       L 27.90335 -81.58946
## 993                  23 spring       L 27.90335 -81.58946
## 994                  23 spring       L 27.90335 -81.58946
## 995                  23 spring       L 27.90335 -81.58946
## 996                  23 spring       L 27.90335 -81.58946
## 997                  23 spring       L 27.90335 -81.58946
## 998                  23 spring       L 27.90335 -81.58946
## 999                  23 spring       L 27.90335 -81.58946
## 1000                 23 spring       L 27.90335 -81.58946
## 1001                 23 spring       L 27.90335 -81.58946
## 1002                 23 spring       L 27.90335 -81.58946
## 1003                 23 spring       L 27.90335 -81.58946
## 1004                 23 spring       L 27.90335 -81.58946
## 1005                 23 spring       L 27.90335 -81.58946
## 1006                 23 spring       L 27.90335 -81.58946
## 1007                 23 spring       L 27.90335 -81.58946
## 1008                 23 spring       L 27.90335 -81.58946
## 1009                 23 spring       L 27.90335 -81.58946
## 1010                 23 spring       L 27.90335 -81.58946
## 1011                 23 spring       L 27.90335 -81.58946
## 1012                 23 spring       L 27.90335 -81.58946
## 1013                 23 spring       L 27.90335 -81.58946
## 1014                 23 spring       L 27.90335 -81.58946
## 1015                 23 spring       L 27.90335 -81.58946
## 1016                 23 spring       L 28.79602 -81.87777
## 1017                 23 spring       L 28.79602 -81.87777
## 1018                 23 spring       L 28.79602 -81.87777
## 1019                 23 spring       L 28.79602 -81.87777
## 1020                 23 spring       L 28.79602 -81.87777
## 1021                 23 spring       L 28.79602 -81.87777
## 1022                 23 spring       L 28.79602 -81.87777
## 1023                 23 spring       L 28.79602 -81.87777
## 1024                 23 spring       L 28.79602 -81.87777
## 1025                 23 spring       L 28.79602 -81.87777
## 1026                 23 spring       S 28.79602 -81.87777
## 1027                 23 spring       L 28.79602 -81.87777
## 1028                 23 spring       L 28.79602 -81.87777
## 1029                 23 spring       L 28.79602 -81.87777
## 1030                 23 spring       L 28.79602 -81.87777
## 1031                 23 spring       L 28.79602 -81.87777
## 1032                 23 spring       L 28.79602 -81.87777
## 1033                 23 spring       L 28.79602 -81.87777
## 1034                 23 spring       L 28.79602 -81.87777
## 1035                 23 spring       L 28.79602 -81.87777
## 1036                 23 spring       L 28.79602 -81.87777
## 1037                 23 spring       L 28.79602 -81.87777
## 1038                 23 spring       L 28.79602 -81.87777
## 1039                 23 spring       L 28.79602 -81.87777
## 1040                 23 spring       L 28.79602 -81.87777
## 1041                 23 spring       S 28.79602 -81.87777
## 1042                 23 spring       L 28.79602 -81.87777
## 1043                 23 spring       L 28.79602 -81.87777
## 1044                 23 spring       L 28.79602 -81.87777
## 1045                 23 spring       L 28.79602 -81.87777
## 1046                 23 spring       L 28.79602 -81.87777
## 1047                 23 spring       L 28.79602 -81.87777
## 1048                 23 spring       S 28.79602 -81.87777
## 1049                 23 spring       L 28.79602 -81.87777
## 1050                 23 spring       L 28.79602 -81.87777
## 1051                 23 spring       L 28.79602 -81.87777
## 1052                 23 spring       S 24.96448 -80.56739
## 1053                 23 spring       L 24.96448 -80.56739
## 1054                 23 spring       S 24.96448 -80.56739
## 1055                 23 spring       S 24.96448 -80.56739
## 1056                 23 spring       L 24.96448 -80.56739
## 1057                 23 spring       L 24.96448 -80.56739
## 1058                 23 spring       L 24.96448 -80.56739
## 1059                 23 spring       S 24.96448 -80.56739
## 1060                 23 spring       L 24.96448 -80.56739
## 1061                 23 spring       L 24.96448 -80.56739
## 1062                 23 spring       S 24.96448 -80.56739
## 1063                 23 spring       L 24.96448 -80.56739
## 1064                 43 winter       L 29.66374 -82.36091
## 1065                 43 winter       L 29.66374 -82.36091
## 1066                 43 winter       L 29.66374 -82.36091
## 1067                 43 winter       L 29.66374 -82.36091
## 1068                 43 winter       L 29.66374 -82.36091
## 1069                 43 winter       L 29.66374 -82.36091
## 1070                 43 winter       L 29.66374 -82.36091
## 1071                 43 winter       L 29.66374 -82.36091
## 1072                 43 winter       L 29.66374 -82.36091
## 1073                 43 winter       L 29.66374 -82.36091
## 1074                 43 winter       L 29.66374 -82.36091
## 1075                 43 winter       L 29.66374 -82.36091
## 1076                 43 winter       L 29.66374 -82.36091
## 1077                 43 winter       L 29.66374 -82.36091
## 1078                 43 winter       L 29.66374 -82.36091
## 1079                 43 winter       L 29.66374 -82.36091
## 1080                 43 winter       L 29.66374 -82.36091
## 1081                 43 winter       L 29.66374 -82.36091
## 1082                 43 winter       L 29.66374 -82.36091
## 1083                 43 winter       L 29.66374 -82.36091
## 1084                 43 winter       L 29.66374 -82.36091
## 1085                 43 winter       L 29.66374 -82.36091
## 1086                 43 winter       L 29.66374 -82.36091
## 1087                 43 winter       L 29.66374 -82.36091
## 1088                 43 winter       L 29.66374 -82.36091
## 1089                 43 winter       L 29.66374 -82.36091
## 1090                 43 winter       L 29.66374 -82.36091
## 1091                 43 winter       L 29.66374 -82.36091
## 1092                 43 winter       L 29.66374 -82.36091
## 1093                 43 winter       L 29.66374 -82.36091
## 1094                 43 winter       L 29.66374 -82.36091
## 1095                 43 winter       L 29.66374 -82.36091
## 1096                 43 winter       L 29.66374 -82.36091
## 1097                 43 winter       L 29.66374 -82.36091
## 1098                 43 winter       S 29.66374 -82.36091
## 1099                 43 winter       L 29.66374 -82.36091
## 1100                 43 winter       L 29.66374 -82.36091
## 1101                 43 winter       L 29.66374 -82.36091
## 1102                 43 winter       L 29.66374 -82.36091
## 1103                 43 winter       L 29.66374 -82.36091
## 1104                 43 winter       L 29.66374 -82.36091
## 1105                 43 winter       L 29.66374 -82.36091
## 1106                 43 winter       L 29.66374 -82.36091
## 1107                 43 winter       S 29.66374 -82.36091
## 1108                 43 winter       L 29.66374 -82.36091
## 1109                 43 winter       L 29.66374 -82.36091
## 1110                 43 winter       S 29.66374 -82.36091
## 1111                 43 winter       L 29.66374 -82.36091
## 1112                 43 winter       L 29.66374 -82.36091
## 1113                 43 winter       L 29.66374 -82.36091
## 1114                 43 winter       S 29.66374 -82.36091
## 1115                 43 winter       L 29.66374 -82.36091
## 1116                 43 winter       L 29.66374 -82.36091
## 1117                 43 winter       L 29.66374 -82.36091
## 1118                 43 winter       L 29.66374 -82.36091
## 1119                 43 winter       L 29.66374 -82.36091
## 1120                 43 winter       L 29.66374 -82.36091
## 1121                 43 winter       L 25.49172 -80.48586
## 1122                 43 winter       S 25.49172 -80.48586
## 1123                 43 winter       S 25.49172 -80.48586
## 1124                 43 winter       L 25.49172 -80.48586
## 1125                 43 winter       L 25.49172 -80.48586
## 1126                 43 winter       S 25.49172 -80.48586
## 1127                 43 winter       L 25.49172 -80.48586
## 1128                 43 winter       L 25.49172 -80.48586
## 1129                 43 winter       S 25.49172 -80.48586
## 1130                 43 winter       L 25.49172 -80.48586
## 1131                 43 winter       L 25.49172 -80.48586
## 1132                 43 winter       L 25.49172 -80.48586
## 1133                 43 winter       L 25.49172 -80.48586
## 1134                 43 winter       L 25.25687 -80.30942
## 1135                 43 winter       L 25.25687 -80.30942
## 1136                 43 winter       L 25.25687 -80.30942
## 1137                 43 winter       S 25.25687 -80.30942
## 1138                 43 winter       L 25.25687 -80.30942
## 1139                 43 winter       S 25.25687 -80.30942
## 1140                 43 winter       L 25.25687 -80.30942
## 1141                 43 winter       L 25.25687 -80.30942
## 1142                 43 winter       L 25.25687 -80.30942
## 1143                 43 winter       L 25.25687 -80.30942
## 1144                 43 winter       L 25.25687 -80.30942
## 1145                 43 winter       S 25.25687 -80.30942
## 1146                 43 winter       S 25.25687 -80.30942
## 1147                 43 winter       L 25.25687 -80.30942
## 1148                 43 winter       L 25.25687 -80.30942
## 1149                 43 winter       L 25.25687 -80.30942
## 1150                 43 winter       L 25.25687 -80.30942
## 1151                 43 winter       L 25.25687 -80.30942
## 1152                 43 winter       L 25.25687 -80.30942
## 1153                 43 winter       L 25.25687 -80.30942
## 1154                 43 winter       L 25.25687 -80.30942
## 1155                 43 winter       S 25.25687 -80.30942
## 1156                 43 winter       L 25.25687 -80.30942
## 1157                 43 winter       S 25.25687 -80.30942
## 1158                 43 winter       L 25.25687 -80.30942
## 1159                 43 winter       S 25.25687 -80.30942
## 1160                 43 winter       L 25.25687 -80.30942
## 1161                 43 winter       L 25.25687 -80.30942
## 1162                 43 winter       L 25.25687 -80.30942
## 1163                 43 winter       L 25.25687 -80.30942
## 1164                 43 winter       L 25.25687 -80.30942
## 1165                 43 winter       L 25.25687 -80.30942
## 1166                 43 winter       L 25.25687 -80.30942
## 1167                 43 winter       L 25.25687 -80.30942
## 1168                 43 winter       S 25.25687 -80.30942
## 1169                 43 winter       L 25.25687 -80.30942
## 1170                 43 winter       S 25.25687 -80.30942
## 1171                 43 winter       S 25.25687 -80.30942
## 1172                 43 winter       S 25.25687 -80.30942
## 1173                 43 winter       L 25.25687 -80.30942
## 1174                 43 winter       L 25.25687 -80.30942
## 1175                 43 winter       S 25.25687 -80.30942
## 1176                 43 winter       L 25.25687 -80.30942
## 1177                 43 winter       L 25.25687 -80.30942
## 1178                 43 winter       L 25.25687 -80.30942
## 1179                 43 winter       S 25.25687 -80.30942
## 1180                 43 winter       L 25.25687 -80.30942
## 1181                 43 winter       S 25.25687 -80.30942
## 1182                 43 winter       L 25.25687 -80.30942
## 1183                 43 winter       L 25.25687 -80.30942
## 1184                 43 winter       L 25.25687 -80.30942
## 1185                 43 winter       L 25.25687 -80.30942
## 1186                 43 winter       L 25.25687 -80.30942
## 1187                 43 winter       L 25.12308 -80.41528
## 1188                 43 winter       L 25.12308 -80.41528
## 1189                 43 winter       L 25.12308 -80.41528
## 1190                 43 winter       S 25.12308 -80.41528
## 1191                 43 winter       L 25.12308 -80.41528
## 1192                 43 winter       L 25.12308 -80.41528
## 1193                 43 winter       S 25.12308 -80.41528
## 1194                 43 winter       L 25.12308 -80.41528
## 1195                 43 winter       S 25.12308 -80.41528
## 1196                 43 winter       L 25.12308 -80.41528
## 1197                 43 winter       L 25.12308 -80.41528
## 1198                 43 winter       L 27.93574 -81.57414
## 1199                 43 winter       L 27.93574 -81.57414
## 1200                 43 winter       L 27.93574 -81.57414
## 1201                 43 winter       L 27.93574 -81.57414
## 1202                 43 winter       L 27.93574 -81.57414
## 1203                 43 winter       L 27.93574 -81.57414
## 1204                 43 winter       L 27.93574 -81.57414
## 1205                 43 winter       S 27.93574 -81.57414
## 1206                 43 winter       L 27.93574 -81.57414
## 1207                 43 winter       L 27.93574 -81.57414
## 1208                 43 winter       L 27.93574 -81.57414
## 1209                 43 winter       L 27.93574 -81.57414
## 1210                 43 winter       L 27.93574 -81.57414
## 1211                 43 winter       L 27.93574 -81.57414
## 1212                 43 winter       L 27.93574 -81.57414
## 1213                 43 winter       L 28.80523 -81.88178
## 1214                 43 winter       L 28.80523 -81.88178
## 1215                 43 winter       L 28.80523 -81.88178
## 1216                 43 winter       L 28.80523 -81.88178
## 1217                 43 winter       L 28.80523 -81.88178
## 1218                 43 winter       L 28.80523 -81.88178
## 1219                 43 winter       L 28.80523 -81.88178
## 1220                 43 winter       L 28.80523 -81.88178
## 1221                 43 winter       L 28.80523 -81.88178
## 1222                 43 winter       L 28.80523 -81.88178
## 1223                 43 winter       L 28.80523 -81.88178
## 1224                 43 winter       L 28.80523 -81.88178
## 1225                 43 winter       L 28.80523 -81.88178
## 1226                 43 winter       L 28.80523 -81.88178
## 1227                 43 winter       L 28.80523 -81.88178
## 1228                 43 winter       L 28.80523 -81.88178
## 1229                 43 winter       L 28.80523 -81.88178
## 1230                 43 winter       L 28.80523 -81.88178
## 1231                 43 winter       L 28.80523 -81.88178
## 1232                 43 winter       L 28.80523 -81.88178
## 1233                 43 winter       L 28.79602 -81.87777
## 1234                 43 winter       L 28.79602 -81.87777
## 1235                 43 winter       L 28.79602 -81.87777
## 1236                 43 winter       L 28.79602 -81.87777
## 1237                 43 winter       L 28.79602 -81.87777
## 1238                 43 winter       L 28.79602 -81.87777
## 1239                 43 winter       L 28.79602 -81.87777
## 1240                 43 winter       L 28.79602 -81.87777
## 1241                 43 winter       L 28.79602 -81.87777
## 1242                 43 winter       L 28.79602 -81.87777
## 1243                 43 winter       L 28.79602 -81.87777
## 1244                 43 winter       S 28.79602 -81.87777
## 1245                 43 winter       L 28.79602 -81.87777
## 1246                 43 winter       L 28.79602 -81.87777
## 1247                 43 winter       L 28.79602 -81.87777
## 1248                 43 winter       L 28.79602 -81.87777
## 1249                 43 winter       L 28.79602 -81.87777
## 1250                 43 winter       L 28.79602 -81.87777
## 1251                 43 winter       L 28.79602 -81.87777
## 1252                 43 winter       L 28.79602 -81.87777
## 1253                 43 winter       L 28.79602 -81.87777
## 1254                 43 winter       L 28.79602 -81.87777
## 1255                 43 winter       L 28.79602 -81.87777
## 1256                 43 winter       L 28.79602 -81.87777
## 1257                 43 winter       L 28.79602 -81.87777
## 1258                 43 winter       L 28.79602 -81.87777
## 1259                 43 winter       L 28.79602 -81.87777
## 1260                 43 winter       L 28.79602 -81.87777
## 1261                 43 winter       L 28.79602 -81.87777
## 1262                 43 winter       L 28.79602 -81.87777
## 1263                 43 winter       L 28.79602 -81.87777
## 1264                 43 winter       L 28.79602 -81.87777
## 1265                 43 winter       L 28.79602 -81.87777
## 1266                 43 winter       L 28.79602 -81.87777
## 1267                 43 winter       L 28.79602 -81.87777
## 1268                 43 winter       L 28.79602 -81.87777
## 1269                 43 winter       L 28.79602 -81.87777
## 1270                 43 winter       L 28.79602 -81.87777
## 1271                 43 winter       L 28.79602 -81.87777
## 1272                 43 winter       L 28.79602 -81.87777
## 1273                 43 winter       L 28.79602 -81.87777
## 1274                 43 winter       L 28.79602 -81.87777
## 1275                 43 winter       L 28.79602 -81.87777
## 1276                 43 winter       L 28.79602 -81.87777
## 1277                 43 winter       L 28.79602 -81.87777
## 1278                 43 winter       S 24.97998 -80.54862
## 1279                 43 winter       L 24.97998 -80.54862
## 1280                 43 winter       L 24.97998 -80.54862
## 1281                 43 winter       S 24.97998 -80.54862
## 1282                 43 winter       L 24.97998 -80.54862
## 1283                 43 winter       L 24.97998 -80.54862
## 1284                 43 winter       S 24.97998 -80.54862
## 1285                 43 winter       L 24.97998 -80.54862
## 1286                 43 winter       L 24.97998 -80.54862
## 1287                 43 winter       S 24.97998 -80.54862
## 1288                 43 winter       L 24.97998 -80.54862
## 1289                 43 winter       S 24.97998 -80.54862
## 1290                 43 winter       S 24.97998 -80.54862
## 1291                 43 winter       S 24.97998 -80.54862
## 1292                 43 winter       S 24.97998 -80.54862
## 1293                 43 winter       L 24.97998 -80.54862
## 1294                 43 winter       L 24.97998 -80.54862
## 1295                 43 winter       L 24.97998 -80.54862
## 1296                 43 winter       L 24.97998 -80.54862
## 1297                 43 winter       L 24.97998 -80.54862
## 1298                 43 winter       S 24.97998 -80.54862
## 1299                 43 winter       S 24.97998 -80.54862
## 1300                 43 winter       L 24.97998 -80.54862
## 1301                 43 winter       S 24.97998 -80.54862
## 1302                 43 winter       S 24.97998 -80.54862
## 1303                 43 winter       L 24.97998 -80.54862
## 1304                 43 winter       L 24.97998 -80.54862
## 1305                 43 winter       S 24.97998 -80.54862
## 1306                 43 winter       L 24.97998 -80.54862
## 1307                 43 winter       L 24.97998 -80.54862
## 1308                 43 winter       L 24.97998 -80.54862
## 1309                 43 winter       L 24.97998 -80.54862
## 1310                 43 winter       L 24.97998 -80.54862
## 1311                 43 winter       L 24.97998 -80.54862
## 1312                 43 winter       S 24.97998 -80.54862
## 1313                 43 winter       S 24.97998 -80.54862
## 1314                 43 winter       L 24.97998 -80.54862
## 1315                 51 summer       L 29.66668 -82.35574
## 1316                 51 summer       L 29.66668 -82.35574
## 1317                 51 summer       L 29.66668 -82.35574
## 1318                 51 summer       S 29.66668 -82.35574
## 1319                 51 summer       L 29.66668 -82.35574
## 1320                 51 summer       L 29.66668 -82.35574
## 1321                 51 summer       S 29.66668 -82.35574
## 1322                 51 summer       L 29.66668 -82.35574
## 1323                 51 summer       L 29.66668 -82.35574
## 1324                 51 summer       L 29.66668 -82.35574
## 1325                 51 summer       L 29.66668 -82.35574
## 1326                 51 summer       L 29.66668 -82.35574
## 1327                 51 summer       L 29.66668 -82.35574
## 1328                 51 summer       L 29.66668 -82.35574
## 1329                 51 summer       L 29.66668 -82.35574
## 1330                 51 summer       L 29.66668 -82.35574
## 1331                 51 summer       S 29.66668 -82.35574
## 1332                 51 summer       L 29.66668 -82.35574
## 1333                 51 summer       L 29.66668 -82.35574
## 1334                 51 summer       L 29.66668 -82.35574
## 1335                 51 summer       L 29.66668 -82.35574
## 1336                 51 summer       L 29.66668 -82.35574
## 1337                 51 summer       L 29.66668 -82.35574
## 1338                 51 summer       L 29.66668 -82.35574
## 1339                 51 summer       L 29.66668 -82.35574
## 1340                 51 summer       S 29.66668 -82.35574
## 1341                 51 summer       L 29.66668 -82.35574
## 1342                 51 summer       L 29.66668 -82.35574
## 1343                 51 summer       L 29.66668 -82.35574
## 1344                 51 summer       L 29.66668 -82.35574
## 1345                 51 summer       L 29.66668 -82.35574
## 1346                 51 summer       L 29.66668 -82.35574
## 1347                 51 summer       L 29.66668 -82.35574
## 1348                 51 summer       L 29.66668 -82.35574
## 1349                 51 summer       L 29.66668 -82.35574
## 1350                 51 summer       L 29.66668 -82.35574
## 1351                 51 summer       L 29.66668 -82.35574
## 1352                 51 summer       L 29.66668 -82.35574
## 1353                 51 summer       L 29.66668 -82.35574
## 1354                 51 summer       L 29.66668 -82.35574
## 1355                 51 summer       L 29.66668 -82.35574
## 1356                 51 summer       L 29.66668 -82.35574
## 1357                 51 summer       L 29.66668 -82.35574
## 1358                 51 summer       S 29.66668 -82.35574
## 1359                 51 summer       L 29.66668 -82.35574
## 1360                 51 summer       L 29.66668 -82.35574
## 1361                 51 summer       L 29.66668 -82.35574
## 1362                 51 summer       L 29.66668 -82.35574
## 1363                 51 summer       L 29.66668 -82.35574
## 1364                 51 summer       L 29.66668 -82.35574
## 1365                 51 summer       L 29.66668 -82.35574
## 1366                 51 summer       L 29.66668 -82.35574
## 1367                 51 summer       L 29.66668 -82.35574
## 1368                 51 summer       L 29.66668 -82.35574
## 1369                 51 summer       L 29.66668 -82.35574
## 1370                 51 summer       L 29.66668 -82.35574
## 1371                 51 summer       L 29.66668 -82.35574
## 1372                 51 summer       L 29.66668 -82.35574
## 1373                 51 summer       L 29.66668 -82.35574
## 1374                 51 summer       S 29.66668 -82.35574
## 1375                 51 summer       L 25.94157 -80.48569
## 1376                 51 summer       S 25.94157 -80.48569
## 1377                 51 summer       L 25.94157 -80.48569
## 1378                 51 summer       L 25.94157 -80.48569
## 1379                 51 summer       S 25.94157 -80.48569
## 1380                 51 summer       L 25.94157 -80.48569
## 1381                 51 summer       L 25.94157 -80.48569
## 1382                 51 summer       L 25.94157 -80.48569
## 1383                 51 summer       L 25.94157 -80.48569
## 1384                 51 summer       L 25.94157 -80.48569
## 1385                 51 summer       L 25.94157 -80.48569
## 1386                 51 summer       L 25.94157 -80.48569
## 1387                 51 summer       L 25.94157 -80.48569
## 1388                 51 summer       L 25.94157 -80.48569
## 1389                 51 summer       L 25.94157 -80.48569
## 1390                 51 summer       L 25.94157 -80.48569
## 1391                 51 summer       L 25.94157 -80.48569
## 1392                 51 summer       L 25.94157 -80.48569
## 1393                 51 summer       S 25.94157 -80.48569
## 1394                 51 summer       L 25.94157 -80.48569
## 1395                 51 summer       L 25.94157 -80.48569
## 1396                 51 summer       L 25.94157 -80.48569
## 1397                 51 summer       L 25.94157 -80.48569
## 1398                 51 summer       L 25.94157 -80.48569
## 1399                 51 summer       L 25.94157 -80.48569
## 1400                 51 summer       L 25.94157 -80.48569
## 1401                 51 summer       L 25.94157 -80.48569
## 1402                 51 summer       L 25.94157 -80.48569
## 1403                 51 summer       S 25.94157 -80.48569
## 1404                 51 summer       L 25.94157 -80.48569
## 1405                 51 summer       L 25.94157 -80.48569
## 1406                 51 summer       L 25.94157 -80.48569
## 1407                 51 summer       L 25.94157 -80.48569
## 1408                 51 summer       S 25.94157 -80.48569
## 1409                 51 summer       L 25.94157 -80.48569
## 1410                 51 summer       L 25.94157 -80.48569
## 1411                 51 summer       L 25.94157 -80.48569
## 1412                 51 summer       L 25.94157 -80.48569
## 1413                 51 summer       L 25.94157 -80.48569
## 1414                 51 summer       L 25.94157 -80.48569
## 1415                 51 summer       L 25.94157 -80.48569
## 1416                 51 summer       L 25.94157 -80.48569
## 1417                 51 summer       L 25.94157 -80.48569
## 1418                 51 summer       S 25.94157 -80.48569
## 1419                 51 summer       L 25.94157 -80.48569
## 1420                 51 summer       L 25.94157 -80.48569
## 1421                 51 summer       L 25.94157 -80.48569
## 1422                 51 summer       L 25.94157 -80.48569
## 1423                 51 summer       L 25.94157 -80.48569
## 1424                 51 summer       L 25.94157 -80.48569
## 1425                 51 summer       L 25.94157 -80.48569
## 1426                 51 summer       L 25.94157 -80.48569
## 1427                 51 summer       L 25.94157 -80.48569
## 1428                 51 summer       L 25.94157 -80.48569
## 1429                 51 summer       L 25.94157 -80.48569
## 1430                 51 summer       L 25.94157 -80.48569
## 1431                 51 summer       L 25.94157 -80.48569
## 1432                 51 summer       L 25.94157 -80.48569
## 1433                 51 summer       L 25.94157 -80.48569
## 1434                 51 summer       L 25.94157 -80.48569
## 1435                 51 summer       L 25.94157 -80.48569
## 1436                 51 summer       L 25.94157 -80.48569
## 1437                 51 summer       L 25.94157 -80.48569
## 1438                 51 summer       L 25.94157 -80.48569
## 1439                 51 summer       L 25.94157 -80.48569
## 1440                 51 summer       L 25.94157 -80.48569
## 1441                 51 summer       L 25.94157 -80.48569
## 1442                 51 summer       L 25.94157 -80.48569
## 1443                 51 summer       L 25.94157 -80.48569
## 1444                 51 summer       L 25.94157 -80.48569
## 1445                 51 summer       L 25.94157 -80.48569
## 1446                 51 summer       L 25.94157 -80.48569
## 1447                 51 summer       L 25.94157 -80.48569
## 1448                 51 summer       L 25.94157 -80.48569
## 1449                 51 summer       L 25.94157 -80.48569
## 1450                 51 summer       L 25.94157 -80.48569
## 1451                 51 summer       L 25.94157 -80.48569
## 1452                 51 summer       L 25.94157 -80.48569
## 1453                 51 summer       L 25.94157 -80.48569
## 1454                 51 summer       L 25.94157 -80.48569
## 1455                 51 summer       L 25.94157 -80.48569
## 1456                 51 summer       L 25.94157 -80.48569
## 1457                 51 summer       L 25.94157 -80.48569
## 1458                 51 summer       L 25.94157 -80.48569
## 1459                 51 summer       L 25.94157 -80.48569
## 1460                 51 summer       L 25.94157 -80.48569
## 1461                 51 summer       L 25.94157 -80.48569
## 1462                 51 summer       L 25.94157 -80.48569
## 1463                 51 summer       L 25.94157 -80.48569
## 1464                 51 summer       L 25.94157 -80.48569
## 1465                 51 summer       L 25.94157 -80.48569
## 1466                 51 summer       L 25.94157 -80.48569
## 1467                 51 summer       L 25.94157 -80.48569
## 1468                 51 summer       L 25.94157 -80.48569
## 1469                 51 summer       L 25.94157 -80.48569
## 1470                 51 summer       L 25.94157 -80.48569
## 1471                 51 summer       L 25.94157 -80.48569
## 1472                 51 summer       L 25.94157 -80.48569
## 1473                 51 summer       L 25.94157 -80.48569
## 1474                 51 summer       L 25.94157 -80.48569
## 1475                 51 summer       L 25.94157 -80.48569
## 1476                 51 summer       L 25.94157 -80.48569
## 1477                 51 summer       L 25.94157 -80.48569
## 1478                 51 summer       L 25.94157 -80.48569
## 1479                 51 summer       L 25.94157 -80.48569
## 1480                 51 summer       L 25.94157 -80.48569
## 1481                 51 summer       L 25.94157 -80.48569
## 1482                 51 summer       L 25.94157 -80.48569
## 1483                 51 summer       L 25.94157 -80.48569
## 1484                 51 summer       L 25.94157 -80.48569
## 1485                 51 summer       L 25.94157 -80.48569
## 1486                 51 summer       L 25.94157 -80.48569
## 1487                 51 summer       L 25.94157 -80.48569
## 1488                 51 summer       L 25.94157 -80.48569
## 1489                 51 summer       L 25.94157 -80.48569
## 1490                 51 summer       L 25.94157 -80.48569
## 1491                 51 summer       L 25.94157 -80.48569
## 1492                 51 summer       L 25.94157 -80.48569
## 1493                 51 summer       L 25.94157 -80.48569
## 1494                 51 summer       L 25.94157 -80.48569
## 1495                 51 summer       L 25.94157 -80.48569
## 1496                 51 summer       L 25.94157 -80.48569
## 1497                 51 summer       L 25.94157 -80.48569
## 1498                 51 summer       L 25.94157 -80.48569
## 1499                 51 summer       L 25.94157 -80.48569
## 1500                 51 summer       L 25.94157 -80.48569
## 1501                 51 summer       L 25.94157 -80.48569
## 1502                 51 summer       L 25.12811 -80.40805
## 1503                 51 summer       L 25.12811 -80.40805
## 1504                 51 summer       L 25.12811 -80.40805
## 1505                 51 summer       S 25.12811 -80.40805
## 1506                 51 summer       L 25.12811 -80.40805
## 1507                 51 summer       L 25.12811 -80.40805
## 1508                 51 summer       L 25.12811 -80.40805
## 1509                 51 summer       L 25.12811 -80.40805
## 1510                 51 summer       L 25.12811 -80.40805
## 1511                 51 summer       L 25.12811 -80.40805
## 1512                 51 summer       L 25.12811 -80.40805
## 1513                 51 summer       S 25.12811 -80.40805
## 1514                 51 summer       L 25.12811 -80.40805
## 1515                 51 summer       L 25.12811 -80.40805
## 1516                 51 summer       L 25.12811 -80.40805
## 1517                 51 summer       L 25.12811 -80.40805
## 1518                 51 summer       L 25.12811 -80.40805
## 1519                 51 summer       L 25.12800 -80.40808
## 1520                 51 summer       L 25.12800 -80.40808
## 1521                 51 summer       L 25.12800 -80.40808
## 1522                 51 summer       L 25.12800 -80.40808
## 1523                 51 summer       L 25.12800 -80.40808
## 1524                 51 summer       S 25.12800 -80.40808
## 1525                 51 summer       S 25.12800 -80.40808
## 1526                 51 summer       L 25.12800 -80.40808
## 1527                 51 summer       L 25.12800 -80.40808
## 1528                 51 summer       L 25.12800 -80.40808
## 1529                 51 summer       L 25.12800 -80.40808
## 1530                 51 summer       L 25.12800 -80.40808
## 1531                 51 summer       L 25.12800 -80.40808
## 1532                 51 summer       L 25.12800 -80.40808
## 1533                 51 summer       L 25.12800 -80.40808
## 1534                 51 summer       L 25.12800 -80.40808
## 1535                 51 summer       S 25.12800 -80.40808
## 1536                 51 summer       L 25.12800 -80.40808
## 1537                 51 summer       L 25.12858 -80.40809
## 1538                 51 summer       L 25.12858 -80.40809
## 1539                 51 summer       L 25.12858 -80.40809
## 1540                 51 summer       L 25.12858 -80.40809
## 1541                 51 summer       S 25.12858 -80.40809
## 1542                 51 summer       L 25.12858 -80.40809
## 1543                 51 summer       L 25.12858 -80.40809
## 1544                 51 summer       L 25.12858 -80.40809
## 1545                 51 summer       S 25.12858 -80.40809
## 1546                 51 summer       S 25.12858 -80.40809
## 1547                 51 summer       L 25.12858 -80.40809
## 1548                 51 summer       L 25.12858 -80.40809
## 1549                 51 summer       S 25.12858 -80.40809
## 1550                 51 summer       L 25.12858 -80.40809
## 1551                 51 summer       S 25.12858 -80.40809
## 1552                 51 summer       S 25.12858 -80.40809
## 1553                 51 summer       L 25.12858 -80.40809
## 1554                 51 summer       L 25.12858 -80.40809
## 1555                 51 summer       S 25.12858 -80.40809
## 1556                 51 summer       L 25.12858 -80.40809
## 1557                 51 summer       L 25.12858 -80.40809
## 1558                 51 summer       L 25.12858 -80.40809
## 1559                 51 summer       L 25.12858 -80.40809
## 1560                 51 summer       S 25.12858 -80.40809
## 1561                 51 summer       L 25.12858 -80.40809
## 1562                 51 summer       S 25.12858 -80.40809
## 1563                 51 summer       S 25.12858 -80.40809
## 1564                 51 summer       S 25.12858 -80.40809
## 1565                 51 summer       S 25.12858 -80.40809
## 1566                 51 summer       S 25.12858 -80.40809
## 1567                 51 summer       S 25.12858 -80.40809
## 1568                 51 summer       L 25.12858 -80.40809
## 1569                 51 summer       S 25.12858 -80.40809
## 1570                 51 summer       L 25.12858 -80.40809
## 1571                 51 summer       S 25.12858 -80.40809
## 1572                 51 summer       S 25.12858 -80.40809
## 1573                 51 summer       L 25.12858 -80.40809
## 1574                 51 summer       L 25.25688 -80.30938
## 1575                 51 summer       L 25.25688 -80.30938
## 1576                 51 summer       L 25.25688 -80.30938
## 1577                 51 summer       L 25.25688 -80.30938
## 1578                 51 summer       L 25.25688 -80.30938
## 1579                 51 summer       L 25.25688 -80.30938
## 1580                 51 summer       L 25.25688 -80.30938
## 1581                 51 summer       L 25.25688 -80.30938
## 1582                 51 summer       L 25.25688 -80.30938
## 1583                 51 summer       L 25.25688 -80.30938
## 1584                 51 summer       L 25.25688 -80.30938
## 1585                 51 summer       L 25.25688 -80.30938
## 1586                 51 summer       S 25.25688 -80.30938
## 1587                 51 summer       L 25.25688 -80.30938
## 1588                 51 summer       S 25.25688 -80.30938
## 1589                 51 summer       L 25.25688 -80.30938
## 1590                 51 summer       L 25.25688 -80.30938
## 1591                 51 summer       L 25.25688 -80.30938
## 1592                 51 summer       L 25.25688 -80.30938
## 1593                 51 summer       S 25.25688 -80.30938
## 1594                 51 summer       L 27.93573 -81.57409
## 1595                 51 summer       L 27.93573 -81.57409
## 1596                 51 summer       L 27.93573 -81.57409
## 1597                 51 summer       L 27.93573 -81.57409
## 1598                 51 summer       L 27.93573 -81.57409
## 1599                 51 summer       L 27.93573 -81.57409
## 1600                 51 summer       L 27.93573 -81.57409
## 1601                 51 summer       L 27.93573 -81.57409
## 1602                 51 summer       L 27.93573 -81.57409
## 1603                 51 summer       L 27.93573 -81.57409
## 1604                 51 summer       L 27.93573 -81.57409
## 1605                 51 summer       L 27.93573 -81.57409
## 1606                 51 summer       L 27.93573 -81.57409
## 1607                 51 summer       L 27.93573 -81.57409
## 1608                 51 summer       L 27.93573 -81.57409
## 1609                 51 summer       S 27.93573 -81.57409
## 1610                 51 summer       L 27.93573 -81.57409
## 1611                 51 summer       S 27.93573 -81.57409
## 1612                 51 summer       L 27.93573 -81.57409
## 1613                 51 summer       L 27.93573 -81.57409
## 1614                 51 summer       L 27.93573 -81.57409
## 1615                 51 summer       L 27.93573 -81.57409
## 1616                 51 summer       L 27.93573 -81.57409
## 1617                 51 summer       L 27.93573 -81.57409
## 1618                 51 summer       L 27.93573 -81.57409
## 1619                 51 summer       S 27.93573 -81.57409
## 1620                 51 summer       L 27.93573 -81.57409
## 1621                 51 summer       L 27.93573 -81.57409
## 1622                 51 summer       L 27.93573 -81.57409
## 1623                 51 summer       L 27.93573 -81.57409
## 1624                 51 summer       L 27.93573 -81.57409
## 1625                 51 summer       L 27.93573 -81.57409
## 1626                 51 summer       L 27.93573 -81.57409
## 1627                 51 summer       L 27.93573 -81.57409
## 1628                 51 summer       S 27.93573 -81.57409
## 1629                 51 summer       S 27.93573 -81.57409
## 1630                 51 summer       L 27.93573 -81.57409
## 1631                 51 summer       L 27.93573 -81.57409
## 1632                 51 summer       L 27.93573 -81.57409
## 1633                 51 summer       S 27.93573 -81.57409
## 1634                 51 summer       S 27.93573 -81.57409
## 1635                 51 summer       L 27.93573 -81.57409
## 1636                 51 summer       L 27.93573 -81.57409
## 1637                 51 summer       S 27.93573 -81.57409
## 1638                 51 summer       S 27.93573 -81.57409
## 1639                 51 summer       L 27.93573 -81.57409
## 1640                 51 summer       S 27.93573 -81.57409
## 1641                 51 summer       S 27.93573 -81.57409
## 1642                 51 summer       L 27.93573 -81.57409
## 1643                 51 summer       S 27.93573 -81.57409
## 1644                 51 summer       L 27.93573 -81.57409
## 1645                 51 summer       S 27.93573 -81.57409
## 1646                 51 summer       L 27.93573 -81.57409
## 1647                 51 summer       L 27.93573 -81.57409
## 1648                 51 summer       S 27.93573 -81.57409
## 1649                 51 summer       L 27.93573 -81.57409
## 1650                 51 summer       L 27.93573 -81.57409
## 1651                 51 summer       S 27.93573 -81.57409
## 1652                 51 summer       L 27.93573 -81.57409
## 1653                 51 summer       L 27.93573 -81.57409
## 1654                 51 summer       S 27.93573 -81.57409
## 1655                 51 summer       L 27.93573 -81.57409
## 1656                 51 summer       S 27.93573 -81.57409
## 1657                 51 summer       S 27.93573 -81.57409
## 1658                 51 summer       S 27.93573 -81.57409
## 1659                 51 summer       S 27.93573 -81.57409
## 1660                 51 summer       L 27.93573 -81.57409
## 1661                 51 summer       S 27.93573 -81.57409
## 1662                 51 summer       L 27.93573 -81.57409
## 1663                 51 summer       L 27.93573 -81.57409
## 1664                 51 summer       L 27.93573 -81.57409
## 1665                 51 summer       L 27.93573 -81.57409
## 1666                 51 summer       L 27.93573 -81.57409
## 1667                 51 summer       S 27.93573 -81.57409
## 1668                 51 summer       S 27.93573 -81.57409
## 1669                 51 summer       L 27.93573 -81.57409
## 1670                 51 summer       S 27.93573 -81.57409
## 1671                 51 summer       S 27.93573 -81.57409
## 1672                 51 summer       S 27.93573 -81.57409
## 1673                 51 summer       L 27.93573 -81.57409
## 1674                 51 summer       S 27.93573 -81.57409
## 1675                 51 summer       L 27.93573 -81.57409
## 1676                 51 summer       S 27.93573 -81.57409
## 1677                 51 summer       S 27.93573 -81.57409
## 1678                 51 summer       S 27.93573 -81.57409
## 1679                 51 summer       S 27.93573 -81.57409
## 1680                 51 summer       L 27.93573 -81.57409
## 1681                 51 summer       S 27.93573 -81.57409
## 1682                 51 summer       L 27.93573 -81.57409
## 1683                 51 summer       L 27.93573 -81.57409
## 1684                 51 summer       S 27.93573 -81.57409
## 1685                 51 summer       L 28.80530 -81.88184
## 1686                 51 summer       L 28.80530 -81.88184
## 1687                 51 summer       S 28.80530 -81.88184
## 1688                 51 summer       S 28.80530 -81.88184
## 1689                 51 summer       S 28.80530 -81.88184
## 1690                 51 summer       L 28.80530 -81.88184
## 1691                 51 summer       L 28.80530 -81.88184
## 1692                 51 summer       L 28.80530 -81.88184
## 1693                 51 summer       L 28.80530 -81.88184
## 1694                 51 summer       S 28.80530 -81.88184
## 1695                 51 summer       L 28.80530 -81.88184
## 1696                 51 summer       L 28.80530 -81.88184
## 1697                 51 summer       L 28.80530 -81.88184
## 1698                 51 summer       L 28.80530 -81.88184
## 1699                 51 summer       S 28.80530 -81.88184
## 1700                 51 summer       S 28.80530 -81.88184
## 1701                 51 summer       L 28.80530 -81.88184
## 1702                 51 summer       S 28.80530 -81.88184
## 1703                 51 summer       L 28.80530 -81.88184
## 1704                 51 summer       L 28.80530 -81.88184
## 1705                 51 summer       L 28.80530 -81.88184
## 1706                 51 summer       L 28.80530 -81.88184
## 1707                 51 summer       L 28.80530 -81.88184
## 1708                 51 summer       S 28.80530 -81.88184
## 1709                 51 summer       L 28.80530 -81.88184
## 1710                 51 summer       L 28.80530 -81.88184
## 1711                 51 summer       S 28.80530 -81.88184
## 1712                 51 summer       L 28.80530 -81.88184
## 1713                 51 summer       L 28.80530 -81.88184
## 1714                 51 summer       L 28.80530 -81.88184
## 1715                 51 summer       L 28.80530 -81.88184
## 1716                 51 summer       L 28.80530 -81.88184
## 1717                 51 summer       L 28.80530 -81.88184
## 1718                 51 summer       S 28.80530 -81.88184
## 1719                 51 summer       S 28.80530 -81.88184
## 1720                 51 summer       L 28.80530 -81.88184
## 1721                 51 summer       L 28.80530 -81.88184
## 1722                 51 summer       S 28.80530 -81.88184
## 1723                 51 summer       L 28.80530 -81.88184
## 1724                 51 summer       L 28.80530 -81.88184
## 1725                 51 summer       S 28.80530 -81.88184
## 1726                 51 summer       L 28.80530 -81.88184
## 1727                 51 summer       L 28.80530 -81.88184
## 1728                 51 summer       L 28.80530 -81.88184
## 1729                 51 summer       S 28.80530 -81.88184
## 1730                 51 summer       S 28.80530 -81.88184
## 1731                 51 summer       L 28.80530 -81.88184
## 1732                 51 summer       L 28.80530 -81.88184
## 1733                 51 summer       L 28.80530 -81.88184
## 1734                 51 summer       S 28.80530 -81.88184
## 1735                 51 summer       S 28.80530 -81.88184
## 1736                 51 summer       S 28.80530 -81.88184
## 1737                 51 summer       S 28.80530 -81.88184
## 1738                 51 summer       S 28.80530 -81.88184
## 1739                 51 summer       S 28.80530 -81.88184
## 1740                 51 summer       S 28.80530 -81.88184
## 1741                 51 summer       L 28.80530 -81.88184
## 1742                 51 summer       S 28.80530 -81.88184
## 1743                 64   fall       L 29.66648 -82.35720
## 1744                 64   fall       L 29.66648 -82.35720
## 1745                 64   fall       L 29.66648 -82.35720
## 1746                 64   fall       L 29.66648 -82.35720
## 1747                 64   fall       L 29.66648 -82.35720
## 1748                 64   fall       L 29.66648 -82.35720
## 1749                 64   fall       L 29.66648 -82.35720
## 1750                 64   fall       L 29.66648 -82.35720
## 1751                 64   fall       L 29.66648 -82.35720
## 1752                 64   fall       L 29.66648 -82.35720
## 1753                 64   fall       L 29.66648 -82.35720
## 1754                 64   fall       L 29.66648 -82.35720
## 1755                 64   fall       L 29.66648 -82.35720
## 1756                 64   fall       L 29.66648 -82.35720
## 1757                 64   fall       L 29.66648 -82.35720
## 1758                 64   fall       L 29.66648 -82.35720
## 1759                 64   fall       S 29.66648 -82.35720
## 1760                 64   fall       L 29.66648 -82.35720
## 1761                 64   fall       L 29.66648 -82.35720
## 1762                 64   fall       L 29.66648 -82.35720
## 1763                 64   fall       L 29.66648 -82.35720
## 1764                 64   fall       L 29.66648 -82.35720
## 1765                 64   fall       L 29.66648 -82.35720
## 1766                 64   fall       L 29.66648 -82.35720
## 1767                 64   fall       L 29.66648 -82.35720
## 1768                 64   fall       L 29.66648 -82.35720
## 1769                 64   fall       L 29.66648 -82.35720
## 1770                 64   fall       L 29.66648 -82.35720
## 1771                 64   fall       L 29.66648 -82.35720
## 1772                 64   fall       L 29.66648 -82.35720
## 1773                 64   fall       L 29.66648 -82.35720
## 1774                 64   fall       L 29.66648 -82.35720
## 1775                 64   fall       L 29.66648 -82.35720
## 1776                 64   fall       L 29.66648 -82.35720
## 1777                 64   fall       L 29.66648 -82.35720
## 1778                 64   fall       L 29.66648 -82.35720
## 1779                 64   fall       L 29.66648 -82.35720
## 1780                 64   fall       L 29.66648 -82.35720
## 1781                 64   fall       L 29.66648 -82.35720
## 1782                 64   fall       L 29.66648 -82.35720
## 1783                 64   fall       L 29.66648 -82.35720
## 1784                 64   fall       L 29.66648 -82.35720
## 1785                 64   fall       L 29.66648 -82.35720
## 1786                 64   fall       L 29.66648 -82.35720
## 1787                 64   fall       L 29.66648 -82.35720
## 1788                 64   fall       L 29.66648 -82.35720
## 1789                 64   fall       L 29.66648 -82.35720
## 1790                 64   fall       L 29.66648 -82.35720
## 1791                 64   fall       L 29.66648 -82.35720
## 1792                 64   fall       L 29.66648 -82.35720
## 1793                 64   fall       L 29.66648 -82.35720
## 1794                 64   fall       L 29.66648 -82.35720
## 1795                 64   fall       L 29.66648 -82.35720
## 1796                 64   fall       L 29.66648 -82.35720
## 1797                 64   fall       L 29.66648 -82.35720
## 1798                 64   fall       S 29.66648 -82.35720
## 1799                 64   fall       L 29.66648 -82.35720
## 1800                 64   fall       L 29.66648 -82.35720
## 1801                 64   fall       L 29.66648 -82.35720
## 1802                 64   fall       L 29.66648 -82.35720
## 1803                 64   fall       S 29.66648 -82.35720
## 1804                 64   fall       L 29.66648 -82.35720
## 1805                 64   fall       L 29.66648 -82.35720
## 1806                 64   fall       L 29.66648 -82.35720
## 1807                 64   fall       L 25.19492 -80.34596
## 1808                 64   fall       L 25.19492 -80.34596
## 1809                 64   fall       L 25.19492 -80.34596
## 1810                 64   fall       L 25.19492 -80.34596
## 1811                 64   fall       S 25.19492 -80.34596
## 1812                 64   fall       S 25.19492 -80.34596
## 1813                 64   fall       S 25.19492 -80.34596
## 1814                 64   fall       S 25.19492 -80.34596
## 1815                 64   fall       L 25.19492 -80.34596
## 1816                 64   fall       S 25.19492 -80.34596
## 1817                 64   fall       S 25.19492 -80.34596
## 1818                 64   fall       L 25.19492 -80.34596
## 1819                 64   fall       S 25.19492 -80.34596
## 1820                 64   fall       S 25.19492 -80.34596
## 1821                 64   fall       L 25.19492 -80.34596
## 1822                 64   fall       S 25.19492 -80.34596
## 1823                 64   fall       L 25.19492 -80.34596
## 1824                 64   fall       S 25.19492 -80.34596
## 1825                 64   fall       L 25.19492 -80.34596
## 1826                 64   fall       L 25.19492 -80.34596
## 1827                 64   fall       L 25.19492 -80.34596
## 1828                 64   fall       S 25.19492 -80.34596
## 1829                 64   fall       S 25.19492 -80.34596
## 1830                 64   fall       L 25.19492 -80.34596
## 1831                 64   fall       S 25.19492 -80.34596
## 1832                 64   fall       L 25.19492 -80.34596
## 1833                 64   fall       L 25.19492 -80.34596
## 1834                 64   fall       S 25.19492 -80.34596
## 1835                 64   fall       S 25.19492 -80.34596
## 1836                 64   fall       S 25.19492 -80.34596
## 1837                 64   fall       L 25.19492 -80.34596
## 1838                 64   fall       S 25.19492 -80.34596
## 1839                 64   fall       L 25.19492 -80.34596
## 1840                 64   fall       L 25.19492 -80.34596
## 1841                 64   fall       L 25.19492 -80.34596
## 1842                 64   fall       S 25.19492 -80.34596
## 1843                 64   fall       S 25.19492 -80.34596
## 1844                 64   fall       S 25.19492 -80.34596
## 1845                 64   fall       S 25.19492 -80.34596
## 1846                 64   fall       S 25.19492 -80.34596
## 1847                 64   fall       L 25.19492 -80.34596
## 1848                 64   fall       S 25.19492 -80.34596
## 1849                 64   fall       L 25.19492 -80.34596
## 1850                 64   fall       L 25.19492 -80.34596
## 1851                 64   fall       L 25.19492 -80.34596
## 1852                 64   fall       S 25.19492 -80.34596
## 1853                 64   fall       L 25.19492 -80.34596
## 1854                 64   fall       L 25.19492 -80.34596
## 1855                 64   fall       L 25.19492 -80.34596
## 1856                 64   fall       L 25.19492 -80.34596
## 1857                 64   fall       S 25.19492 -80.34596
## 1858                 64   fall       S 25.19492 -80.34596
## 1859                 64   fall       L 25.19492 -80.34596
## 1860                 64   fall       S 25.19492 -80.34596
## 1861                 64   fall       S 25.19492 -80.34596
## 1862                 64   fall       L 25.19492 -80.34596
## 1863                 64   fall       L 25.19492 -80.34596
## 1864                 64   fall       S 25.19492 -80.34596
## 1865                 64   fall       L 25.19492 -80.34596
## 1866                 64   fall       S 25.19492 -80.34596
## 1867                 64   fall       L 25.19492 -80.34596
## 1868                 64   fall       S 25.19492 -80.34596
## 1869                 64   fall       L 25.19492 -80.34596
## 1870                 64   fall       S 25.19492 -80.34596
## 1871                 64   fall       L 25.19492 -80.34596
## 1872                 64   fall       S 25.19492 -80.34596
## 1873                 64   fall       S 25.19492 -80.34596
## 1874                 64   fall       S 25.19492 -80.34596
## 1875                 64   fall       L 27.93575 -81.57412
## 1876                 64   fall       L 27.93575 -81.57412
## 1877                 64   fall       L 27.93575 -81.57412
## 1878                 64   fall       L 27.93575 -81.57412
## 1879                 64   fall       L 27.93575 -81.57412
## 1880                 64   fall       L 27.93575 -81.57412
## 1881                 64   fall       L 27.93575 -81.57412
## 1882                 64   fall       S 27.93575 -81.57412
## 1883                 64   fall       L 27.93575 -81.57412
## 1884                 64   fall       L 27.93575 -81.57412
## 1885                 64   fall       L 27.93575 -81.57412
## 1886                 64   fall       L 27.93575 -81.57412
## 1887                 64   fall       L 27.93575 -81.57412
## 1888                 64   fall       L 27.93575 -81.57412
## 1889                 64   fall       L 27.93575 -81.57412
## 1890                 64   fall       L 27.93575 -81.57412
## 1891                 64   fall       L 27.93575 -81.57412
## 1892                 64   fall       L 27.93575 -81.57412
## 1893                 64   fall       L 27.93575 -81.57412
## 1894                 64   fall       L 27.93575 -81.57412
## 1895                 64   fall       L 27.93575 -81.57412
## 1896                 64   fall       L 27.93575 -81.57412
## 1897                 64   fall       L 27.93575 -81.57412
## 1898                 64   fall       L 27.93575 -81.57412
## 1899                 64   fall       L 27.93575 -81.57412
## 1900                 64   fall       S 27.93575 -81.57412
## 1901                 64   fall       L 27.93575 -81.57412
## 1902                 64   fall       L 27.93575 -81.57412
## 1903                 64   fall       S 27.93575 -81.57412
## 1904                 64   fall       L 27.93575 -81.57412
## 1905                 64   fall       L 27.93575 -81.57412
## 1906                 64   fall       L 27.93575 -81.57412
## 1907                 64   fall       L 27.93575 -81.57412
## 1908                 64   fall       L 27.93575 -81.57412
## 1909                 64   fall       L 27.93575 -81.57412
## 1910                 64   fall       L 27.93575 -81.57412
## 1911                 64   fall       L 27.93575 -81.57412
## 1912                 64   fall       L 27.93575 -81.57412
## 1913                 64   fall       L 27.93575 -81.57412
## 1914                 64   fall       L 27.93575 -81.57412
## 1915                 64   fall       L 28.81527 -81.88217
## 1916                 72 spring       L 29.66679 -82.35761
## 1917                 72 spring       L 29.66679 -82.35761
## 1918                 72 spring       L 29.66679 -82.35761
## 1919                 72 spring       L 29.66679 -82.35761
## 1920                 72 spring       L 29.66679 -82.35761
## 1921                 72 spring       S 29.66679 -82.35761
## 1922                 72 spring       L 29.66679 -82.35761
## 1923                 72 spring       L 29.66679 -82.35761
## 1924                 72 spring       L 29.66679 -82.35761
## 1925                 72 spring       L 29.66197 -82.34728
## 1926                 72 spring       L 29.66197 -82.34728
## 1927                 72 spring       L 29.66197 -82.34728
## 1928                 72 spring       L 29.66197 -82.34728
## 1929                 72 spring       L 29.66197 -82.34728
## 1930                 72 spring       L 29.66197 -82.34728
## 1931                 72 spring       L 29.66197 -82.34728
## 1932                 72 spring       L 29.66197 -82.34728
## 1933                 72 spring       L 29.66197 -82.34728
## 1934                 72 spring       L 29.66197 -82.34728
## 1935                 72 spring       S 29.66197 -82.34728
## 1936                 72 spring       L 29.66197 -82.34728
## 1937                 72 spring       L 29.66197 -82.34728
## 1938                 72 spring       L 29.66197 -82.34728
## 1939                 72 spring       L 29.66197 -82.34728
## 1940                 72 spring       L 29.66197 -82.34728
## 1941                 72 spring       L 29.66197 -82.34728
## 1942                 72 spring       L 29.66197 -82.34728
## 1943                 72 spring       L 29.66197 -82.34728
## 1944                 72 spring       L 29.66197 -82.34728
## 1945                 72 spring       L 29.66197 -82.34728
## 1946                 72 spring       L 29.66197 -82.34728
## 1947                 72 spring       L 29.66197 -82.34728
## 1948                 72 spring       L 29.66197 -82.34728
## 1949                 72 spring       L 29.66197 -82.34728
## 1950                 72 spring       L 29.66197 -82.34728
## 1951                 72 spring       L 29.66197 -82.34728
## 1952                 72 spring       L 29.66197 -82.34728
## 1953                 72 spring       L 29.66197 -82.34728
## 1954                 72 spring       L 29.66197 -82.34728
## 1955                 72 spring       L 29.66197 -82.34728
## 1956                 72 spring       L 29.66197 -82.34728
## 1957                 72 spring       L 29.66197 -82.34728
## 1958                 72 spring       L 29.66197 -82.34728
## 1959                 72 spring       L 29.66197 -82.34728
## 1960                 72 spring       L 29.66197 -82.34728
## 1961                 72 spring       L 29.66197 -82.34728
## 1962                 72 spring       L 29.66197 -82.34728
## 1963                 72 spring       L 29.66197 -82.34728
## 1964                 72 spring       L 29.66197 -82.34728
## 1965                 72 spring       S 25.48862 -80.48976
## 1966                 72 spring       L 25.48862 -80.48976
## 1967                 72 spring       L 25.48862 -80.48976
## 1968                 72 spring       L 25.48862 -80.48976
## 1969                 72 spring       L 25.48862 -80.48976
## 1970                 72 spring       L 25.48862 -80.48976
## 1971                 72 spring       S 25.48862 -80.48976
## 1972                 72 spring       L 25.48862 -80.48976
## 1973                 72 spring       L 25.48862 -80.48976
## 1974                 72 spring       S 25.48862 -80.48976
## 1975                 72 spring       S 25.48862 -80.48976
## 1976                 72 spring       S 25.48862 -80.48976
## 1977                 72 spring       L 25.48862 -80.48976
## 1978                 72 spring       S 25.48862 -80.48976
## 1979                 72 spring       S 25.48862 -80.48976
## 1980                 72 spring       L 25.48862 -80.48976
## 1981                 72 spring       L 25.48862 -80.48976
## 1982                 72 spring       S 25.48862 -80.48976
## 1983                 72 spring       S 25.12848 -80.40754
## 1984                 72 spring       S 25.12848 -80.40754
## 1985                 72 spring       S 25.12848 -80.40754
## 1986                 72 spring       L 25.12848 -80.40754
## 1987                 72 spring       L 25.12848 -80.40754
## 1988                 72 spring       L 25.12848 -80.40754
## 1989                 72 spring       L 25.12848 -80.40754
## 1990                 72 spring       S 25.12848 -80.40754
## 1991                 72 spring       S 25.12848 -80.40754
## 1992                 72 spring       S 25.12848 -80.40754
## 1993                 72 spring       S 25.12848 -80.40754
## 1994                 72 spring       S 25.12848 -80.40754
## 1995                 72 spring       S 25.12848 -80.40754
## 1996                 72 spring       L 25.12848 -80.40754
## 1997                 72 spring       S 25.12848 -80.40754
## 1998                 72 spring       S 25.12848 -80.40754
## 1999                 72 spring       S 25.12848 -80.40754
## 2000                 72 spring       L 25.12848 -80.40754
## 2001                 72 spring       L 25.12848 -80.40754
## 2002                 72 spring       L 25.12848 -80.40754
## 2003                 72 spring       L 25.12848 -80.40754
## 2004                 72 spring       S 25.12848 -80.40754
## 2005                 72 spring       L 25.12848 -80.40754
## 2006                 72 spring       L 25.12848 -80.40754
## 2007                 72 spring       S 25.12848 -80.40754
## 2008                 72 spring       L 25.12848 -80.40754
## 2009                 72 spring       S 25.12848 -80.40754
## 2010                 72 spring       S 25.12848 -80.40754
## 2011                 72 spring       S 25.12848 -80.40754
## 2012                 72 spring       S 25.12848 -80.40754
## 2013                 72 spring       L 25.12848 -80.40754
## 2014                 72 spring       S 25.12848 -80.40754
## 2015                 72 spring       L 25.12848 -80.40754
## 2016                 72 spring       S 25.12848 -80.40754
## 2017                 72 spring       S 25.12848 -80.40754
## 2018                 72 spring       S 25.12848 -80.40754
## 2019                 72 spring       L 25.12848 -80.40754
## 2020                 72 spring       S 25.12848 -80.40754
## 2021                 72 spring       S 25.12848 -80.40754
## 2022                 72 spring       S 25.12848 -80.40754
## 2023                 72 spring       S 25.12848 -80.40754
## 2024                 72 spring       L 25.12848 -80.40754
## 2025                 72 spring       S 25.12848 -80.40754
## 2026                 72 spring       S 25.12848 -80.40754
## 2027                 72 spring       S 25.12848 -80.40754
## 2028                 72 spring       S 25.12848 -80.40754
## 2029                 72 spring       L 25.12848 -80.40754
## 2030                 72 spring       L 25.12848 -80.40754
## 2031                 72 spring       L 25.12848 -80.40754
## 2032                 72 spring       S 25.12848 -80.40754
## 2033                 72 spring       S 25.12848 -80.40754
## 2034                 72 spring       L 25.12848 -80.40754
## 2035                 72 spring       S 25.12848 -80.40754
## 2036                 72 spring       L 25.12848 -80.40754
## 2037                 72 spring       S 25.12848 -80.40754
## 2038                 72 spring       L 25.12848 -80.40754
## 2039                 72 spring       S 25.12848 -80.40754
## 2040                 72 spring       S 25.12848 -80.40754
## 2041                 72 spring       S 25.12848 -80.40754
## 2042                 72 spring       L 25.12848 -80.40754
## 2043                 72 spring       S 25.12848 -80.40754
## 2044                 72 spring       S 25.12848 -80.40754
## 2045                 72 spring       S 25.12848 -80.40754
## 2046                 72 spring       S 25.12848 -80.40754
## 2047                 72 spring       S 25.12848 -80.40754
## 2048                 72 spring       S 25.12848 -80.40754
## 2049                 72 spring       S 25.12848 -80.40754
## 2050                 72 spring       L 25.12848 -80.40754
## 2051                 72 spring       S 25.12848 -80.40754
## 2052                 72 spring       S 25.12848 -80.40754
## 2053                 72 spring       L 25.12848 -80.40754
## 2054                 72 spring       S 25.12848 -80.40754
## 2055                 72 spring       S 25.12848 -80.40754
## 2056                 72 spring       L 25.12848 -80.40754
## 2057                 72 spring       S 25.12848 -80.40754
## 2058                 72 spring       S 25.12848 -80.40754
## 2059                 72 spring       L 27.29866 -81.36612
## 2060                 72 spring       L 27.29866 -81.36612
## 2061                 72 spring       L 27.29866 -81.36612
## 2062                 72 spring       L 27.29866 -81.36612
## 2063                 72 spring       L 27.29866 -81.36612
## 2064                 72 spring       L 27.29866 -81.36612
## 2065                 72 spring       L 27.29866 -81.36612
## 2066                 72 spring       L 27.29866 -81.36612
## 2067                 72 spring       S 27.29866 -81.36612
## 2068                 72 spring       L 27.29866 -81.36612
## 2069                 72 spring       S 27.29866 -81.36612
## 2070                 72 spring       L 27.29866 -81.36612
## 2071                 72 spring       S 27.29866 -81.36612
## 2072                 72 spring       L 27.29866 -81.36612
## 2073                 72 spring       L 27.29866 -81.36612
## 2074                 72 spring       L 27.29866 -81.36612
## 2075                 72 spring       L 27.29866 -81.36612
## 2076                 72 spring       S 27.29866 -81.36612
## 2077                 72 spring       L 27.29866 -81.36612
## 2078                 72 spring       S 27.29866 -81.36612
## 2079                 72 spring       L 27.29866 -81.36612
## 2080                 72 spring       L 27.29866 -81.36612
## 2081                 72 spring       L 27.29866 -81.36612
## 2082                 72 spring       L 27.29866 -81.36612
## 2083                 72 spring       L 27.29866 -81.36612
## 2084                 72 spring       L 27.29866 -81.36612
## 2085                 72 spring       L 27.29866 -81.36612
## 2086                 72 spring       L 27.29866 -81.36612
## 2087                 72 spring       L 27.29866 -81.36612
## 2088                 72 spring       L 27.29866 -81.36612
## 2089                 72 spring       L 27.29866 -81.36612
## 2090                 72 spring       L 27.29866 -81.36612
## 2091                 72 spring       L 27.29866 -81.36612
## 2092                 72 spring       L 27.29866 -81.36612
## 2093                 72 spring       L 27.29866 -81.36612
## 2094                 72 spring       L 27.29866 -81.36612
## 2095                 72 spring       L 27.29866 -81.36612
## 2096                 72 spring       L 27.29866 -81.36612
## 2097                 72 spring       L 27.29866 -81.36612
## 2098                 72 spring       L 27.29866 -81.36612
## 2099                 72 spring       L 27.29866 -81.36612
## 2100                 72 spring       L 27.29866 -81.36612
## 2101                 72 spring       L 27.29866 -81.36612
## 2102                 72 spring       L 27.29866 -81.36612
## 2103                 72 spring       S 27.29866 -81.36612
## 2104                 72 spring       L 27.29866 -81.36612
## 2105                 72 spring       L 27.29866 -81.36612
## 2106                 72 spring       S 27.29866 -81.36612
## 2107                 72 spring       L 27.29866 -81.36612
## 2108                 72 spring       S 27.29866 -81.36612
## 2109                 72 spring       L 27.29866 -81.36612
## 2110                 72 spring       L 27.29866 -81.36612
## 2111                 72 spring       L 27.29866 -81.36612
## 2112                 72 spring       L 27.29866 -81.36612
## 2113                 72 spring       L 27.29866 -81.36612
## 2114                 72 spring       L 27.29866 -81.36612
## 2115                 72 spring       L 27.29866 -81.36612
## 2116                 72 spring       L 27.29866 -81.36612
## 2117                 72 spring       L 27.29866 -81.36612
## 2118                 72 spring       L 27.29866 -81.36612
## 2119                 72 spring       L 27.29866 -81.36612
## 2120                 72 spring       L 27.29866 -81.36612
## 2121                 72 spring       L 25.22809 -80.32888
## 2122                 72 spring       L 25.22809 -80.32888
## 2123                 72 spring       L 25.22809 -80.32888
## 2124                 72 spring       L 25.22809 -80.32888
## 2125                 72 spring       S 25.22809 -80.32888
## 2126                 72 spring       L 25.22809 -80.32888
## 2127                 72 spring       S 25.22809 -80.32888
## 2128                 72 spring       L 25.22809 -80.32888
## 2129                 72 spring       L 25.22809 -80.32888
## 2130                 72 spring       L 25.22809 -80.32888
## 2131                 72 spring       S 25.22809 -80.32888
## 2132                 72 spring       L 25.22809 -80.32888
## 2133                 72 spring       L 25.22809 -80.32888
## 2134                 72 spring       L 25.22809 -80.32888
## 2135                 72 spring       L 25.22809 -80.32888
## 2136                 72 spring       S 25.22809 -80.32888
## 2137                 72 spring       L 25.22809 -80.32888
## 2138                 72 spring       L 25.22809 -80.32888
## 2139                 72 spring       L 25.22809 -80.32888
## 2140                 72 spring       L 25.22809 -80.32888
## 2141                 72 spring       L 25.22809 -80.32888
## 2142                 72 spring       S 25.22809 -80.32888
## 2143                 72 spring       L 25.22809 -80.32888
## 2144                 72 spring       S 25.22809 -80.32888
## 2145                 72 spring       S 25.22809 -80.32888
## 2146                 72 spring       L 25.22809 -80.32888
## 2147                 72 spring       S 25.22809 -80.32888
## 2148                 72 spring       L 25.22809 -80.32888
## 2149                 72 spring       S 25.22809 -80.32888
## 2150                 72 spring       L 25.22809 -80.32888
## 2151                 72 spring       S 25.22809 -80.32888
## 2152                 72 spring       S 25.22809 -80.32888
## 2153                 72 spring       L 25.22809 -80.32888
## 2154                 72 spring       L 25.22809 -80.32888
## 2155                 72 spring       L 25.22809 -80.32888
## 2156                 72 spring       L 25.22809 -80.32888
## 2157                 72 spring       L 25.22809 -80.32888
## 2158                 72 spring       L 25.22809 -80.32888
## 2159                 72 spring       L 25.22809 -80.32888
## 2160                 72 spring       S 25.22809 -80.32888
## 2161                 72 spring       L 25.22809 -80.32888
## 2162                 72 spring       L 25.22809 -80.32888
## 2163                 72 spring       S 25.22809 -80.32888
## 2164                 72 spring       S 25.19484 -80.34590
## 2165                 72 spring       L 25.19484 -80.34590
## 2166                 72 spring       L 25.19484 -80.34590
## 2167                 72 spring       L 25.19484 -80.34590
## 2168                 72 spring       L 25.19484 -80.34590
## 2169                 72 spring       S 25.19484 -80.34590
## 2170                 72 spring       L 25.19484 -80.34590
## 2171                 72 spring       L 25.19484 -80.34590
## 2172                 72 spring       S 25.19484 -80.34590
## 2173                 72 spring       L 25.19484 -80.34590
## 2174                 72 spring       S 25.19484 -80.34590
## 2175                 72 spring       L 25.19484 -80.34590
## 2176                 72 spring       L 25.19484 -80.34590
## 2177                 72 spring       L 25.19484 -80.34590
## 2178                 72 spring       S 25.19484 -80.34590
## 2179                 72 spring       S 25.19484 -80.34590
## 2180                 72 spring       S 25.19484 -80.34590
## 2181                 72 spring       S 25.19484 -80.34590
## 2182                 72 spring       S 25.19484 -80.34590
## 2183                 72 spring       S 25.19484 -80.34590
## 2184                 72 spring       L 25.19484 -80.34590
## 2185                 72 spring       L 25.19484 -80.34590
## 2186                 72 spring       S 25.19484 -80.34590
## 2187                 72 spring       L 25.19484 -80.34590
## 2188                 72 spring       L 25.19484 -80.34590
## 2189                 72 spring       L 25.19484 -80.34590
## 2190                 72 spring       L 25.19484 -80.34590
## 2191                 72 spring       S 25.19484 -80.34590
## 2192                 72 spring       L 25.19484 -80.34590
## 2193                 72 spring       S 25.19484 -80.34590
## 2194                 72 spring       S 25.19484 -80.34590
## 2195                 72 spring       L 25.19484 -80.34590
## 2196                 72 spring       L 25.19484 -80.34590
## 2197                 72 spring       S 25.19484 -80.34590
## 2198                 72 spring       L 25.19484 -80.34590
## 2199                 72 spring       L 25.19484 -80.34590
## 2200                 72 spring       S 25.19484 -80.34590
## 2201                 72 spring       L 25.19484 -80.34590
## 2202                 72 spring       S 25.19484 -80.34590
## 2203                 72 spring       L 25.19484 -80.34590
## 2204                 72 spring       S 25.19484 -80.34590
## 2205                 72 spring       S 25.19484 -80.34590
## 2206                 72 spring       L 25.19484 -80.34590
## 2207                 72 spring       L 25.19484 -80.34590
## 2208                 72 spring       L 25.19484 -80.34590
## 2209                 72 spring       S 25.19484 -80.34590
## 2210                 72 spring       S 25.19484 -80.34590
## 2211                 72 spring       S 25.19484 -80.34590
## 2212                 72 spring       S 25.19484 -80.34590
## 2213                 72 spring       S 25.19484 -80.34590
## 2214                 72 spring       L 25.19484 -80.34590
## 2215                 72 spring       S 25.19484 -80.34590
## 2216                 72 spring       S 25.19484 -80.34590
## 2217                 72 spring       S 25.19484 -80.34590
## 2218                 72 spring       S 25.19484 -80.34590
## 2219                 72 spring       L 25.19484 -80.34590
## 2220                 72 spring       S 25.19484 -80.34590
## 2221                 72 spring       S 25.19484 -80.34590
## 2222                 72 spring       S 25.18229 -80.36370
## 2223                 72 spring       L 25.18229 -80.36370
## 2224                 72 spring       L 25.18229 -80.36370
## 2225                 72 spring       S 25.18229 -80.36370
## 2226                 72 spring       L 25.18229 -80.36370
## 2227                 72 spring       S 25.18229 -80.36370
## 2228                 72 spring       S 25.18229 -80.36370
## 2229                 72 spring       S 25.18229 -80.36370
## 2230                 72 spring       S 25.18229 -80.36370
## 2231                 72 spring       S 25.17550 -80.36782
## 2232                 72 spring       S 25.17550 -80.36782
## 2233                 72 spring       L 25.17550 -80.36782
## 2234                 72 spring       S 25.17550 -80.36782
## 2235                 72 spring       S 25.17550 -80.36782
## 2236                 72 spring       L 25.17550 -80.36782
## 2237                 72 spring       L 25.17550 -80.36782
## 2238                 72 spring       S 25.17550 -80.36782
## 2239                 72 spring       L 25.17550 -80.36782
## 2240                 72 spring       L 25.17550 -80.36782
## 2241                 72 spring       S 25.17550 -80.36782
## 2242                 72 spring       S 25.17550 -80.36782
## 2243                 72 spring       L 25.17550 -80.36782
## 2244                 72 spring       L 25.17550 -80.36782
## 2245                 72 spring       L 25.17550 -80.36782
## 2246                 72 spring       L 25.17550 -80.36782
## 2247                 72 spring       L 25.17550 -80.36782
## 2248                 72 spring       S 25.17550 -80.36782
## 2249                 72 spring       L 25.17550 -80.36782
## 2250                 72 spring       S 25.17550 -80.36782
## 2251                 72 spring       L 25.17550 -80.36782
## 2252                 72 spring       S 25.17550 -80.36782
## 2253                 72 spring       S 25.17550 -80.36782
## 2254                 72 spring       L 25.17550 -80.36782
## 2255                 72 spring       S 25.17550 -80.36782
## 2256                 72 spring       S 25.17550 -80.36782
## 2257                 72 spring       S 25.17550 -80.36782
## 2258                 72 spring       S 25.17550 -80.36782
## 2259                 72 spring       S 25.17550 -80.36782
## 2260                 72 spring       S 25.17550 -80.36782
## 2261                 72 spring       S 25.17550 -80.36782
## 2262                 72 spring       S 25.17550 -80.36782
## 2263                 72 spring       L 25.17550 -80.36782
## 2264                 72 spring       L 25.17550 -80.36782
## 2265                 72 spring       L 25.17550 -80.36782
## 2266                 72 spring       L 25.17550 -80.36782
## 2267                 72 spring       S 25.17550 -80.36782
## 2268                 72 spring       L 25.17550 -80.36782
## 2269                 72 spring       L 25.17550 -80.36782
## 2270                 72 spring       L 25.17550 -80.36782
## 2271                 72 spring       L 25.17550 -80.36782
## 2272                 72 spring       L 25.17550 -80.36782
## 2273                 72 spring       S 25.17550 -80.36782
## 2274                 72 spring       L 25.17550 -80.36782
## 2275                 72 spring       S 25.17550 -80.36782
## 2276                 72 spring       S 25.17550 -80.36782
## 2277                 72 spring       L 25.17550 -80.36782
## 2278                 72 spring       S 25.17550 -80.36782
## 2279                 72 spring       L 25.17550 -80.36782
## 2280                 72 spring       S 25.17550 -80.36782
## 2281                 72 spring       L 25.17550 -80.36782
## 2282                 72 spring       S 25.17550 -80.36782
## 2283                 72 spring       S 25.17550 -80.36782
## 2284                 72 spring       S 25.17550 -80.36782
## 2285                 72 spring       L 25.17550 -80.36782
## 2286                 72 spring       L 25.17550 -80.36782
## 2287                 72 spring       S 25.17550 -80.36782
## 2288                 72 spring       L 25.17550 -80.36782
## 2289                 72 spring       S 25.17550 -80.36782
## 2290                 72 spring       L 25.17550 -80.36782
## 2291                 72 spring       L 25.17550 -80.36782
## 2292                 72 spring       L 25.17550 -80.36782
## 2293                 72 spring       L 25.17550 -80.36782
## 2294                 72 spring       L 25.17550 -80.36782
## 2295                 72 spring       S 25.17550 -80.36782
## 2296                 72 spring       S 25.17550 -80.36782
## 2297                 72 spring       L 25.17550 -80.36782
## 2298                 72 spring       S 25.17550 -80.36782
## 2299                 72 spring       S 25.17550 -80.36782
## 2300                 72 spring       S 25.17550 -80.36782
## 2301                 72 spring       S 25.17550 -80.36782
## 2302                 72 spring       L 25.17550 -80.36782
## 2303                 72 spring       S 25.17550 -80.36782
## 2304                 72 spring       L 25.17550 -80.36782
## 2305                 72 spring       S 25.17550 -80.36782
## 2306                 72 spring       S 25.17550 -80.36782
## 2307                 72 spring       S 25.17550 -80.36782
## 2308                 72 spring       L 25.17550 -80.36782
## 2309                 72 spring       S 25.17550 -80.36782
## 2310                 72 spring       L 25.17550 -80.36782
## 2311                 72 spring       L 25.17550 -80.36782
## 2312                 72 spring       L 25.17550 -80.36782
## 2313                 72 spring       L 25.17550 -80.36782
## 2314                 72 spring       S 25.17550 -80.36782
## 2315                 72 spring       S 25.17550 -80.36782
## 2316                 72 spring       L 25.17550 -80.36782
## 2317                 72 spring       S 25.17550 -80.36782
## 2318                 72 spring       S 25.17550 -80.36782
## 2319                 72 spring       S 25.17550 -80.36782
## 2320                 72 spring       S 25.17550 -80.36782
## 2321                 72 spring       L 25.17550 -80.36782
## 2322                 72 spring       S 25.17550 -80.36782
## 2323                 72 spring       S 25.17550 -80.36782
## 2324                 72 spring       S 25.17550 -80.36782
## 2325                 72 spring       S 25.17550 -80.36782
## 2326                 72 spring       S 25.17550 -80.36782
## 2327                 72 spring       S 25.17550 -80.36782
## 2328                 72 spring       L 25.17550 -80.36782
## 2329                 72 spring       S 25.17550 -80.36782
## 2330                 72 spring       S 25.17550 -80.36782
## 2331                 72 spring       S 25.17550 -80.36782
## 2332                 72 spring       S 25.17550 -80.36782
## 2333                 72 spring       L 25.27352 -80.30428
## 2334                 72 spring       L 25.27352 -80.30428
## 2335                 72 spring       L 25.27352 -80.30428
## 2336                 72 spring       L 25.27352 -80.30428
## 2337                 72 spring       L 25.27352 -80.30428
## 2338                 72 spring       S 25.27352 -80.30428
## 2339                 72 spring       L 25.27352 -80.30428
## 2340                 72 spring       L 25.27352 -80.30428
## 2341                 72 spring       L 25.27352 -80.30428
## 2342                 72 spring       L 25.27352 -80.30428
## 2343                 72 spring       L 25.27352 -80.30428
## 2344                 72 spring       L 25.27352 -80.30428
## 2345                 72 spring       L 25.27352 -80.30428
## 2346                 72 spring       L 25.27352 -80.30428
## 2347                 72 spring       L 25.27352 -80.30428
## 2348                 72 spring       L 25.27352 -80.30428
## 2349                 72 spring       L 25.27352 -80.30428
## 2350                 72 spring       L 25.27352 -80.30428
## 2351                 72 spring       L 25.27352 -80.30428
## 2352                 72 spring       L 25.27352 -80.30428
## 2353                 72 spring       L 25.27352 -80.30428
## 2354                 72 spring       L 25.27352 -80.30428
## 2355                 72 spring       S 25.27352 -80.30428
## 2356                 72 spring       L 25.27352 -80.30428
## 2357                 72 spring       L 25.27352 -80.30428
## 2358                 72 spring       L 25.27352 -80.30428
## 2359                 72 spring       L 25.27352 -80.30428
## 2360                 72 spring       S 25.27352 -80.30428
## 2361                 72 spring       L 25.27352 -80.30428
## 2362                 72 spring       L 25.28637 -80.29077
## 2363                 72 spring       L 25.28637 -80.29077
## 2364                 72 spring       L 25.28637 -80.29077
## 2365                 72 spring       S 25.28637 -80.29077
## 2366                 72 spring       L 25.28637 -80.29077
## 2367                 72 spring       S 25.28637 -80.29077
## 2368                 72 spring       S 25.28637 -80.29077
## 2369                 72 spring       S 24.96448 -80.56739
## 2370                 72 spring       L 24.96448 -80.56739
## 2371                 72 spring       S 24.96448 -80.56739
## 2372                 72 spring       L 24.96448 -80.56739
## 2373                 72 spring       L 24.96448 -80.56739
## 2374                 72 spring       L 24.96448 -80.56739
## 2375                 72 spring       S 24.96448 -80.56739
## 2376                 72 spring       S 24.96448 -80.56739
## 2377                 72 spring       S 24.96448 -80.56739
## 2378                 72 spring       S 24.96448 -80.56739
## 2379                 72 spring       S 24.96448 -80.56739
## 2380                 72 spring       L 24.96448 -80.56739
## 2381                 72 spring       S 24.96448 -80.56739
## 2382                 72 spring       S 24.96448 -80.56739
## 2383                 72 spring       S 24.96448 -80.56739
## 2384                 72 spring       S 24.96448 -80.56739
## 2385                 72 spring       S 24.96448 -80.56739
## 2386                 72 spring       S 24.96448 -80.56739
## 2387                 72 spring       S 24.96448 -80.56739
## 2388                 72 spring       L 24.96448 -80.56739
## 2389                 72 spring       S 24.96448 -80.56739
## 2390                 72 spring       L 24.96448 -80.56739
## 2391                 72 spring       L 24.96448 -80.56739
## 2392                 72 spring       S 24.96448 -80.56739
## 2393                 72 spring       S 24.96448 -80.56739
## 2394                 72 spring       L 24.96448 -80.56739
## 2395                 72 spring       L 24.96448 -80.56739
## 2396                 72 spring       S 24.96448 -80.56739
## 2397                 72 spring       S 24.96448 -80.56739
## 2398                 72 spring       S 24.96448 -80.56739
## 2399                 72 spring       S 24.96448 -80.56739
## 2400                 72 spring       L 24.96448 -80.56739
## 2401                 72 spring       S 24.96448 -80.56739
## 2402                 72 spring       S 24.96448 -80.56739
## 2403                 77   fall       L 29.66182 -82.34721
## 2404                 77   fall       L 29.66182 -82.34721
## 2405                 77   fall       L 29.66182 -82.34721
## 2406                 77   fall       L 29.66182 -82.34721
## 2407                 77   fall       L 29.66182 -82.34721
## 2408                 77   fall       L 29.66182 -82.34721
## 2409                 77   fall       L 29.66182 -82.34721
## 2410                 77   fall       L 29.66182 -82.34721
## 2411                 77   fall       L 29.66182 -82.34721
## 2412                 77   fall       L 29.66182 -82.34721
## 2413                 77   fall       L 29.66182 -82.34721
## 2414                 77   fall       L 29.66182 -82.34721
## 2415                 77   fall       S 29.66182 -82.34721
## 2416                 77   fall       S 29.66182 -82.34721
## 2417                 77   fall       L 29.66182 -82.34721
## 2418                 77   fall       L 29.66182 -82.34721
## 2419                 77   fall       L 25.49197 -80.48562
## 2420                 77   fall       L 25.49197 -80.48562
## 2421                 77   fall       L 25.49197 -80.48562
## 2422                 77   fall       L 25.49197 -80.48562
## 2423                 77   fall       L 25.49197 -80.48562
## 2424                 77   fall       L 25.49197 -80.48562
## 2425                 77   fall       L 25.49197 -80.48562
## 2426                 77   fall       L 25.49197 -80.48562
## 2427                 77   fall       L 25.49197 -80.48562
## 2428                 77   fall       L 25.49197 -80.48562
## 2429                 77   fall       L 25.49197 -80.48562
## 2430                 77   fall       L 25.49197 -80.48562
## 2431                 77   fall       L 25.49197 -80.48562
## 2432                 77   fall       L 25.49197 -80.48562
## 2433                 77   fall       L 25.49197 -80.48562
## 2434                 77   fall       S 25.49197 -80.48562
## 2435                 77   fall       L 25.49197 -80.48562
## 2436                 77   fall       L 25.49197 -80.48562
## 2437                 77   fall       L 25.49197 -80.48562
## 2438                 77   fall       L 25.49197 -80.48562
## 2439                 77   fall       L 25.49197 -80.48562
## 2440                 77   fall       L 25.49197 -80.48562
## 2441                 77   fall       L 25.49197 -80.48562
## 2442                 77   fall       L 25.49197 -80.48562
## 2443                 77   fall       L 25.49197 -80.48562
## 2444                 77   fall       L 25.49197 -80.48562
## 2445                 77   fall       L 25.49197 -80.48562
## 2446                 77   fall       L 25.49197 -80.48562
## 2447                 77   fall       L 25.49197 -80.48562
## 2448                 77   fall       L 25.49197 -80.48562
## 2449                 77   fall       L 25.49197 -80.48562
## 2450                 77   fall       L 25.49197 -80.48562
## 2451                 77   fall       L 25.49197 -80.48562
## 2452                 77   fall       L 25.49197 -80.48562
## 2453                 77   fall       L 25.49197 -80.48562
## 2454                 77   fall       L 25.12858 -80.40809
## 2455                 77   fall       L 25.12858 -80.40809
## 2456                 77   fall       S 25.12858 -80.40809
## 2457                 77   fall       L 25.12858 -80.40809
## 2458                 77   fall       L 25.12858 -80.40809
## 2459                 77   fall       L 25.12858 -80.40809
## 2460                 77   fall       S 25.12858 -80.40809
## 2461                 77   fall       L 25.12858 -80.40809
## 2462                 77   fall       L 25.12858 -80.40809
## 2463                 77   fall       L 25.12858 -80.40809
## 2464                 77   fall       L 25.12858 -80.40809
## 2465                 77   fall       L 25.12858 -80.40809
## 2466                 77   fall       L 25.12858 -80.40809
## 2467                 77   fall       L 25.12858 -80.40809
## 2468                 77   fall       L 25.12858 -80.40809
## 2469                 77   fall       L 25.12858 -80.40809
## 2470                 77   fall       L 27.29866 -81.36612
## 2471                 77   fall       L 27.29866 -81.36612
## 2472                 77   fall       L 27.29866 -81.36612
## 2473                 77   fall       L 27.29866 -81.36612
## 2474                 77   fall       L 27.29866 -81.36612
## 2475                 77   fall       L 27.29866 -81.36612
## 2476                 77   fall       L 27.29866 -81.36612
## 2477                 77   fall       L 27.29866 -81.36612
## 2478                 77   fall       L 27.29866 -81.36612
## 2479                 77   fall       L 27.29866 -81.36612
## 2480                 77   fall       L 27.29866 -81.36612
## 2481                 77   fall       L 27.29866 -81.36612
## 2482                 77   fall       L 27.29866 -81.36612
## 2483                 77   fall       L 27.29866 -81.36612
## 2484                 77   fall       L 27.29866 -81.36612
## 2485                 77   fall       L 27.29866 -81.36612
## 2486                 77   fall       L 27.29866 -81.36612
## 2487                 77   fall       L 27.29866 -81.36612
## 2488                 77   fall       L 27.29866 -81.36612
## 2489                 77   fall       L 27.29866 -81.36612
## 2490                 77   fall       L 27.29866 -81.36612
## 2491                 77   fall       L 27.29866 -81.36612
## 2492                 77   fall       L 27.29866 -81.36612
## 2493                 77   fall       L 27.29866 -81.36612
## 2494                 77   fall       L 27.29866 -81.36612
## 2495                 77   fall       L 27.29866 -81.36612
## 2496                 77   fall       L 27.29866 -81.36612
## 2497                 77   fall       L 27.29866 -81.36612
## 2498                 77   fall       L 27.29866 -81.36612
## 2499                 77   fall       L 27.29866 -81.36612
## 2500                 77   fall       L 27.29866 -81.36612
## 2501                 77   fall       L 27.29866 -81.36612
## 2502                 77   fall       L 27.29866 -81.36612
## 2503                 77   fall       L 27.29866 -81.36612
## 2504                 77   fall       L 27.29866 -81.36612
## 2505                 77   fall       L 27.29866 -81.36612
## 2506                 77   fall       L 27.29866 -81.36612
## 2507                 77   fall       L 27.29866 -81.36612
## 2508                 77   fall       L 27.29866 -81.36612
## 2509                 77   fall       L 27.29866 -81.36612
## 2510                 77   fall       L 27.29866 -81.36612
## 2511                 77   fall       L 27.29866 -81.36612
## 2512                 77   fall       L 27.29866 -81.36612
## 2513                 77   fall       L 27.90335 -81.58946
## 2514                 77   fall       L 27.90335 -81.58946
## 2515                 77   fall       L 27.90335 -81.58946
## 2516                 77   fall       L 27.90335 -81.58946
## 2517                 77   fall       L 27.90335 -81.58946
## 2518                 77   fall       L 27.90335 -81.58946
## 2519                 77   fall       L 27.90335 -81.58946
## 2520                 77   fall       L 27.90335 -81.58946
## 2521                 77   fall       L 27.90335 -81.58946
## 2522                 77   fall       L 27.90335 -81.58946
## 2523                 77   fall       L 27.90335 -81.58946
## 2524                 77   fall       L 27.90335 -81.58946
## 2525                 77   fall       L 27.90335 -81.58946
## 2526                 77   fall       L 27.90335 -81.58946
## 2527                 77   fall       L 27.90335 -81.58946
## 2528                 77   fall       L 27.90335 -81.58946
## 2529                 77   fall       L 27.90335 -81.58946
## 2530                 77   fall       L 27.90335 -81.58946
## 2531                 77   fall       L 27.90335 -81.58946
## 2532                 77   fall       S 27.90335 -81.58946
## 2533                 77   fall       L 27.90335 -81.58946
## 2534                 77   fall       L 27.90335 -81.58946
## 2535                 77   fall       L 27.90335 -81.58946
## 2536                 77   fall       L 28.81298 -81.87789
## 2537                 77   fall       L 28.81298 -81.87789
## 2538                 77   fall       L 28.81298 -81.87789
## 2539                 77   fall       L 28.81298 -81.87789
## 2540                 77   fall       L 28.81298 -81.87789
## 2541                 77   fall       S 28.81298 -81.87789
## 2542                 77   fall       L 28.81298 -81.87789
## 2543                 77   fall       L 28.81298 -81.87789
## 2544                 77   fall       L 28.81298 -81.87789
## 2545                 77   fall       L 28.81298 -81.87789
## 2546                 77   fall       L 28.81298 -81.87789
## 2547                 77   fall       L 28.81298 -81.87789
## 2548                 77   fall       L 28.81527 -81.88217
## 2549                 77   fall       L 28.81527 -81.88217
## 2550                 77   fall       L 28.81527 -81.88217
## 2551                 77   fall       L 28.81527 -81.88217
## 2552                 77   fall       L 28.81527 -81.88217
## 2553                 77   fall       L 28.81527 -81.88217
## 2554                 77   fall       L 28.81527 -81.88217
## 2555                 77   fall       L 28.81527 -81.88217
## 2556                 77   fall       L 28.81527 -81.88217
## 2557                 77   fall       L 28.81527 -81.88217
## 2558                 77   fall       L 28.81527 -81.88217
## 2559                 77   fall       L 28.81527 -81.88217
## 2560                 77   fall       L 28.81527 -81.88217
## 2561                 77   fall       L 28.81527 -81.88217
## 2562                 77   fall       L 25.17550 -80.36782
## 2563                 77   fall       L 25.17550 -80.36782
## 2564                 77   fall       L 25.17550 -80.36782
## 2565                 77   fall       L 25.17550 -80.36782
## 2566                 77   fall       L 25.17550 -80.36782
## 2567                 77   fall       L 25.17550 -80.36782
## 2568                 77   fall       S 25.17550 -80.36782
## 2569                 77   fall       L 25.17550 -80.36782
## 2570                 77   fall       L 25.17369 -80.37153
## 2571                 77   fall       L 25.17369 -80.37153
## 2572                 77   fall       L 25.17369 -80.37153
## 2573                 77   fall       L 25.17369 -80.37153
## 2574                 77   fall       L 25.17369 -80.37153
## 2575                 77   fall       S 25.18229 -80.36370
## 2576                 77   fall       L 25.18229 -80.36370
## 2577                 77   fall       L 25.18229 -80.36370
## 2578                 77   fall       S 25.18229 -80.36370
## 2579                 77   fall       S 25.18229 -80.36370
## 2580                 77   fall       L 25.18229 -80.36370
## 2581                 77   fall       L 25.18229 -80.36370
## 2582                 77   fall       S 25.18229 -80.36370
## 2583                 77   fall       L 25.18229 -80.36370
## 2584                 77   fall       L 25.18229 -80.36370
## 2585                 77   fall       S 25.18229 -80.36370
## 2586                 77   fall       L 25.18229 -80.36370
## 2587                 77   fall       L 25.18229 -80.36370
## 2588                 77   fall       L 25.18229 -80.36370
## 2589                 77   fall       L 25.18229 -80.36370
## 2590                 77   fall       L 25.18229 -80.36370
## 2591                 77   fall       S 25.18229 -80.36370
## 2592                 77   fall       L 25.18229 -80.36370
## 2593                 77   fall       L 25.25648 -80.31069
## 2594                 77   fall       L 25.25648 -80.31069
## 2595                 77   fall       L 25.25648 -80.31069
## 2596                 77   fall       L 25.25648 -80.31069
## 2597                 77   fall       L 25.25648 -80.31069
## 2598                 77   fall       L 25.25648 -80.31069
## 2599                 77   fall       L 25.25648 -80.31069
## 2600                 77   fall       L 25.25648 -80.31069
## 2601                 77   fall       L 25.27352 -80.30428
## 2602                 77   fall       S 25.27352 -80.30428
## 2603                 77   fall       L 25.27352 -80.30428
## 2604                 77   fall       L 25.25284 -80.31183
## 2605                 77   fall       S 25.25284 -80.31183
## 2606                 77   fall       L 25.25284 -80.31183
## 2607                 77   fall       L 25.28637 -80.29077
## 2608                 77   fall       L 25.28637 -80.29077
## 2609                 77   fall       L 25.28637 -80.29077
## 2610                 77   fall       L 25.28637 -80.29077
## 2611                 77   fall       L 25.28637 -80.29077
## 2612                 77   fall       L 25.28637 -80.29077
## 2613                 77   fall       L 25.28637 -80.29077
## 2614                 77   fall       L 25.28637 -80.29077
## 2615                 77   fall       L 25.28637 -80.29077
## 2616                 77   fall       L 25.28637 -80.29077
## 2617                 77   fall       L 25.28637 -80.29077
## 2618                 77   fall       L 25.28637 -80.29077
## 2619                 77   fall       L 25.28637 -80.29077
## 2620                 77   fall       L 25.28637 -80.29077
## 2621                 77   fall       L 25.28637 -80.29077
## 2622                 77   fall       L 25.28637 -80.29077
## 2623                 77   fall       L 25.28637 -80.29077
## 2624                 77   fall       L 25.28637 -80.29077
## 2625                 77   fall       L 25.28637 -80.29077
## 2626                 77   fall       L 25.28637 -80.29077
## 2627                 77   fall       L 25.28637 -80.29077
## 2628                 77   fall       L 25.28637 -80.29077
## 2629                 77   fall       L 25.28637 -80.29077
## 2630                 77   fall       L 25.28637 -80.29077
## 2631                 77   fall       L 25.28637 -80.29077
## 2632                 77   fall       L 25.28637 -80.29077
## 2633                 77   fall       L 27.29866 -81.36612
## 2634                 77   fall       S 25.19515 -80.34592
## 2635                 77   fall       S 25.19515 -80.34592
## 2636                 77   fall       L 25.19515 -80.34592
## 2637                 77   fall       S 25.19515 -80.34592
## 2638                 77   fall       L 25.19515 -80.34592
## 2639                 77   fall       L 25.19515 -80.34592
## 2640                 77   fall       S 25.19515 -80.34592
## 2641                 77   fall       S 25.19515 -80.34592
## 2642                 77   fall       S 25.19515 -80.34592
## 2643                 77   fall       S 24.98519 -80.54710
## 2644                 77   fall       S 24.98519 -80.54710
## 2645                 77   fall       L 24.98519 -80.54710
## 2646                 77   fall       L 24.98519 -80.54710
## 2647                 77   fall       L 24.98519 -80.54710
## 2648                 77   fall       L 24.98519 -80.54710
## 2649                 77   fall       S 24.98519 -80.54710
## 2650                 77   fall       S 24.98519 -80.54710
## 2651                 77   fall       S 24.98519 -80.54710
## 2652                 77   fall       L 24.98519 -80.54710
## 2653                 77   fall       L 24.98519 -80.54710
## 2654                 77   fall       L 24.98519 -80.54710
## 2655                 77   fall       S 24.98519 -80.54710
## 2656                 77   fall       L 24.98519 -80.54710
## 2657                 77   fall       L 24.98519 -80.54710
## 2658                 81 winter       L 29.66200 -82.34731
## 2659                 81 winter       L 29.66200 -82.34731
## 2660                 81 winter       L 29.66200 -82.34731
## 2661                 81 winter       L 29.66200 -82.34731
## 2662                 81 winter       L 29.66200 -82.34731
## 2663                 81 winter       L 29.66200 -82.34731
## 2664                 81 winter       L 29.66200 -82.34731
## 2665                 81 winter       L 29.66200 -82.34731
## 2666                 81 winter       L 29.66200 -82.34731
## 2667                 81 winter       L 29.66200 -82.34731
## 2668                 81 winter       L 29.66200 -82.34731
## 2669                 81 winter       L 29.66200 -82.34731
## 2670                 81 winter       L 29.66200 -82.34731
## 2671                 81 winter       L 29.66200 -82.34731
## 2672                 81 winter       L 29.66200 -82.34731
## 2673                 81 winter       L 29.66200 -82.34731
## 2674                 81 winter       L 29.66200 -82.34731
## 2675                 81 winter       L 29.66202 -82.34731
## 2676                 81 winter       L 29.66202 -82.34731
## 2677                 81 winter       L 29.66202 -82.34731
## 2678                 81 winter       L 29.66202 -82.34731
## 2679                 81 winter       L 29.66202 -82.34731
## 2680                 81 winter       L 29.66202 -82.34731
## 2681                 81 winter       L 29.66202 -82.34731
## 2682                 81 winter       L 29.66202 -82.34731
## 2683                 81 winter       L 29.66202 -82.34731
## 2684                 81 winter       L 29.66202 -82.34731
## 2685                 81 winter       L 29.66202 -82.34731
## 2686                 81 winter       L 29.66202 -82.34731
## 2687                 81 winter       L 29.66202 -82.34731
## 2688                 81 winter       L 29.66202 -82.34731
## 2689                 81 winter       L 29.66202 -82.34731
## 2690                 81 winter       L 29.66202 -82.34731
## 2691                 81 winter       L 29.66202 -82.34731
## 2692                 81 winter       L 29.66202 -82.34731
## 2693                 81 winter       L 29.66202 -82.34731
## 2694                 81 winter       L 25.49136 -80.48582
## 2695                 81 winter       L 25.49136 -80.48582
## 2696                 81 winter       L 25.49136 -80.48582
## 2697                 81 winter       L 25.49136 -80.48582
## 2698                 81 winter       L 25.49136 -80.48582
## 2699                 81 winter       L 25.49136 -80.48582
## 2700                 81 winter       L 25.49136 -80.48582
## 2701                 81 winter       L 25.49136 -80.48582
## 2702                 81 winter       L 25.49136 -80.48582
## 2703                 81 winter       L 25.49136 -80.48582
## 2704                 81 winter       L 25.49136 -80.48582
## 2705                 81 winter       L 25.49136 -80.48582
## 2706                 81 winter       L 25.49136 -80.48582
## 2707                 81 winter       L 25.49136 -80.48582
## 2708                 81 winter       L 25.49136 -80.48582
## 2709                 81 winter       L 25.49136 -80.48582
## 2710                 81 winter       L 25.49136 -80.48582
## 2711                 81 winter       L 25.49136 -80.48582
## 2712                 81 winter       L 25.49136 -80.48582
## 2713                 81 winter       L 25.49136 -80.48582
## 2714                 81 winter       L 25.49136 -80.48582
## 2715                 81 winter       L 25.49136 -80.48582
## 2716                 81 winter       L 25.49136 -80.48582
## 2717                 81 winter       L 25.49136 -80.48582
## 2718                 81 winter       L 25.49136 -80.48582
## 2719                 81 winter       L 25.49136 -80.48582
## 2720                 81 winter       L 25.49136 -80.48582
## 2721                 81 winter       L 25.49136 -80.48582
## 2722                 81 winter       S 25.49136 -80.48582
## 2723                 81 winter       S 25.49136 -80.48582
## 2724                 81 winter       S 25.49136 -80.48582
## 2725                 81 winter       L 25.49136 -80.48582
## 2726                 81 winter       L 25.49136 -80.48582
## 2727                 81 winter       S 25.49136 -80.48582
## 2728                 81 winter       S 25.49136 -80.48582
## 2729                 81 winter       S 25.49136 -80.48582
## 2730                 81 winter       S 25.49136 -80.48582
## 2731                 81 winter       L 25.49136 -80.48582
## 2732                 81 winter       L 25.49136 -80.48582
## 2733                 81 winter       L 25.49136 -80.48582
## 2734                 81 winter       L 25.49136 -80.48582
## 2735                 81 winter       L 25.49136 -80.48582
## 2736                 81 winter       L 25.10002 -80.43752
## 2737                 81 winter       L 25.10002 -80.43752
## 2738                 81 winter       L 25.10002 -80.43752
## 2739                 81 winter       L 25.10002 -80.43752
## 2740                 81 winter       L 25.12846 -80.40809
## 2741                 81 winter       L 25.12846 -80.40809
## 2742                 81 winter       L 25.12846 -80.40809
## 2743                 81 winter       L 25.12846 -80.40809
## 2744                 81 winter       L 25.12846 -80.40809
## 2745                 81 winter       L 25.12846 -80.40809
## 2746                 81 winter       L 25.10002 -80.43752
## 2747                 81 winter       L 25.10002 -80.43752
## 2748                 81 winter       L 25.10002 -80.43752
## 2749                 81 winter       L 25.10002 -80.43752
## 2750                 81 winter       L 25.12846 -80.40809
## 2751                 81 winter       L 25.12846 -80.40809
## 2752                 81 winter       L 25.12846 -80.40809
## 2753                 81 winter       L 25.12846 -80.40809
## 2754                 81 winter       L 25.10002 -80.43752
## 2755                 81 winter       L 25.10002 -80.43752
## 2756                 81 winter       L 25.10002 -80.43752
## 2757                 81 winter       L 25.10002 -80.43752
## 2758                 81 winter       L 25.10002 -80.43752
## 2759                 81 winter       L 25.12846 -80.40809
## 2760                 81 winter       L 25.12846 -80.40809
## 2761                 81 winter       L 25.12846 -80.40809
## 2762                 81 winter       L 25.12846 -80.40809
## 2763                 81 winter       L 25.10002 -80.43752
## 2764                 81 winter       L 25.10002 -80.43752
## 2765                 81 winter       L 25.10002 -80.43752
## 2766                 81 winter       L 25.10002 -80.43752
## 2767                 81 winter       L 25.10002 -80.43752
## 2768                 81 winter       L 25.12846 -80.40809
## 2769                 81 winter       L 25.12846 -80.40809
## 2770                 81 winter       L 25.12846 -80.40809
## 2771                 81 winter       L 25.12846 -80.40809
## 2772                 81 winter       L 25.10002 -80.43752
## 2773                 81 winter       L 25.10002 -80.43752
## 2774                 81 winter       L 25.10002 -80.43752
## 2775                 81 winter       L 25.10002 -80.43752
## 2776                 81 winter       L 25.10002 -80.43752
## 2777                 81 winter       L 25.12846 -80.40809
## 2778                 81 winter       L 25.12846 -80.40809
## 2779                 81 winter       L 25.12846 -80.40809
## 2780                 81 winter       S 25.12858 -80.40809
## 2781                 81 winter       S 25.12858 -80.40809
## 2782                 81 winter       S 25.12858 -80.40809
## 2783                 81 winter       S 25.12858 -80.40809
## 2784                 81 winter       S 25.12858 -80.40809
## 2785                 81 winter       S 25.12858 -80.40809
## 2786                 81 winter       S 25.12858 -80.40809
## 2787                 81 winter       S 25.12858 -80.40809
## 2788                 81 winter       S 25.12858 -80.40809
## 2789                 81 winter       S 25.12858 -80.40809
## 2790                 81 winter       S 25.12858 -80.40809
## 2791                 81 winter       S 25.12858 -80.40809
## 2792                 81 winter       S 25.12858 -80.40809
## 2793                 81 winter       S 25.12858 -80.40809
## 2794                 81 winter       S 25.12858 -80.40809
## 2795                 81 winter       S 25.12858 -80.40809
## 2796                 81 winter       S 25.12858 -80.40809
## 2797                 81 winter       S 25.12858 -80.40809
## 2798                 81 winter       S 25.12858 -80.40809
## 2799                 81 winter       S 25.12858 -80.40809
## 2800                 81 winter       S 25.12858 -80.40809
## 2801                 81 winter       S 25.12858 -80.40809
## 2802                 81 winter       S 25.12858 -80.40809
## 2803                 81 winter       L 25.12858 -80.40809
## 2804                 81 winter       S 25.12858 -80.40809
## 2805                 81 winter       S 25.12858 -80.40809
## 2806                 81 winter       S 25.12858 -80.40809
## 2807                 81 winter       S 25.12858 -80.40809
## 2808                 81 winter       L 25.12858 -80.40809
## 2809                 81 winter       S 25.12858 -80.40809
## 2810                 81 winter       L 25.12858 -80.40809
## 2811                 81 winter       L 25.12858 -80.40809
## 2812                 81 winter       L 27.29866 -81.36612
## 2813                 81 winter       L 27.29866 -81.36612
## 2814                 81 winter       L 27.29866 -81.36612
## 2815                 81 winter       L 27.29866 -81.36612
## 2816                 81 winter       L 27.29866 -81.36612
## 2817                 81 winter       L 27.29866 -81.36612
## 2818                 81 winter       L 27.29866 -81.36612
## 2819                 81 winter       L 27.29866 -81.36612
## 2820                 81 winter       L 27.29866 -81.36612
## 2821                 81 winter       L 27.29866 -81.36612
## 2822                 81 winter       L 27.29866 -81.36612
## 2823                 81 winter       L 27.29866 -81.36612
## 2824                 81 winter       L 27.29866 -81.36612
## 2825                 81 winter       L 27.29866 -81.36612
## 2826                 81 winter       L 27.29866 -81.36612
## 2827                 81 winter       L 27.29866 -81.36612
## 2828                 81 winter       L 27.29866 -81.36612
## 2829                 81 winter       L 27.29866 -81.36612
## 2830                 81 winter       L 27.29866 -81.36612
## 2831                 81 winter       L 27.29866 -81.36612
## 2832                 81 winter       L 27.29866 -81.36612
## 2833                 81 winter       L 27.29866 -81.36612
## 2834                 81 winter       L 27.29866 -81.36612
## 2835                 81 winter       L 27.29866 -81.36612
## 2836                 81 winter       L 27.29866 -81.36612
## 2837                 81 winter       L 27.29866 -81.36612
## 2838                 81 winter       L 27.29866 -81.36612
## 2839                 81 winter       L 27.29866 -81.36612
## 2840                 81 winter       L 27.29866 -81.36612
## 2841                 81 winter       L 27.29866 -81.36612
## 2842                 81 winter       L 27.29866 -81.36612
## 2843                 81 winter       L 27.29866 -81.36612
## 2844                 81 winter       L 27.29866 -81.36612
## 2845                 81 winter       L 27.29866 -81.36612
## 2846                 81 winter       L 27.29866 -81.36612
## 2847                 81 winter       L 27.29866 -81.36612
## 2848                 81 winter       L 27.29866 -81.36612
## 2849                 81 winter       L 27.29866 -81.36612
## 2850                 81 winter       L 27.29866 -81.36612
## 2851                 81 winter       L 27.29866 -81.36612
## 2852                 81 winter       L 27.29866 -81.36612
## 2853                 81 winter       L 27.29866 -81.36612
## 2854                 81 winter       L 27.29866 -81.36612
## 2855                 81 winter       L 27.89674 -81.58047
## 2856                 81 winter       L 27.89674 -81.58047
## 2857                 81 winter       L 27.89674 -81.58047
## 2858                 81 winter       L 27.89674 -81.58047
## 2859                 81 winter       L 27.89674 -81.58047
## 2860                 81 winter       L 27.89674 -81.58047
## 2861                 81 winter       L 27.89674 -81.58047
## 2862                 81 winter       L 27.89674 -81.58047
## 2863                 81 winter       L 27.89674 -81.58047
## 2864                 81 winter       L 27.89674 -81.58047
## 2865                 81 winter       L 27.89674 -81.58047
## 2866                 81 winter       L 27.89674 -81.58047
## 2867                 81 winter       L 27.89674 -81.58047
## 2868                 81 winter       L 27.89674 -81.58047
## 2869                 81 winter       L 27.89674 -81.58047
## 2870                 81 winter       L 27.89674 -81.58047
## 2871                 81 winter       L 27.89674 -81.58047
## 2872                 81 winter       L 27.89674 -81.58047
## 2873                 81 winter       L 27.89674 -81.58047
## 2874                 81 winter       L 27.89674 -81.58047
## 2875                 81 winter       L 27.89674 -81.58047
## 2876                 81 winter       L 27.89674 -81.58047
## 2877                 81 winter       L 27.89674 -81.58047
## 2878                 81 winter       L 27.89674 -81.58047
## 2879                 81 winter       L 27.89674 -81.58047
## 2880                 81 winter       L 27.89674 -81.58047
## 2881                 81 winter       L 27.89674 -81.58047
## 2882                 81 winter       L 27.89674 -81.58047
## 2883                 81 winter       L 27.89674 -81.58047
## 2884                 81 winter       L 27.89674 -81.58047
## 2885                 81 winter       L 27.89674 -81.58047
## 2886                 81 winter       L 27.89674 -81.58047
## 2887                 81 winter       L 27.89674 -81.58047
## 2888                 81 winter       S 27.89674 -81.58047
## 2889                 81 winter       L 27.89674 -81.58047
## 2890                 81 winter       L 27.89674 -81.58047
## 2891                 81 winter       L 27.89674 -81.58047
## 2892                 81 winter       L 27.89674 -81.58047
## 2893                 81 winter       L 27.89674 -81.58047
## 2894                 81 winter       L 27.89674 -81.58047
## 2895                 81 winter       L 27.89674 -81.58047
## 2896                 81 winter       L 27.89674 -81.58047
## 2897                 81 winter       L 27.89674 -81.58047
## 2898                 81 winter       L 27.89674 -81.58047
## 2899                 81 winter       L 27.89674 -81.58047
## 2900                 81 winter       L 27.89674 -81.58047
## 2901                 81 winter       L 27.89674 -81.58047
## 2902                 81 winter       L 27.89674 -81.58047
## 2903                 81 winter       L 27.89674 -81.58047
## 2904                 81 winter       L 27.89674 -81.58047
## 2905                 81 winter       L 28.79634 -81.87788
## 2906                 81 winter       L 28.79634 -81.87788
## 2907                 81 winter       L 28.79634 -81.87788
## 2908                 81 winter       L 28.79634 -81.87788
## 2909                 81 winter       L 28.79634 -81.87788
## 2910                 81 winter       L 28.79634 -81.87788
## 2911                 81 winter       L 28.79634 -81.87788
## 2912                 81 winter       L 28.79634 -81.87788
## 2913                 81 winter       L 28.79634 -81.87788
## 2914                 81 winter       L 28.79634 -81.87788
## 2915                 81 winter       L 28.79634 -81.87788
## 2916                 81 winter       L 28.79634 -81.87788
## 2917                 81 winter       L 28.79634 -81.87788
## 2918                 81 winter       L 28.79634 -81.87788
## 2919                 81 winter       S 28.79634 -81.87788
## 2920                 81 winter       L 28.79634 -81.87788
## 2921                 81 winter       L 28.79634 -81.87788
## 2922                 81 winter       L 28.79634 -81.87788
## 2923                 81 winter       L 28.79634 -81.87788
## 2924                 81 winter       L 28.79634 -81.87788
## 2925                 81 winter       L 28.79634 -81.87788
## 2926                 81 winter       L 28.79634 -81.87788
## 2927                 81 winter       L 28.79634 -81.87788
## 2928                 81 winter       L 28.79634 -81.87788
## 2929                 81 winter       L 28.79634 -81.87788
## 2930                 81 winter       L 28.79634 -81.87788
## 2931                 81 winter       S 28.79634 -81.87788
## 2932                 81 winter       L 28.79634 -81.87788
## 2933                 81 winter       L 28.79634 -81.87788
## 2934                 81 winter       L 25.27349 -80.30410
## 2935                 81 winter       L 25.27349 -80.30410
## 2936                 81 winter       L 25.27349 -80.30410
## 2937                 81 winter       L 25.27349 -80.30410
## 2938                 81 winter       L 25.27349 -80.30410
## 2939                 81 winter       L 25.19515 -80.34592
## 2940                 81 winter       L 25.19515 -80.34592
## 2941                 81 winter       L 25.19515 -80.34592
## 2942                 81 winter       L 25.19515 -80.34592
## 2943                 81 winter       L 25.19515 -80.34592
## 2944                 81 winter       L 25.25656 -80.31080
## 2945                 81 winter       L 25.25656 -80.31080
## 2946                 81 winter       L 25.25656 -80.31080
## 2947                 81 winter       L 25.25656 -80.31080
## 2948                 81 winter       L 25.25656 -80.31080
## 2949                 81 winter       L 25.17557 -80.36780
## 2950                 81 winter       L 25.17557 -80.36780
## 2951                 81 winter       L 25.17557 -80.36780
## 2952                 81 winter       L 25.28661 -80.29081
## 2953                 81 winter       L 25.28661 -80.29081
## 2954                 81 winter       L 25.28661 -80.29081
## 2955                 81 winter       L 25.22752 -80.32838
## 2956                 81 winter       L 25.22752 -80.32838
## 2957                 81 winter       L 25.22752 -80.32838
## 2958                 81 winter       L 25.22752 -80.32838
## 2959                 81 winter       L 25.22752 -80.32838
## 2960                 81 winter       L 25.18209 -80.36319
## 2961                 81 winter       L 25.18209 -80.36319
## 2962                 81 winter       L 25.18209 -80.36319
## 2963                 81 winter       L 25.18209 -80.36319
## 2964                 81 winter       L 25.25656 -80.31080
## 2965                 81 winter       L 25.25656 -80.31080
## 2966                 81 winter       L 25.25656 -80.31080
## 2967                 81 winter       L 25.27349 -80.30410
## 2968                 81 winter       L 25.27349 -80.30410
## 2969                 81 winter       L 25.27349 -80.30410
## 2970                 81 winter       L 25.27349 -80.30410
## 2971                 81 winter       L 25.17557 -80.36780
## 2972                 81 winter       L 25.17557 -80.36780
## 2973                 81 winter       L 25.17557 -80.36780
## 2974                 81 winter       L 25.17557 -80.36780
## 2975                 81 winter       L 25.17557 -80.36780
## 2976                 81 winter       L 25.22752 -80.32838
## 2977                 81 winter       L 25.22752 -80.32838
## 2978                 81 winter       L 25.22752 -80.32838
## 2979                 81 winter       L 25.22752 -80.32838
## 2980                 81 winter       L 25.22752 -80.32838
## 2981                 81 winter       L 25.28661 -80.29081
## 2982                 81 winter       L 25.28661 -80.29081
## 2983                 81 winter       L 25.28661 -80.29081
## 2984                 81 winter       L 25.27349 -80.30410
## 2985                 81 winter       L 25.27349 -80.30410
## 2986                 81 winter       L 25.27349 -80.30410
## 2987                 81 winter       L 25.27349 -80.30410
## 2988                 81 winter       L 25.19515 -80.34592
## 2989                 81 winter       L 25.19515 -80.34592
## 2990                 81 winter       L 25.19515 -80.34592
## 2991                 81 winter       L 25.19515 -80.34592
## 2992                 81 winter       L 25.25656 -80.31080
## 2993                 81 winter       L 25.25656 -80.31080
## 2994                 81 winter       L 25.25656 -80.31080
## 2995                 81 winter       L 25.25656 -80.31080
## 2996                 81 winter       L 25.25656 -80.31080
## 2997                 81 winter       L 25.17557 -80.36780
## 2998                 81 winter       L 25.17557 -80.36780
## 2999                 81 winter       L 25.17557 -80.36780
## 3000                 81 winter       L 25.17557 -80.36780
## 3001                 81 winter       L 25.17557 -80.36780
## 3002                 81 winter       L 25.22752 -80.32838
## 3003                 81 winter       L 25.22752 -80.32838
## 3004                 81 winter       L 25.22752 -80.32838
## 3005                 81 winter       L 25.18209 -80.36319
## 3006                 81 winter       L 25.18209 -80.36319
## 3007                 81 winter       L 25.18209 -80.36319
## 3008                 81 winter       L 25.18209 -80.36319
## 3009                 81 winter       L 25.18209 -80.36319
## 3010                 81 winter       L 25.27349 -80.30410
## 3011                 81 winter       L 25.27349 -80.30410
## 3012                 81 winter       L 25.27349 -80.30410
## 3013                 81 winter       L 25.27349 -80.30410
## 3014                 81 winter       L 25.27349 -80.30410
## 3015                 81 winter       L 25.27349 -80.30410
## 3016                 81 winter       L 25.27349 -80.30410
## 3017                 81 winter       L 25.27349 -80.30410
## 3018                 81 winter       L 25.27349 -80.30410
## 3019                 81 winter       L 25.27349 -80.30410
## 3020                 81 winter       L 25.19515 -80.34592
## 3021                 81 winter       L 25.19515 -80.34592
## 3022                 81 winter       L 25.19515 -80.34592
## 3023                 81 winter       L 25.19515 -80.34592
## 3024                 81 winter       L 25.19515 -80.34592
## 3025                 81 winter       L 25.25656 -80.31080
## 3026                 81 winter       L 25.25656 -80.31080
## 3027                 81 winter       L 25.17557 -80.36780
## 3028                 81 winter       L 25.17557 -80.36780
## 3029                 81 winter       S 25.17557 -80.36780
## 3030                 81 winter       L 25.22752 -80.32838
## 3031                 81 winter       L 25.22752 -80.32838
## 3032                 81 winter       L 25.22752 -80.32838
## 3033                 81 winter       L 25.18209 -80.36319
## 3034                 81 winter       L 25.18209 -80.36319
## 3035                 81 winter       L 25.18209 -80.36319
## 3036                 81 winter       L 25.18209 -80.36319
## 3037                 81 winter       L 25.18209 -80.36319
## 3038                 81 winter       L 25.18209 -80.36319
## 3039                 81 winter       L 25.18209 -80.36319
## 3040                 81 winter       L 25.18209 -80.36319
## 3041                 81 winter       L 25.18209 -80.36319
## 3042                 81 winter       L 25.18209 -80.36319
## 3043                 81 winter       L 25.18209 -80.36319
## 3044                 81 winter       L 25.18209 -80.36319
## 3045                 81 winter       L 25.18209 -80.36319
## 3046                 81 winter       L 25.18209 -80.36319
## 3047                 81 winter       L 25.18209 -80.36319
## 3048                 81 winter       L 25.18209 -80.36319
## 3049                 81 winter       L 25.18209 -80.36319
## 3050                 81 winter       L 25.18209 -80.36319
## 3051                 81 winter       L 25.18209 -80.36319
## 3052                 81 winter       L 25.18209 -80.36319
## 3053                 81 winter       L 25.18209 -80.36319
## 3054                 81 winter       L 25.19515 -80.34592
## 3055                 81 winter       L 25.19515 -80.34592
## 3056                 81 winter       L 25.19515 -80.34592
## 3057                 81 winter       L 25.19515 -80.34592
## 3058                 81 winter       L 25.19515 -80.34592
## 3059                 81 winter       L 25.19515 -80.34592
## 3060                 81 winter       L 25.27349 -80.30410
## 3061                 81 winter       L 25.27349 -80.30410
## 3062                 81 winter       L 25.27349 -80.30410
## 3063                 81 winter       L 25.27349 -80.30410
## 3064                 81 winter       L 25.27349 -80.30410
## 3065                 81 winter       L 25.27349 -80.30410
## 3066                 81 winter       L 25.27349 -80.30410
## 3067                 81 winter       L 25.27349 -80.30410
## 3068                 81 winter       L 25.25656 -80.31080
## 3069                 81 winter       L 25.25656 -80.31080
## 3070                 81 winter       L 25.25656 -80.31080
## 3071                 81 winter       L 25.25656 -80.31080
## 3072                 81 winter       L 25.27349 -80.30410
## 3073                 81 winter       L 25.27349 -80.30410
## 3074                 81 winter       L 25.27349 -80.30410
## 3075                 81 winter       L 25.27349 -80.30410
## 3076                 81 winter       S 25.27349 -80.30410
## 3077                 81 winter       L 25.27349 -80.30410
## 3078                 81 winter       S 25.18209 -80.36319
## 3079                 81 winter       L 25.18209 -80.36319
## 3080                 81 winter       S 25.18209 -80.36319
## 3081                 81 winter       S 25.18209 -80.36319
## 3082                 81 winter       S 25.18209 -80.36319
## 3083                 81 winter       S 25.18209 -80.36319
## 3084                 81 winter       L 25.18209 -80.36319
## 3085                 81 winter       S 25.18209 -80.36319
## 3086                 81 winter       S 25.18209 -80.36319
## 3087                 81 winter       S 25.18209 -80.36319
## 3088                 81 winter       S 25.18209 -80.36319
## 3089                 81 winter       S 25.18209 -80.36319
## 3090                 81 winter       S 25.18209 -80.36319
## 3091                 81 winter       L 25.18209 -80.36319
## 3092                 81 winter       L 25.22752 -80.32838
## 3093                 81 winter       L 25.22752 -80.32838
## 3094                 81 winter       L 25.22752 -80.32838
## 3095                 81 winter       L 25.22752 -80.32838
## 3096                 81 winter       S 25.28661 -80.29081
## 3097                 81 winter       S 25.28661 -80.29081
## 3098                 81 winter       S 25.28661 -80.29081
## 3099                 81 winter       S 25.28661 -80.29081
## 3100                 81 winter       L 25.28661 -80.29081
## 3101                 81 winter       L 25.28661 -80.29081
## 3102                 81 winter       L 25.28661 -80.29081
## 3103                 81 winter       L 25.28661 -80.29081
## 3104                 81 winter       S 25.19515 -80.34592
## 3105                 81 winter       S 25.19515 -80.34592
## 3106                 81 winter       S 25.19515 -80.34592
## 3107                 81 winter       S 25.19515 -80.34592
## 3108                 81 winter       S 25.19515 -80.34592
## 3109                 81 winter       S 25.19515 -80.34592
## 3110                 81 winter       S 25.19515 -80.34592
## 3111                 81 winter       S 25.19515 -80.34592
## 3112                 81 winter       S 25.19515 -80.34592
## 3113                 81 winter       S 25.19515 -80.34592
## 3114                 81 winter       S 25.19515 -80.34592
## 3115                 81 winter       S 25.19515 -80.34592
## 3116                 81 winter       S 25.19515 -80.34592
## 3117                 81 winter       S 25.19515 -80.34592
## 3118                 81 winter       S 25.17557 -80.36781
## 3119                 81 winter       S 25.17557 -80.36781
## 3120                 81 winter       S 25.17557 -80.36781
## 3121                 81 winter       S 25.17557 -80.36781
## 3122                 81 winter       S 25.17557 -80.36781
## 3123                 81 winter       S 25.17557 -80.36781
## 3124                 81 winter       S 25.17557 -80.36781
## 3125                 81 winter       S 25.17557 -80.36781
## 3126                 81 winter       S 25.17557 -80.36781
## 3127                 81 winter       S 25.17557 -80.36781
## 3128                 81 winter       S 25.17557 -80.36781
## 3129                 81 winter       S 25.17557 -80.36781
## 3130                 81 winter       S 25.17557 -80.36781
## 3131                 81 winter       L 25.17557 -80.36781
## 3132                 81 winter       S 25.17557 -80.36781
## 3133                 81 winter       S 25.17557 -80.36781
## 3134                 81 winter       S 25.17557 -80.36781
## 3135                 81 winter       S 25.17557 -80.36781
## 3136                 81 winter       L 25.17557 -80.36781
## 3137                 81 winter       S 25.25656 -80.31080
## 3138                 81 winter       S 25.25656 -80.31080
## 3139                 81 winter       S 25.25656 -80.31080
## 3140                 81 winter       S 25.25656 -80.31080
## 3141                 81 winter       S 25.25656 -80.31080
## 3142                 81 winter       S 25.25656 -80.31080
## 3143                 81 winter       L 25.25656 -80.31080
## 3144                 81 winter       S 25.25656 -80.31080
## 3145                 81 winter       S 25.25656 -80.31080
## 3146                 81 winter       L 25.25656 -80.31080
## 3147                 81 winter       S 25.25656 -80.31080
## 3148                 81 winter       L 25.25656 -80.31080
## 3149                 81 winter       S 25.25656 -80.31080
## 3150                 81 winter       L 25.25656 -80.31080
## 3151                 81 winter       L 25.25656 -80.31080
## 3152                 81 winter       L 25.25656 -80.31080
## 3153                 81 winter       L 25.25656 -80.31080
## 3154                 81 winter       L 25.25656 -80.31080
## 3155                 81 winter       L 24.97357 -80.55392
## 3156                 81 winter       L 24.97357 -80.55392
## 3157                 81 winter       L 24.97357 -80.55392
## 3158                 81 winter       L 24.97357 -80.55392
## 3159                 81 winter       L 24.97357 -80.55392
## 3160                 81 winter       L 24.96424 -80.56733
## 3161                 81 winter       L 24.96424 -80.56733
## 3162                 81 winter       L 24.96424 -80.56733
## 3163                 81 winter       L 24.96424 -80.56733
## 3164                 81 winter       L 24.96424 -80.56733
## 3165                 81 winter       L 24.97357 -80.55392
## 3166                 81 winter       L 24.97357 -80.55392
## 3167                 81 winter       L 24.97357 -80.55392
## 3168                 81 winter       L 24.97357 -80.55392
## 3169                 81 winter       L 24.97357 -80.55392
## 3170                 81 winter       L 24.96424 -80.56733
## 3171                 81 winter       L 24.96424 -80.56733
## 3172                 81 winter       L 24.96424 -80.56733
## 3173                 81 winter       L 24.96424 -80.56733
## 3174                 81 winter       L 24.96424 -80.56733
## 3175                 81 winter       L 24.97357 -80.55392
## 3176                 81 winter       L 24.97357 -80.55392
## 3177                 81 winter       L 24.97357 -80.55392
## 3178                 81 winter       L 24.97357 -80.55392
## 3179                 81 winter       L 24.97357 -80.55392
## 3180                 81 winter       L 24.96424 -80.56733
## 3181                 81 winter       L 24.96424 -80.56733
## 3182                 81 winter       L 24.96424 -80.56733
## 3183                 81 winter       L 24.96424 -80.56733
## 3184                 81 winter       L 24.97357 -80.55392
## 3185                 81 winter       L 24.97357 -80.55392
## 3186                 81 winter       L 24.97357 -80.55392
## 3187                 81 winter       L 24.96424 -80.56733
## 3188                 81 winter       L 24.96424 -80.56733
## 3189                 81 winter       L 24.96424 -80.56733
## 3190                 81 winter       L 24.96424 -80.56733
## 3191                 81 winter       L 24.96424 -80.56733
## 3192                 81 winter       L 24.96424 -80.56733
## 3193                 81 winter       L 24.96424 -80.56733
## 3194                 81 winter       L 24.96424 -80.56733
## 3195                 81 winter       L 24.96424 -80.56733
## 3196                 81 winter       L 24.96424 -80.56733
## 3197                 81 winter       L 24.96424 -80.56733
## 3198                 81 winter       L 24.96424 -80.56733
## 3199                 81 winter       L 24.96424 -80.56733
## 3200                 81 winter       L 24.96424 -80.56733
## 3201                 81 winter       L 24.96424 -80.56733
## 3202                 81 winter       L 24.96424 -80.56733
## 3203                 81 winter       L 24.96424 -80.56733
## 3204                 81 winter       L 24.96424 -80.56733
## 3205                 81 winter       L 24.96424 -80.56733
## 3206                 81 winter       S 24.96424 -80.56733
## 3207                 81 winter       S 24.96424 -80.56733
## 3208                 81 winter       S 24.96424 -80.56733
## 3209                 81 winter       S 24.96424 -80.56733
## 3210                 81 winter       S 24.96424 -80.56733
## 3211                 81 winter       L 24.96424 -80.56733
## 3212                 81 winter       L 24.96424 -80.56733
## 3213                 81 winter       S 24.96424 -80.56733
## 3214                 81 winter       S 24.96424 -80.56733
## 3215                 81 winter       S 24.96424 -80.56733
## 3216                 81 winter       L 24.96424 -80.56733
## 3217                 81 winter       S 24.96424 -80.56733
## 3218                 81 winter       S 24.96424 -80.56733
## 3219                 81 winter       S 24.96424 -80.56733
## 3220                 81 winter       S 24.96424 -80.56733
## 3221                 81 winter       S 24.96424 -80.56733
## 3222                 81 winter       S 24.96424 -80.56733
## 3223                 81 winter       L 24.96424 -80.56733
## 3224                 81 winter       L 24.97357 -80.55392
## 3225                 81 winter       L 24.97357 -80.55392
## 3226                 77   fall       L 24.96424 -80.56733
## 3227                 77   fall       L 24.96424 -80.56733
## 3228                 77   fall       L 24.96424 -80.56733
## 3229                 77   fall       L 24.96424 -80.56733
## 3230                 77   fall       L 24.96424 -80.56733
## 3231                 77   fall       L 24.96424 -80.56733
## 3232                 77   fall       L 24.96424 -80.56733
## 3233                 77   fall       L 24.96424 -80.56733
## 3234                 77   fall       S 24.96424 -80.56733
## 3235                 77   fall       L 24.96424 -80.56733
## 3236                 77   fall       L 24.96424 -80.56733
## 3237                 77   fall       L 24.96424 -80.56733
## 3238                 77   fall       L 24.96424 -80.56733
## 3239                 77   fall       L 24.96424 -80.56733
## 3240                 77   fall       S 24.96424 -80.56733
## 3241                 77   fall       S 24.96424 -80.56733
## 3242                 77   fall       L 24.96424 -80.56733
## 3243                 77   fall       L 24.96424 -80.56733
## 3244                 77   fall       S 24.96424 -80.56733
## 3245                 77   fall       L 24.96424 -80.56733
## 3246                 77   fall       L 24.96424 -80.56733
## 3247                 77   fall       L 24.96424 -80.56733
## 3248                 77   fall       L 24.96424 -80.56733
## 3249                 77   fall       L 24.96424 -80.56733
## 3250                 77   fall       L 24.96424 -80.56733
## 3251                 77   fall       L 25.49136 -80.48582
## 3252                 77   fall       L 25.49136 -80.48582
## 3253                 77   fall       L 25.49136 -80.48582
## 3254                 77   fall       L 25.49136 -80.48582
## 3255                 77   fall       L 25.49136 -80.48582
## 3256                 77   fall       L 25.49136 -80.48582
## 3257                 77   fall       L 25.49136 -80.48582
## 3258                 77   fall       L 25.49136 -80.48582
## 3259                 77   fall       L 25.49136 -80.48582
## 3260                 77   fall       S 25.49136 -80.48582
## 3261                 77   fall       L 25.49136 -80.48582
## 3262                 77   fall       L 25.49136 -80.48582
## 3263                 77   fall       L 25.25648 -80.31069
## 3264                 77   fall       L 25.25648 -80.31069
## 3265                 77   fall       L 25.25648 -80.31069
## 3266                 77   fall       L 25.25648 -80.31069
## 3267                 77   fall       L 25.25648 -80.31069
## 3268                 77   fall       L 25.25648 -80.31069
## 3269                 77   fall       L 25.25648 -80.31069
## 3270                 77   fall       L 25.25648 -80.31069
## 3271                 77   fall       L 25.25648 -80.31069
## 3272                 77   fall       L 25.25648 -80.31069
## 3273                 77   fall       L 25.25648 -80.31069
## 3274                 77   fall       L 25.25648 -80.31069
## 3275                 77   fall       S 25.25648 -80.31069
## 3276                 77   fall       L 25.25648 -80.31069
## 3277                 77   fall       L 25.28675 -80.29059
## 3278                 77   fall       L 25.28675 -80.29059
## 3279                 77   fall       L 25.28675 -80.29059
## 3280                 77   fall       L 25.28675 -80.29059
## 3281                 77   fall       L 25.28675 -80.29059
## 3282                 77   fall       L 25.28675 -80.29059
## 3283                 77   fall       L 25.28675 -80.29059
## 3284                 77   fall       L 25.28675 -80.29059
## 3285                 77   fall       L 25.28675 -80.29059
## 3286                 77   fall       L 25.28675 -80.29059
## 3287                 77   fall       L 25.28675 -80.29059
## 3288                 77   fall       L 25.28675 -80.29059
## 3289                 77   fall       L 27.29863 -81.36615
## 3290                 77   fall       L 27.29863 -81.36615
## 3291                 77   fall       L 27.29863 -81.36615
## 3292                 77   fall       L 27.29863 -81.36615
## 3293                 77   fall       L 27.29863 -81.36615
## 3294                 77   fall       L 27.29863 -81.36615
## 3295                 77   fall       L 27.29863 -81.36615
## 3296                 77   fall       S 27.29863 -81.36615
## 3297                 77   fall       L 27.29863 -81.36615
## 3298                 77   fall       L 27.29863 -81.36615
## 3299                 77   fall       L 27.29863 -81.36615
## 3300                 77   fall       L 27.29863 -81.36615
## 3301                 77   fall       L 27.29863 -81.36615
## 3302                 77   fall       L 27.29863 -81.36615
## 3303                 77   fall       L 27.29863 -81.36615
## 3304                 77   fall       L 27.29863 -81.36615
## 3305                 77   fall       L 27.29863 -81.36615
## 3306                 77   fall       L 27.29863 -81.36615
## 3307                 77   fall       L 27.29863 -81.36615
## 3308                 77   fall       L 27.29863 -81.36615
## 3309                 77   fall       L 27.29863 -81.36615
## 3310                 77   fall       L 25.22752 -80.32838
## 3311                 77   fall       L 25.22752 -80.32838
## 3312                 77   fall       L 25.22752 -80.32838
## 3313                 77   fall       L 25.22752 -80.32838
## 3314                 43   fall       L 25.55090 -80.42110
## 3315                 43   fall       S 25.55090 -80.42110
## 3316                 43   fall       S 25.55090 -80.42110
## 3317                 43   fall       S 25.55090 -80.42110
## 3318                 77   fall       L 25.12846 -80.40809
## 3319                 77   fall       L 25.12846 -80.40809
## 3320                 77   fall       L 25.12846 -80.40809
## 3321                 77   fall       L 25.12846 -80.40809
## 3322                 77   fall       L 25.12846 -80.40809
## 3323                 77   fall       L 25.12846 -80.40809
## 3324                 77   fall       L 25.12846 -80.40809
## 3325                 77   fall       L 25.27349 -80.30410
## 3326                 77   fall       L 25.27349 -80.30410
## 3327                 77   fall       L 25.27349 -80.30410
## 3328                 77   fall       S 25.27349 -80.30410
## 3329                 77   fall       L 25.27349 -80.30410
## 3330                 77   fall       S 25.27349 -80.30410
## 3331                 77   fall       L 25.12848 -80.40754
## 3332                 77   fall       L 25.12848 -80.40754
## 3333                 77   fall       L 25.12848 -80.40754
## 3334                 77   fall       L 25.18088 -80.36466
## 3335                 77   fall       L 25.18088 -80.36466
## 3336                 77   fall       L 25.18088 -80.36466
## 3337                 77   fall       L 25.18088 -80.36466
## 3338                 77   fall       L 25.18088 -80.36466
## 3339                 77   fall       L 25.18088 -80.36466
## 3340                 72 spring       L 27.89664 -81.58064
## 3341                 72 spring       S 27.89664 -81.58064
## 3342                 72 spring       L 27.89664 -81.58064
## 3343                 72 spring       L 27.89664 -81.58064
## 3344                 72 spring       L 27.89664 -81.58064
## 3345                 72 spring       L 27.89664 -81.58064
## 3346                 72 spring       L 27.89664 -81.58064
## 3347                 72 spring       L 27.89664 -81.58064
## 3348                 72 spring       L 27.89664 -81.58064
## 3349                 72 spring       L 27.89664 -81.58064
## 3350                 72 spring       L 27.89664 -81.58064
## 3351                 72 spring       L 27.89664 -81.58064
## 3352                 72 spring       L 27.89664 -81.58064
## 3353                 72 spring       L 27.89664 -81.58064
## 3354                 72 spring       L 27.89664 -81.58064
## 3355                 72 spring       L 27.89664 -81.58064
## 3356                 72 spring       L 27.89664 -81.58064
## 3357                 72 spring       L 27.89664 -81.58064
## 3358                 72 spring       L 27.89664 -81.58064
## 3359                 72 spring       L 27.89664 -81.58064
## 3360                 72 spring       L 27.89664 -81.58064
## 3361                 72 spring       L 27.89664 -81.58064
## 3362                 72 spring       L 27.89664 -81.58064
## 3363                 72 spring       L 27.89664 -81.58064
## 3364                 72 spring       L 27.89664 -81.58064
## 3365                 72 spring       L 27.89664 -81.58064
## 3366                 72 spring       L 27.89664 -81.58064
## 3367                 72 spring       L 27.89664 -81.58064
## 3368                 72 spring       L 27.89664 -81.58064
## 3369                 72 spring       L 27.89664 -81.58064
## 3370                 72 spring       L 27.89664 -81.58064
## 3371                 72 spring       L 27.89664 -81.58064
## 3372                 72 spring       L 27.89664 -81.58064
## 3373                 72 spring       L 27.89664 -81.58064
## 3374                 72 spring       L 27.89664 -81.58064
## 3375                 72 spring       L 27.89664 -81.58064
## 3376                 72 spring       L 27.89664 -81.58064
## 3377                 72 spring       L 27.89664 -81.58064
## 3378                 72 spring       L 27.89664 -81.58064
## 3379                 72 spring       L 27.89664 -81.58064
## 3380                 72 spring       L 27.89664 -81.58064
## 3381                 72 spring       L 27.89664 -81.58064
## 3382                 72 spring       L 27.89664 -81.58064
## 3383                 72 spring       L 27.89664 -81.58064
## 3384                 72 spring       L 27.89664 -81.58064
## 3385                 72 spring       L 27.89664 -81.58064
## 3386                 72 spring       L 27.89664 -81.58064
## 3387                 72 spring       L 27.89664 -81.58064
## 3388                 72 spring       L 27.89664 -81.58064
## 3389                 72 spring       L 27.89664 -81.58064
## 3390                 72 spring       L 27.89664 -81.58064
## 3391                 72 spring       L 27.89664 -81.58064
## 3392                 72 spring       L 27.89664 -81.58064
## 3393                 72 spring       L 27.89664 -81.58064
## 3394                 72 spring       L 28.79642 -81.87792
## 3395                 72 spring       L 28.79642 -81.87792
## 3396                 72 spring       L 28.79642 -81.87792
## 3397                 72 spring       L 28.79642 -81.87792
## 3398                 72 spring       L 28.79642 -81.87792
## 3399                 72 spring       L 28.79642 -81.87792
## 3400                 72 spring       L 28.79642 -81.87792
## 3401                 72 spring       L 28.79642 -81.87792
## 3402                 72 spring       L 28.79642 -81.87792
## 3403                 72 spring       L 28.79642 -81.87792
## 3404                 72 spring       L 28.79642 -81.87792
## 3405                 72 spring       L 28.79642 -81.87792
## 3406                 72 spring       L 28.79642 -81.87792
## 3407                 72 spring       L 28.79642 -81.87792
## 3408                 72 spring       L 28.79642 -81.87792
## 3409                 72 spring       L 28.79642 -81.87792
## 3410                 72 spring       L 28.79642 -81.87792
## 3411                 72 spring       L 28.79642 -81.87792
## 3412                 72 spring       L 28.79642 -81.87792
## 3413                 72 spring       L 28.79642 -81.87792
## 3414                 72 spring       L 28.79642 -81.87792
## 3415                 72 spring       L 28.79642 -81.87792
## 3416                 72 spring       L 28.79642 -81.87792
## 3417                 72 spring       L 28.79642 -81.87792
## 3418                 72 spring       L 28.79642 -81.87792
## 3419                 72 spring       L 28.79642 -81.87792
## 3420                 72 spring       L 28.79642 -81.87792
## 3421                 72 spring       L 28.79642 -81.87792
## 3422                 72 spring       L 28.79642 -81.87792
## 3423                 72 spring       L 28.79642 -81.87792
## 3424                 72 spring       L 28.79642 -81.87792
## 3425                 72 spring       L 28.79642 -81.87792
## 3426                 72 spring       L 28.79642 -81.87792
## 3427                 72 spring       L 28.79642 -81.87792
## 3428                 72 spring       L 28.79642 -81.87792
## 3429                 72 spring       L 28.79642 -81.87792
## 3430                 72 spring       L 28.79642 -81.87792
## 3431                 72 spring       L 28.79642 -81.87792
## 3432                 72 spring       L 28.79642 -81.87792
## 3433                 72 spring       L 28.79642 -81.87792
## 3434                 72 spring       L 28.79642 -81.87792
## 3435                 72 spring       L 28.79642 -81.87792
## 3436                 72 spring       L 28.79642 -81.87792
## 3437                 72 spring       L 28.79642 -81.87792
## 3438                 72 spring       L 28.79642 -81.87792
## 3439                 72 spring       L 28.79642 -81.87792
## 3440                 72 spring       L 28.79642 -81.87792
## 3441                 72 spring       L 28.79642 -81.87792
## 3442                 72 spring       L 28.79642 -81.87792
## 3443                 72 spring       L 28.79642 -81.87792
## 3444                 72 spring       L 28.79642 -81.87792
## 3445                 72 spring       S 28.79642 -81.87792
## 3446                 72 spring       L 28.79642 -81.87792
## 3447                 72 spring       L 28.79642 -81.87792
##                             diapause field_date_collected
## 1                                                        
## 2                                                        
## 3                                                        
## 4                                                        
## 5                                                        
## 6                                                        
## 7                                                        
## 8                                                        
## 9                                                        
## 10                                                       
## 11                                                       
## 12                                                       
## 13                                                       
## 14                                                       
## 15                                                       
## 16                                                       
## 17                                                       
## 18                                                       
## 19                                                       
## 20                                                       
## 21                                                       
## 22                                                       
## 23                                                       
## 24                                                       
## 25                                                       
## 26                                                       
## 27                                                       
## 28                                                       
## 29                                                       
## 30                                                       
## 31                                                       
## 32                                                       
## 33                                                       
## 34                                                       
## 35                                                       
## 36                                                       
## 37                                                       
## 38                                                       
## 39                                                       
## 40                                                       
## 41                                                       
## 42                                                       
## 43                                                       
## 44                                                       
## 45                                                       
## 46                                                       
## 47                                                       
## 48                                                       
## 49                                                       
## 50                                                       
## 51                                                       
## 52                                                       
## 53                                                       
## 54                                                       
## 55                                                       
## 56                                                       
## 57                                                       
## 58                                                       
## 59                                                       
## 60                                                       
## 61                                                       
## 62                                                       
## 63                                                       
## 64                                                       
## 65                                                       
## 66                                                       
## 67                                                       
## 68                                                       
## 69                                                       
## 70                                                       
## 71                                                       
## 72                                                       
## 73                                                       
## 74                                                       
## 75                                                       
## 76                                                       
## 77                                                       
## 78                                                       
## 79                                                       
## 80                                                       
## 81                                                       
## 82                                                       
## 83                                                       
## 84                                                       
## 85                                                       
## 86                                                       
## 87                                                       
## 88                                                       
## 89                                                       
## 90                                                       
## 91                                                       
## 92                                                       
## 93                                                       
## 94                                                       
## 95                                                       
## 96                                                       
## 97                                                       
## 98                                                       
## 99                                                       
## 100                                                      
## 101                                                      
## 102                                                      
## 103                                                      
## 104                                                      
## 105                                                      
## 106                                                      
## 107                                                      
## 108                                                      
## 109                                                      
## 110                                                      
## 111                                                      
## 112                                                      
## 113                                                      
## 114                                                      
## 115                                                      
## 116                                                      
## 117                                                      
## 118                                                      
## 119                                                      
## 120                                                      
## 121                                                      
## 122                                                      
## 123                                                      
## 124                                                      
## 125                                                      
## 126                                                      
## 127                                                      
## 128                                                      
## 129                                                      
## 130                                                      
## 131                                                      
## 132                                                      
## 133                                                      
## 134                                                      
## 135                                                      
## 136                                                      
## 137                                                      
## 138                                                      
## 139                                                      
## 140                                                      
## 141                                                      
## 142                                                      
## 143                                                      
## 144                                                      
## 145                                                      
## 146                                                      
## 147                                                      
## 148                                                      
## 149                                                      
## 150                                                      
## 151                                                      
## 152                                                      
## 153                                                      
## 154                                                      
## 155                                                      
## 156                                                      
## 157                                                      
## 158                                                      
## 159                                                      
## 160                                                      
## 161                                                      
## 162                                                      
## 163                                                      
## 164                                                      
## 165                                                      
## 166                                                      
## 167                                                      
## 168                                                      
## 169                                                      
## 170                                                      
## 171                                                      
## 172                                                      
## 173                                                      
## 174                                                      
## 175                                                      
## 176                                                      
## 177                                                      
## 178                                                      
## 179                                                      
## 180                                                      
## 181                                                      
## 182                                                      
## 183                                                      
## 184                                                      
## 185                                                      
## 186                                                      
## 187                                                      
## 188                                                      
## 189                                                      
## 190                                                      
## 191                                                      
## 192                                                      
## 193                                                      
## 194                                                      
## 195                                                      
## 196                                                      
## 197                                                      
## 198                                                      
## 199                                                      
## 200                                                      
## 201                                                      
## 202                                                      
## 203                                                      
## 204                                                      
## 205                                                      
## 206                                                      
## 207                                                      
## 208                                                      
## 209                                                      
## 210                                                      
## 211                                                      
## 212                                                      
## 213                                                      
## 214                                                      
## 215                                                      
## 216                                                      
## 217                                                      
## 218                                                      
## 219                                                      
## 220                                                      
## 221                                                      
## 222                                                      
## 223                                                      
## 224                                                      
## 225                                                      
## 226                                                      
## 227                                                      
## 228                                                      
## 229                                                      
## 230                                                      
## 231                                                      
## 232                                                      
## 233                                                      
## 234                                                      
## 235                                                      
## 236                                                      
## 237                                                      
## 238                                                      
## 239                                                      
## 240                                                      
## 241                                                      
## 242                                                      
## 243                                                      
## 244                                                      
## 245                                                      
## 246                                                      
## 247                                                      
## 248                                                      
## 249                                                      
## 250                                                      
## 251                                                      
## 252                                                      
## 253                                                      
## 254                                                      
## 255                                                      
## 256                                                      
## 257                                                      
## 258                                                      
## 259                                                      
## 260                                                      
## 261                                                      
## 262                                                      
## 263                                                      
## 264                                                      
## 265                                                      
## 266                                                      
## 267                                                      
## 268                                                      
## 269                                                      
## 270                                                      
## 271                                                      
## 272                                                      
## 273                                                      
## 274                                                      
## 275                                                      
## 276                                                      
## 277                                                      
## 278                                                      
## 279                                                      
## 280                                                      
## 281                                                      
## 282                                                      
## 283                                                      
## 284                                                      
## 285                                                      
## 286                                                      
## 287                                                      
## 288                                                      
## 289                                                      
## 290                                                      
## 291                                                      
## 292                                                      
## 293                                                      
## 294                                                      
## 295                                                      
## 296                                                      
## 297                                                      
## 298                                                      
## 299                                                      
## 300                                                      
## 301                                                      
## 302                                                      
## 303                                                      
## 304                                                      
## 305                                                      
## 306                                                      
## 307                                                      
## 308                                                      
## 309                                                      
## 310                                                      
## 311                                                      
## 312                                                      
## 313                                                      
## 314                                                      
## 315                                                      
## 316                                                      
## 317                                                      
## 318                                                      
## 319                                                      
## 320                                                      
## 321                                                      
## 322                                                      
## 323                                                      
## 324                                                      
## 325                                                      
## 326                                                      
## 327                                                      
## 328                                                      
## 329                                                      
## 330                                                      
## 331                                                      
## 332                                                      
## 333                                                      
## 334                                                      
## 335                                                      
## 336                                                      
## 337                                                      
## 338                                                      
## 339                                                      
## 340                                                      
## 341                                                      
## 342                                                      
## 343                                                      
## 344                                                      
## 345                                                      
## 346                                                      
## 347                                                      
## 348                                                      
## 349                                                      
## 350                                                      
## 351                                                      
## 352                                                      
## 353                                                      
## 354                                                      
## 355                                                      
## 356                                                      
## 357                                                      
## 358                                                      
## 359                                                      
## 360                                                      
## 361                                                      
## 362                                                      
## 363                                                      
## 364                                                      
## 365                                                      
## 366                                                      
## 367                                                      
## 368                                                      
## 369                                                      
## 370                                                      
## 371                                                      
## 372                                                      
## 373                                                      
## 374                                                      
## 375                                                      
## 376                                                      
## 377                                                      
## 378                                                      
## 379                                                      
## 380                                                      
## 381                                                      
## 382                                                      
## 383                                                      
## 384                                                      
## 385                                                      
## 386                                                      
## 387                                                      
## 388                                                      
## 389                                                      
## 390                                                      
## 391                                                      
## 392                                                      
## 393                                                      
## 394                                                      
## 395                                                      
## 396                                                      
## 397                                                      
## 398                                                      
## 399                                                      
## 400                                                      
## 401                                                      
## 402                                                      
## 403                                                      
## 404                                                      
## 405                                                      
## 406                                                      
## 407                                                      
## 408                                                      
## 409                                                      
## 410                                                      
## 411                                                      
## 412                                                      
## 413                                                      
## 414                                                      
## 415                                                      
## 416                                                      
## 417                                                      
## 418                                                      
## 419                                                      
## 420                                                      
## 421                                                      
## 422                                                      
## 423                                                      
## 424                                                      
## 425                                                      
## 426                                                      
## 427                                                      
## 428                                                      
## 429                                                      
## 430                                                      
## 431                                                      
## 432                                                      
## 433                                                      
## 434                                                      
## 435                                                      
## 436                                                      
## 437                                                      
## 438                                                      
## 439                                                      
## 440                                                      
## 441                                                      
## 442                                                      
## 443                                                      
## 444                                                      
## 445                                                      
## 446                                                      
## 447                                                      
## 448                                                      
## 449                                                      
## 450                                                      
## 451                                                      
## 452                                                      
## 453                                                      
## 454                                                      
## 455                                                      
## 456                                                      
## 457                                                      
## 458                                                      
## 459                                                      
## 460                                                      
## 461                                                      
## 462                                                      
## 463                                                      
## 464                                                      
## 465                                                      
## 466                                                      
## 467                                                      
## 468                                                      
## 469                                                      
## 470                                                      
## 471                                                      
## 472                                                      
## 473                                                      
## 474                                                      
## 475                                                      
## 476                                                      
## 477                                                      
## 478                                                      
## 479                                                      
## 480                                                      
## 481                                                      
## 482                                                      
## 483                                                      
## 484                                                      
## 485                                                      
## 486                                                      
## 487                                                      
## 488                                                      
## 489                                                      
## 490                                                      
## 491                                                      
## 492                                                      
## 493                                                      
## 494                                                      
## 495                                                      
## 496                                                      
## 497                                                      
## 498                                                      
## 499                                                      
## 500                                                      
## 501                                                      
## 502                                                      
## 503                                                      
## 504                                                      
## 505                                                      
## 506                                                      
## 507                                                      
## 508                                                      
## 509                                                      
## 510                                                      
## 511                                                      
## 512                                                      
## 513                                                      
## 514                                                      
## 515                                                      
## 516                                                      
## 517                                                      
## 518                                                      
## 519                                                      
## 520                                                      
## 521                                                      
## 522                                                      
## 523                                                      
## 524                                                      
## 525                                                      
## 526                                                      
## 527                                                      
## 528                                                      
## 529                                                      
## 530                                                      
## 531                                                      
## 532                                                      
## 533                                                      
## 534                                                      
## 535                                                      
## 536                                                      
## 537                                                      
## 538                                                      
## 539                                                      
## 540                                                      
## 541                                                      
## 542                                                      
## 543                                                      
## 544                                                      
## 545                                                      
## 546                                                      
## 547                                                      
## 548                                                      
## 549                                                      
## 550                                                      
## 551                                                      
## 552                                                      
## 553                                                      
## 554                                                      
## 555                                                      
## 556                                                      
## 557                                                      
## 558                                                      
## 559                                                      
## 560                                                      
## 561                                                      
## 562                                                      
## 563                                                      
## 564                                                      
## 565                                                      
## 566                                                      
## 567                                                      
## 568                                                      
## 569                                                      
## 570                                                      
## 571                                                      
## 572                                                      
## 573                                                      
## 574                                                      
## 575                                                      
## 576                                                      
## 577                                                      
## 578                                                      
## 579                                                      
## 580                                                      
## 581                                                      
## 582                                                      
## 583                                                      
## 584                                                      
## 585                                                      
## 586                                                      
## 587                                                      
## 588                                                      
## 589                                                      
## 590                                                      
## 591                                                      
## 592                                                      
## 593                                                      
## 594                                                      
## 595                                                      
## 596                                                      
## 597                                                      
## 598                                                      
## 599                                                      
## 600                                                      
## 601                                                      
## 602                                                      
## 603                                                      
## 604                                                      
## 605                                                      
## 606                                                      
## 607                                                      
## 608                                                      
## 609                                                      
## 610                                                      
## 611                                                      
## 612                                                      
## 613                                                      
## 614                                                      
## 615                                                      
## 616                                                      
## 617                                                      
## 618                                                      
## 619                                                      
## 620                                                      
## 621                                                      
## 622                                                      
## 623                                                      
## 624                                                      
## 625                                                      
## 626                                                      
## 627                                                      
## 628                                                      
## 629                                                      
## 630                                                      
## 631                                                      
## 632                                                      
## 633                                                      
## 634                                                      
## 635                                                      
## 636                                                      
## 637                                                      
## 638                                                      
## 639                                                      
## 640                                                      
## 641                                                      
## 642                                                      
## 643                                                      
## 644                                                      
## 645                                                      
## 646                                                      
## 647                                                      
## 648                                                      
## 649                                                      
## 650                                                      
## 651                                                      
## 652                                                      
## 653                                                      
## 654                                                      
## 655                                                      
## 656                                                      
## 657                                                      
## 658                                                      
## 659                                                      
## 660                                                      
## 661                                                      
## 662                                                      
## 663                                                      
## 664                                                      
## 665                                                      
## 666                                                      
## 667                                                      
## 668                                                      
## 669                                                      
## 670                                                      
## 671                                                      
## 672                                                      
## 673                                                      
## 674                                                      
## 675                                                      
## 676                                                      
## 677                                                      
## 678                                                      
## 679                                                      
## 680                                                      
## 681                                                      
## 682                                                      
## 683                                                      
## 684                                                      
## 685                                                      
## 686                                                      
## 687                                                      
## 688                                                      
## 689                                                      
## 690                                                      
## 691                                                      
## 692                                                      
## 693                                                      
## 694                                                      
## 695                                                      
## 696                                                      
## 697                                                      
## 698                                                      
## 699                                                      
## 700                                                      
## 701                                                      
## 702                                                      
## 703                                                      
## 704                                                      
## 705                                                      
## 706                                                      
## 707                                                      
## 708                                                      
## 709                                                      
## 710                                                      
## 711                                                      
## 712                                                      
## 713                                                      
## 714                                                      
## 715                                                      
## 716                                                      
## 717                                                      
## 718                                                      
## 719                                                      
## 720                                                      
## 721                                                      
## 722                                                      
## 723                                                      
## 724                                                      
## 725                                                      
## 726                                                      
## 727                                                      
## 728                                                      
## 729                                                      
## 730                                                      
## 731                                                      
## 732                                                      
## 733                                                      
## 734                                                      
## 735                                                      
## 736                                                      
## 737                                                      
## 738                                                      
## 739                                                      
## 740                                                      
## 741                                                      
## 742                                                      
## 743                                                      
## 744                                                      
## 745                                                      
## 746                                                      
## 747                                                      
## 748                                                      
## 749                                                      
## 750                                                      
## 751                                                      
## 752                                                      
## 753                                                      
## 754                                                      
## 755                                                      
## 756                                                      
## 757                                                      
## 758                                                      
## 759                                                      
## 760                                                      
## 761                                                      
## 762                                                      
## 763                                                      
## 764                                                      
## 765                                                      
## 766                                                      
## 767                                                      
## 768                                                      
## 769                                                      
## 770                                                      
## 771                                                      
## 772                                                      
## 773                                                      
## 774                                                      
## 775                                                      
## 776                                                      
## 777                                                      
## 778                                                      
## 779                                                      
## 780                                                      
## 781                                                      
## 782                                                      
## 783                                                      
## 784                                                      
## 785                                                      
## 786                                                      
## 787                                                      
## 788                                                      
## 789                                                      
## 790                                                      
## 791                                                      
## 792                                                      
## 793                                                      
## 794                                                      
## 795                                                      
## 796                                                      
## 797                                                      
## 798                                                      
## 799                                                      
## 800                                                      
## 801                                                      
## 802                                                      
## 803                                                      
## 804                                                      
## 805                                                      
## 806                                                      
## 807                                                      
## 808                                                      
## 809                                                      
## 810                                                      
## 811                                                      
## 812                                                      
## 813                                                      
## 814                                                      
## 815                                                      
## 816                                                      
## 817                                                      
## 818                                                      
## 819                                                      
## 820                                                      
## 821                                                      
## 822                                                      
## 823                                                      
## 824                                                      
## 825                                                      
## 826                                                      
## 827                                                      
## 828                                                      
## 829                                                      
## 830                                                      
## 831                                                      
## 832                                                      
## 833                                                      
## 834                                                      
## 835                                                      
## 836                                                      
## 837                                                      
## 838                                                      
## 839                                                      
## 840                                                      
## 841                                                      
## 842                                                      
## 843                                                      
## 844                                                      
## 845                                                      
## 846                                                      
## 847                                                      
## 848                                                      
## 849                                                      
## 850                                                      
## 851                                                      
## 852                                                      
## 853                                                      
## 854                                                      
## 855                                                      
## 856                                                      
## 857                                                      
## 858                                                      
## 859                                                      
## 860                                                      
## 861                                                      
## 862                                                      
## 863                                                      
## 864                                                      
## 865                                                      
## 866                                                      
## 867                                                      
## 868                                                      
## 869                                                      
## 870                                                      
## 871                                                      
## 872                                                      
## 873                                                      
## 874                                                      
## 875                                                      
## 876                                                      
## 877                                                      
## 878                                                      
## 879                                                      
## 880                                                      
## 881                                                      
## 882                                                      
## 883                                                      
## 884                                                      
## 885                                                      
## 886                                                      
## 887                                                      
## 888                                                      
## 889                                                      
## 890                                                      
## 891                                                      
## 892                                                      
## 893                                                      
## 894                                                      
## 895                                                      
## 896                                                      
## 897                                                      
## 898                                                      
## 899                                                      
## 900                                                      
## 901                                                      
## 902                                                      
## 903                                                      
## 904                                                      
## 905                                                      
## 906                                                      
## 907                                                      
## 908                                                      
## 909                                                      
## 910                                                      
## 911                                                      
## 912                                                      
## 913                                                      
## 914                                                      
## 915                                                      
## 916                                                      
## 917                                                      
## 918                                                      
## 919                                                      
## 920                                                      
## 921                                                      
## 922                                                      
## 923                                                      
## 924                                                      
## 925                                                      
## 926                                                      
## 927                                                      
## 928                                                      
## 929                                                      
## 930                                                      
## 931                                                      
## 932                                                      
## 933                                                      
## 934                                                      
## 935                                                      
## 936                                                      
## 937                                                      
## 938                                                      
## 939                                                      
## 940                                                      
## 941                                                      
## 942                                                      
## 943                                                      
## 944                                                      
## 945                                                      
## 946                                                      
## 947                                                      
## 948                                                      
## 949                                                      
## 950                                                      
## 951                                                      
## 952                                                      
## 953                                                      
## 954                                                      
## 955                                                      
## 956                                                      
## 957                                                      
## 958                                                      
## 959                                                      
## 960                                                      
## 961                                                      
## 962                                                      
## 963                                                      
## 964                                                      
## 965                                                      
## 966                                                      
## 967                                                      
## 968                                                      
## 969                                                      
## 970                                                      
## 971                                                      
## 972                                                      
## 973                                                      
## 974                                                      
## 975                                                      
## 976                                                      
## 977                                                      
## 978                                                      
## 979                                                      
## 980                                                      
## 981                                                      
## 982                                                      
## 983                                                      
## 984                                                      
## 985                                                      
## 986                                                      
## 987                                                      
## 988                                                      
## 989                                                      
## 990                                                      
## 991                                                      
## 992                                                      
## 993                                                      
## 994                                                      
## 995                                                      
## 996                                                      
## 997                                                      
## 998                                                      
## 999                                                      
## 1000                                                     
## 1001                                                     
## 1002                                                     
## 1003                                                     
## 1004                                                     
## 1005                                                     
## 1006                                                     
## 1007                                                     
## 1008                                                     
## 1009                                                     
## 1010                                                     
## 1011                                                     
## 1012                                                     
## 1013                                                     
## 1014                                                     
## 1015                                                     
## 1016                                                     
## 1017                                                     
## 1018                                                     
## 1019                                                     
## 1020                                                     
## 1021                                                     
## 1022                                                     
## 1023                                                     
## 1024                                                     
## 1025                                                     
## 1026                                                     
## 1027                                                     
## 1028                                                     
## 1029                                                     
## 1030                                                     
## 1031                                                     
## 1032                                                     
## 1033                                                     
## 1034                                                     
## 1035                                                     
## 1036                                                     
## 1037                                                     
## 1038                                                     
## 1039                                                     
## 1040                                                     
## 1041                                                     
## 1042                                                     
## 1043                                                     
## 1044                                                     
## 1045                                                     
## 1046                                                     
## 1047                                                     
## 1048                                                     
## 1049                                                     
## 1050                                                     
## 1051                                                     
## 1052                                                     
## 1053                                                     
## 1054                                                     
## 1055                                                     
## 1056                                                     
## 1057                                                     
## 1058                                                     
## 1059                                                     
## 1060                                                     
## 1061                                                     
## 1062                                                     
## 1063                                                     
## 1064                  non-diapausing           12.18.2016
## 1065                  non-diapausing           12.18.2016
## 1066                  non-diapausing           12.18.2016
## 1067                  non-diapausing           12.18.2016
## 1068                  non-diapausing           12.18.2016
## 1069                  non-diapausing           12.18.2016
## 1070                  non-diapausing           12.18.2016
## 1071                  non-diapausing           12.18.2016
## 1072                  non-diapausing           12.18.2016
## 1073                  non-diapausing           12.18.2016
## 1074                  non-diapausing           12.18.2016
## 1075                  non-diapausing           12.18.2016
## 1076                  non-diapausing           12.18.2016
## 1077                  non-diapausing           12.18.2016
## 1078                  non-diapausing           12.18.2016
## 1079                  non-diapausing           12.18.2016
## 1080                  non-diapausing           12.18.2016
## 1081                  non-diapausing           12.18.2016
## 1082                  non-diapausing           12.18.2016
## 1083                  non-diapausing           12.18.2016
## 1084                  non-diapausing           12.18.2016
## 1085                  non-diapausing           12.18.2016
## 1086                  non-diapausing           12.18.2016
## 1087                  non-diapausing           12.18.2016
## 1088                  non-diapausing           12.18.2016
## 1089                  non-diapausing           12.18.2016
## 1090                  non-diapausing           12.18.2016
## 1091                  non-diapausing           12.18.2016
## 1092                  non-diapausing           12.18.2016
## 1093                  non-diapausing           12.18.2016
## 1094                  non-diapausing           12.18.2016
## 1095                  non-diapausing           12.18.2016
## 1096                  non-diapausing           12.18.2016
## 1097                  non-diapausing           12.18.2016
## 1098                  non-diapausing           12.18.2016
## 1099                  non-diapausing           12.18.2016
## 1100                  non-diapausing           12.18.2016
## 1101                  non-diapausing           12.18.2016
## 1102                  non-diapausing           12.18.2016
## 1103                  non-diapausing           12.18.2016
## 1104                  non-diapausing           12.18.2016
## 1105                  non-diapausing           12.18.2016
## 1106                  non-diapausing           12.18.2016
## 1107                  non-diapausing           12.18.2016
## 1108                  non-diapausing           12.18.2016
## 1109                  non-diapausing           12.18.2016
## 1110                  non-diapausing           12.18.2016
## 1111                  non-diapausing           12.18.2016
## 1112                  non-diapausing           12.18.2016
## 1113                  non-diapausing           12.18.2016
## 1114                  non-diapausing           12.18.2016
## 1115                  non-diapausing           12.18.2016
## 1116                  non-diapausing           12.18.2016
## 1117                  non-diapausing           12.18.2016
## 1118                  non-diapausing           12.18.2016
## 1119                  non-diapausing           12.18.2016
## 1120                  non-diapausing           12.18.2016
## 1121                                           12.15.2016
## 1122                                           12.15.2016
## 1123                                           12.15.2016
## 1124                                           12.15.2016
## 1125                                           12.15.2016
## 1126                                           12.15.2016
## 1127                                           12.15.2016
## 1128                                           12.15.2016
## 1129                                           12.15.2016
## 1130                                           12.15.2016
## 1131                                           12.15.2016
## 1132                                           12.15.2016
## 1133                                           12.15.2016
## 1134                                           12.14.2016
## 1135                                           12.14.2016
## 1136                                           12.14.2016
## 1137                                           12.14.2016
## 1138                                           12.14.2016
## 1139                                           12.14.2016
## 1140                                           12.14.2016
## 1141                                           12.14.2016
## 1142                                           12.14.2016
## 1143                                           12.14.2016
## 1144                                           12.14.2016
## 1145                                           12.14.2016
## 1146                                           12.14.2016
## 1147                                           12.14.2016
## 1148                                           12.14.2016
## 1149                                           12.14.2016
## 1150                                           12.14.2016
## 1151                                           12.14.2016
## 1152                                           12.14.2016
## 1153                                           12.14.2016
## 1154                                           12.14.2016
## 1155                                           12.14.2016
## 1156                                           12.14.2016
## 1157                                           12.14.2016
## 1158                                           12.14.2016
## 1159                                           12.14.2016
## 1160                                           12.14.2016
## 1161                                           12.14.2016
## 1162                                           12.14.2016
## 1163                                           12.14.2016
## 1164                                           12.14.2016
## 1165                                           12.14.2016
## 1166                                           12.14.2016
## 1167                                           12.14.2016
## 1168                                           12.14.2016
## 1169                                           12.14.2016
## 1170                                           12.14.2016
## 1171                                           12.14.2016
## 1172                                           12.14.2016
## 1173                                           12.14.2016
## 1174                                           12.14.2016
## 1175                                           12.14.2016
## 1176                                           12.14.2016
## 1177                                           12.14.2016
## 1178                                           12.14.2016
## 1179                                           12.14.2016
## 1180                                           12.14.2016
## 1181                                           12.14.2016
## 1182                                           12.14.2016
## 1183                                           12.14.2016
## 1184                                           12.14.2016
## 1185                                           12.14.2016
## 1186                                           12.14.2016
## 1187                  non-diapausing           12.14.2016
## 1188                  non-diapausing           12.14.2016
## 1189                  non-diapausing           12.14.2016
## 1190                  non-diapausing           12.14.2016
## 1191                  non-diapausing           12.14.2016
## 1192                  non-diapausing           12.14.2016
## 1193                  non-diapausing           12.14.2016
## 1194                  non-diapausing           12.14.2016
## 1195                  non-diapausing           12.14.2016
## 1196                  non-diapausing           12.14.2016
## 1197                  non-diapausing           12.14.2016
## 1198                                           12.16.2016
## 1199                                           12.16.2016
## 1200                                           12.16.2016
## 1201                                           12.16.2016
## 1202                                           12.16.2016
## 1203                                           12.16.2016
## 1204                                           12.16.2016
## 1205                                           12.16.2016
## 1206                                           12.16.2016
## 1207                                           12.16.2016
## 1208                                           12.16.2016
## 1209                                           12.16.2016
## 1210                                           12.16.2016
## 1211                                           12.16.2016
## 1212                                           12.16.2016
## 1213                                           12.13.2016
## 1214                                           12.13.2016
## 1215                                           12.13.2016
## 1216                                           12.13.2016
## 1217                                           12.13.2016
## 1218                                           12.13.2016
## 1219                                           12.13.2016
## 1220                                           12.13.2016
## 1221                                           12.13.2016
## 1222                                           12.13.2016
## 1223                                           12.13.2016
## 1224                                           12.13.2016
## 1225                                           12.13.2016
## 1226                                           12.13.2016
## 1227                                           12.13.2016
## 1228                                           12.13.2016
## 1229                                           12.13.2016
## 1230                                           12.13.2016
## 1231                                           12.13.2016
## 1232                                           12.13.2016
## 1233                  non-diapausing           12.13.2016
## 1234                  non-diapausing           12.13.2016
## 1235                  non-diapausing           12.13.2016
## 1236                  non-diapausing           12.13.2016
## 1237                  non-diapausing           12.13.2016
## 1238                  non-diapausing           12.13.2016
## 1239                  non-diapausing           12.13.2016
## 1240                  non-diapausing           12.13.2016
## 1241                  non-diapausing           12.13.2016
## 1242                  non-diapausing           12.13.2016
## 1243                  non-diapausing           12.13.2016
## 1244                  non-diapausing           12.13.2016
## 1245                  non-diapausing           12.13.2016
## 1246                  non-diapausing           12.13.2016
## 1247                  non-diapausing           12.13.2016
## 1248                  non-diapausing           12.13.2016
## 1249                  non-diapausing           12.13.2016
## 1250                  non-diapausing           12.13.2016
## 1251                  non-diapausing           12.13.2016
## 1252                  non-diapausing           12.13.2016
## 1253                  non-diapausing           12.13.2016
## 1254                  non-diapausing           12.13.2016
## 1255                  non-diapausing           12.13.2016
## 1256                  non-diapausing           12.13.2016
## 1257                  non-diapausing           12.13.2016
## 1258                  non-diapausing           12.13.2016
## 1259                  non-diapausing           12.13.2016
## 1260                  non-diapausing           12.13.2016
## 1261                  non-diapausing           12.13.2016
## 1262                  non-diapausing           12.13.2016
## 1263                  non-diapausing           12.13.2016
## 1264                  non-diapausing           12.13.2016
## 1265                  non-diapausing           12.13.2016
## 1266                  non-diapausing           12.13.2016
## 1267                  non-diapausing           12.13.2016
## 1268                  non-diapausing           12.13.2016
## 1269                  non-diapausing           12.13.2016
## 1270                  non-diapausing           12.13.2016
## 1271                  non-diapausing           12.13.2016
## 1272                  non-diapausing           12.13.2016
## 1273                  non-diapausing           12.13.2016
## 1274                  non-diapausing           12.13.2016
## 1275                  non-diapausing           12.13.2016
## 1276                  non-diapausing           12.13.2016
## 1277                  non-diapausing           12.13.2016
## 1278                  non-diapausing           12.14.2016
## 1279                  non-diapausing           12.14.2016
## 1280                  non-diapausing           12.14.2016
## 1281                  non-diapausing           12.14.2016
## 1282                  non-diapausing           12.14.2016
## 1283                  non-diapausing           12.14.2016
## 1284                  non-diapausing           12.14.2016
## 1285                  non-diapausing           12.14.2016
## 1286                  non-diapausing           12.14.2016
## 1287                  non-diapausing           12.14.2016
## 1288                  non-diapausing           12.14.2016
## 1289                  non-diapausing           12.14.2016
## 1290                  non-diapausing           12.14.2016
## 1291                  non-diapausing           12.14.2016
## 1292                  non-diapausing           12.14.2016
## 1293                  non-diapausing           12.14.2016
## 1294                  non-diapausing           12.14.2016
## 1295                  non-diapausing           12.14.2016
## 1296                  non-diapausing           12.14.2016
## 1297                  non-diapausing           12.14.2016
## 1298                  non-diapausing           12.14.2016
## 1299                  non-diapausing           12.14.2016
## 1300                  non-diapausing           12.14.2016
## 1301                  non-diapausing           12.14.2016
## 1302                  non-diapausing           12.14.2016
## 1303                  non-diapausing           12.14.2016
## 1304                  non-diapausing           12.14.2016
## 1305                  non-diapausing           12.14.2016
## 1306                  non-diapausing           12.14.2016
## 1307                  non-diapausing           12.14.2016
## 1308                  non-diapausing           12.14.2016
## 1309                  non-diapausing           12.14.2016
## 1310                  non-diapausing           12.14.2016
## 1311                  non-diapausing           12.14.2016
## 1312                  non-diapausing           12.14.2016
## 1313                  non-diapausing           12.14.2016
## 1314                  non-diapausing           12.14.2016
## 1315                  non-diapausing            8.25.2017
## 1316                  non-diapausing            8.25.2017
## 1317                  non-diapausing            8.25.2017
## 1318                  non-diapausing            8.25.2017
## 1319                  non-diapausing            8.25.2017
## 1320                  non-diapausing            8.25.2017
## 1321                  non-diapausing            8.25.2017
## 1322                  non-diapausing            8.25.2017
## 1323                  non-diapausing            8.25.2017
## 1324                  non-diapausing            8.25.2017
## 1325                  non-diapausing            8.25.2017
## 1326                  non-diapausing            8.25.2017
## 1327                  non-diapausing            8.25.2017
## 1328                  non-diapausing            8.25.2017
## 1329                  non-diapausing            8.25.2017
## 1330                  non-diapausing            8.25.2017
## 1331                  non-diapausing            8.25.2017
## 1332                  non-diapausing            8.25.2017
## 1333                  non-diapausing            8.25.2017
## 1334                  non-diapausing            8.25.2017
## 1335                  non-diapausing            8.25.2017
## 1336                  non-diapausing            8.25.2017
## 1337                  non-diapausing            8.25.2017
## 1338                  non-diapausing            8.25.2017
## 1339                  non-diapausing            8.25.2017
## 1340                  non-diapausing            8.25.2017
## 1341                  non-diapausing            8.25.2017
## 1342                  non-diapausing            8.25.2017
## 1343                  non-diapausing            8.25.2017
## 1344                  non-diapausing            8.25.2017
## 1345                  non-diapausing            8.25.2017
## 1346                  non-diapausing            8.25.2017
## 1347                  non-diapausing            8.25.2017
## 1348                  non-diapausing            8.25.2017
## 1349                  non-diapausing            8.25.2017
## 1350                  non-diapausing            8.25.2017
## 1351                  non-diapausing            8.25.2017
## 1352                  non-diapausing            8.25.2017
## 1353                  non-diapausing            8.25.2017
## 1354                  non-diapausing            8.25.2017
## 1355                  non-diapausing            8.25.2017
## 1356                  non-diapausing            8.25.2017
## 1357                  non-diapausing            8.25.2017
## 1358                  non-diapausing            8.25.2017
## 1359                  non-diapausing            8.25.2017
## 1360                  non-diapausing            8.25.2017
## 1361                  non-diapausing            8.25.2017
## 1362                  non-diapausing            8.25.2017
## 1363                  non-diapausing            8.25.2017
## 1364                  non-diapausing            8.25.2017
## 1365                  non-diapausing            8.25.2017
## 1366                  non-diapausing            8.25.2017
## 1367                  non-diapausing            8.25.2017
## 1368                  non-diapausing            8.25.2017
## 1369                  non-diapausing            8.25.2017
## 1370                  non-diapausing            8.25.2017
## 1371                  non-diapausing            8.25.2017
## 1372                  non-diapausing            8.25.2017
## 1373                  non-diapausing            8.25.2017
## 1374                  non-diapausing            8.25.2017
## 1375         diapausing aggregration           08.15.2017
## 1376         diapausing aggregration           08.15.2017
## 1377         diapausing aggregration           08.15.2017
## 1378         diapausing aggregration           08.15.2017
## 1379         diapausing aggregration           08.15.2017
## 1380         diapausing aggregration           08.15.2017
## 1381         diapausing aggregration           08.15.2017
## 1382         diapausing aggregration           08.15.2017
## 1383         diapausing aggregration           08.15.2017
## 1384         diapausing aggregration           08.15.2017
## 1385         diapausing aggregration           08.15.2017
## 1386         diapausing aggregration           08.15.2017
## 1387         diapausing aggregration           08.15.2017
## 1388         diapausing aggregration           08.15.2017
## 1389         diapausing aggregration           08.15.2017
## 1390         diapausing aggregration           08.15.2017
## 1391         diapausing aggregration           08.15.2017
## 1392         diapausing aggregration           08.15.2017
## 1393         diapausing aggregration           08.15.2017
## 1394         diapausing aggregration           08.15.2017
## 1395         diapausing aggregration           08.15.2017
## 1396         diapausing aggregration           08.15.2017
## 1397         diapausing aggregration           08.15.2017
## 1398         diapausing aggregration           08.15.2017
## 1399         diapausing aggregration           08.15.2017
## 1400         diapausing aggregration           08.15.2017
## 1401         diapausing aggregration           08.15.2017
## 1402         diapausing aggregration           08.15.2017
## 1403         diapausing aggregration           08.15.2017
## 1404         diapausing aggregration           08.15.2017
## 1405         diapausing aggregration           08.15.2017
## 1406         diapausing aggregration           08.15.2017
## 1407         diapausing aggregration           08.15.2017
## 1408         diapausing aggregration           08.15.2017
## 1409         diapausing aggregration           08.15.2017
## 1410         diapausing aggregration           08.15.2017
## 1411         diapausing aggregration           08.15.2017
## 1412         diapausing aggregration           08.15.2017
## 1413         diapausing aggregration           08.15.2017
## 1414         diapausing aggregration           08.15.2017
## 1415         diapausing aggregration           08.15.2017
## 1416         diapausing aggregration           08.15.2017
## 1417         diapausing aggregration           08.15.2017
## 1418         diapausing aggregration           08.15.2017
## 1419         diapausing aggregration           08.15.2017
## 1420         diapausing aggregration           08.15.2017
## 1421         diapausing aggregration           08.15.2017
## 1422         diapausing aggregration           08.15.2017
## 1423         diapausing aggregration           08.15.2017
## 1424         diapausing aggregration           08.15.2017
## 1425         diapausing aggregration           08.15.2017
## 1426         diapausing aggregration           08.15.2017
## 1427         diapausing aggregration           08.15.2017
## 1428         diapausing aggregration           08.15.2017
## 1429         diapausing aggregration           08.15.2017
## 1430         diapausing aggregration           08.15.2017
## 1431         diapausing aggregration           08.15.2017
## 1432         diapausing aggregration           08.15.2017
## 1433         diapausing aggregration           08.15.2017
## 1434         diapausing aggregration           08.15.2017
## 1435         diapausing aggregration           08.15.2017
## 1436         diapausing aggregration           08.15.2017
## 1437         diapausing aggregration           08.15.2017
## 1438         diapausing aggregration           08.15.2017
## 1439         diapausing aggregration           08.15.2017
## 1440         diapausing aggregration           08.15.2017
## 1441         diapausing aggregration           08.15.2017
## 1442         diapausing aggregration           08.15.2017
## 1443         diapausing aggregration           08.15.2017
## 1444         diapausing aggregration           08.15.2017
## 1445         diapausing aggregration           08.15.2017
## 1446         diapausing aggregration           08.15.2017
## 1447         diapausing aggregration           08.15.2017
## 1448         diapausing aggregration           08.15.2017
## 1449         diapausing aggregration           08.15.2017
## 1450         diapausing aggregration           08.15.2017
## 1451         diapausing aggregration           08.15.2017
## 1452         diapausing aggregration           08.15.2017
## 1453         diapausing aggregration           08.15.2017
## 1454         diapausing aggregration           08.15.2017
## 1455         diapausing aggregration           08.15.2017
## 1456         diapausing aggregration           08.15.2017
## 1457         diapausing aggregration           08.15.2017
## 1458         diapausing aggregration           08.15.2017
## 1459         diapausing aggregration           08.15.2017
## 1460         diapausing aggregration           08.15.2017
## 1461         diapausing aggregration           08.15.2017
## 1462         diapausing aggregration           08.15.2017
## 1463         diapausing aggregration           08.15.2017
## 1464         diapausing aggregration           08.15.2017
## 1465         diapausing aggregration           08.15.2017
## 1466         diapausing aggregration           08.15.2017
## 1467         diapausing aggregration           08.15.2017
## 1468         diapausing aggregration           08.15.2017
## 1469         diapausing aggregration           08.15.2017
## 1470         diapausing aggregration           08.15.2017
## 1471         diapausing aggregration           08.15.2017
## 1472         diapausing aggregration           08.15.2017
## 1473         diapausing aggregration           08.15.2017
## 1474         diapausing aggregration           08.15.2017
## 1475         diapausing aggregration           08.15.2017
## 1476         diapausing aggregration           08.15.2017
## 1477         diapausing aggregration           08.15.2017
## 1478         diapausing aggregration           08.15.2017
## 1479         diapausing aggregration           08.15.2017
## 1480         diapausing aggregration           08.15.2017
## 1481         diapausing aggregration           08.15.2017
## 1482         diapausing aggregration           08.15.2017
## 1483         diapausing aggregration           08.15.2017
## 1484         diapausing aggregration           08.15.2017
## 1485         diapausing aggregration           08.15.2017
## 1486         diapausing aggregration           08.15.2017
## 1487         diapausing aggregration           08.15.2017
## 1488         diapausing aggregration           08.15.2017
## 1489         diapausing aggregration           08.15.2017
## 1490         diapausing aggregration           08.15.2017
## 1491         diapausing aggregration           08.15.2017
## 1492         diapausing aggregration           08.15.2017
## 1493         diapausing aggregration           08.15.2017
## 1494         diapausing aggregration           08.15.2017
## 1495         diapausing aggregration           08.15.2017
## 1496         diapausing aggregration           08.15.2017
## 1497         diapausing aggregration           08.15.2017
## 1498         diapausing aggregration           08.15.2017
## 1499         diapausing aggregration           08.15.2017
## 1500         diapausing aggregration           08.15.2017
## 1501         diapausing aggregration           08.15.2017
## 1502                                           08.17.2017
## 1503                                           08.17.2017
## 1504                                           08.17.2017
## 1505                                           08.17.2017
## 1506                                           08.17.2017
## 1507                                           08.17.2017
## 1508                                           08.17.2017
## 1509                                           08.17.2017
## 1510                                           08.17.2017
## 1511                                           08.17.2017
## 1512                                           08.17.2017
## 1513                                           08.17.2017
## 1514                                           08.17.2017
## 1515                                           08.17.2017
## 1516                                           08.17.2017
## 1517                                           08.17.2017
## 1518                                           08.17.2017
## 1519                                           08.16.2017
## 1520                                           08.16.2017
## 1521                                           08.16.2017
## 1522                                           08.16.2017
## 1523                      wings torn           08.16.2017
## 1524                                           08.16.2017
## 1525                                           08.16.2017
## 1526                                           08.16.2017
## 1527                                           08.16.2017
## 1528                                           08.16.2017
## 1529                                           08.16.2017
## 1530                                           08.16.2017
## 1531                                           08.16.2017
## 1532                                           08.16.2017
## 1533                      wings torn           08.16.2017
## 1534                      wings torn           08.16.2017
## 1535                                           08.16.2017
## 1536                                           08.16.2017
## 1537                                           08.17.2017
## 1538                          marked           08.17.2017
## 1539                                           08.17.2017
## 1540                          marked           08.17.2017
## 1541                                           08.17.2017
## 1542                                           08.17.2017
## 1543                                           08.17.2017
## 1544                                           08.17.2017
## 1545                                           08.17.2017
## 1546                                           08.17.2017
## 1547                          marked           08.17.2017
## 1548                                           08.17.2017
## 1549                                           08.17.2017
## 1550                                           08.17.2017
## 1551                                           08.17.2017
## 1552                                           08.17.2017
## 1553                                           08.17.2017
## 1554                                           08.17.2017
## 1555                                           08.17.2017
## 1556                                           08.17.2017
## 1557                          marked           08.17.2017
## 1558                          marked           08.17.2017
## 1559                          marked           08.17.2017
## 1560                                           08.17.2017
## 1561                                           08.17.2017
## 1562                          marked           08.17.2017
## 1563                                           08.17.2017
## 1564                                           08.17.2017
## 1565                                           08.17.2017
## 1566                                           08.17.2017
## 1567                          marked           08.17.2017
## 1568                       tips torn           08.17.2017
## 1569                          marked           08.17.2017
## 1570                       tips torn           08.17.2017
## 1571                          marked           08.17.2017
## 1572                          marked           08.17.2017
## 1573                          marked           08.17.2017
## 1574                          marked           08.16.2017
## 1575                                           08.16.2017
## 1576                                           08.16.2017
## 1577                       tips torn           08.16.2017
## 1578                       tips torn           08.16.2017
## 1579                       tips torn           08.16.2017
## 1580                                           08.16.2017
## 1581                          marked           08.16.2017
## 1582                          marked           08.16.2017
## 1583                       tips torn           08.16.2017
## 1584                       tips torn           08.16.2017
## 1585                                           08.16.2017
## 1586                                           08.16.2017
## 1587                                           08.16.2017
## 1588                                           08.16.2017
## 1589                                           08.16.2017
## 1590                                           08.16.2017
## 1591               tips torn; marked           08.16.2017
## 1592                       tips torn           08.16.2017
## 1593                          marked           08.16.2017
## 1594         diapausing aggregration           08.23.2017
## 1595         diapausing aggregration           08.23.2017
## 1596         diapausing aggregration           08.23.2017
## 1597         diapausing aggregration           08.23.2017
## 1598         diapausing aggregration           08.23.2017
## 1599         diapausing aggregration           08.23.2017
## 1600         diapausing aggregration           08.23.2017
## 1601         diapausing aggregration           08.23.2017
## 1602         diapausing aggregration           08.23.2017
## 1603         diapausing aggregration           08.23.2017
## 1604         diapausing aggregration           08.23.2017
## 1605         diapausing aggregration           08.23.2017
## 1606         diapausing aggregration           08.23.2017
## 1607         diapausing aggregration           08.23.2017
## 1608         diapausing aggregration           08.23.2017
## 1609         diapausing aggregration           08.23.2017
## 1610         diapausing aggregration           08.23.2017
## 1611         diapausing aggregration           08.23.2017
## 1612         diapausing aggregration           08.23.2017
## 1613         diapausing aggregration           08.23.2017
## 1614         diapausing aggregration           08.23.2017
## 1615         diapausing aggregration           08.23.2017
## 1616         diapausing aggregration           08.23.2017
## 1617         diapausing aggregration           08.23.2017
## 1618         diapausing aggregration           08.23.2017
## 1619         diapausing aggregration           08.23.2017
## 1620         diapausing aggregration           08.23.2017
## 1621         diapausing aggregration           08.23.2017
## 1622         diapausing aggregration           08.23.2017
## 1623         diapausing aggregration           08.23.2017
## 1624         diapausing aggregration           08.23.2017
## 1625         diapausing aggregration           08.23.2017
## 1626                  non-diapausing            8.23.2017
## 1627                  non-diapausing            8.23.2017
## 1628                  non-diapausing            8.23.2017
## 1629                  non-diapausing            8.23.2017
## 1630                  non-diapausing            8.23.2017
## 1631                  non-diapausing            8.23.2017
## 1632                  non-diapausing            8.23.2017
## 1633                  non-diapausing            8.23.2017
## 1634                  non-diapausing            8.23.2017
## 1635                  non-diapausing            8.23.2017
## 1636                  non-diapausing            8.23.2017
## 1637                  non-diapausing            8.23.2017
## 1638                  non-diapausing            8.23.2017
## 1639                  non-diapausing            8.23.2017
## 1640                  non-diapausing            8.23.2017
## 1641                  non-diapausing            8.23.2017
## 1642                  non-diapausing            8.23.2017
## 1643                  non-diapausing            8.23.2017
## 1644                  non-diapausing            8.23.2017
## 1645                  non-diapausing            8.23.2017
## 1646                  non-diapausing            8.23.2017
## 1647                  non-diapausing            8.23.2017
## 1648                  non-diapausing            8.23.2017
## 1649                  non-diapausing            8.23.2017
## 1650                  non-diapausing            8.23.2017
## 1651                  non-diapausing            8.23.2017
## 1652                  non-diapausing            8.23.2017
## 1653                  non-diapausing            8.23.2017
## 1654                  non-diapausing            8.23.2017
## 1655                  non-diapausing            8.23.2017
## 1656                  non-diapausing            8.23.2017
## 1657                  non-diapausing            8.23.2017
## 1658                  non-diapausing            8.23.2017
## 1659                  non-diapausing            8.23.2017
## 1660                  non-diapausing            8.23.2017
## 1661                  non-diapausing            8.23.2017
## 1662                  non-diapausing            8.23.2017
## 1663                  non-diapausing            8.23.2017
## 1664                  non-diapausing            8.23.2017
## 1665                  non-diapausing            8.23.2017
## 1666                  non-diapausing            8.23.2017
## 1667                  non-diapausing            8.23.2017
## 1668                  non-diapausing            8.23.2017
## 1669                  non-diapausing            8.23.2017
## 1670                  non-diapausing            8.23.2017
## 1671                  non-diapausing            8.23.2017
## 1672                  non-diapausing            8.23.2017
## 1673                  non-diapausing            8.23.2017
## 1674                  non-diapausing            8.23.2017
## 1675                  non-diapausing            8.23.2017
## 1676                  non-diapausing            8.23.2017
## 1677                  non-diapausing            8.23.2017
## 1678                  non-diapausing            8.23.2017
## 1679                  non-diapausing            8.23.2017
## 1680                  non-diapausing            8.23.2017
## 1681                  non-diapausing            8.23.2017
## 1682                  non-diapausing            8.23.2017
## 1683                  non-diapausing            8.23.2017
## 1684                  non-diapausing            8.23.2017
## 1685                  non-diapausing           08.24.2017
## 1686                  non-diapausing           08.24.2017
## 1687                  non-diapausing           08.24.2017
## 1688                  non-diapausing           08.24.2017
## 1689                  non-diapausing           08.24.2017
## 1690                  non-diapausing           08.24.2017
## 1691                  non-diapausing           08.24.2017
## 1692                  non-diapausing           08.24.2017
## 1693                  non-diapausing           08.24.2017
## 1694                  non-diapausing           08.24.2017
## 1695                  non-diapausing           08.24.2017
## 1696                  non-diapausing           08.24.2017
## 1697                  non-diapausing           08.24.2017
## 1698                  non-diapausing           08.24.2017
## 1699                  non-diapausing           08.24.2017
## 1700                  non-diapausing           08.24.2017
## 1701                  non-diapausing           08.24.2017
## 1702                  non-diapausing           08.24.2017
## 1703                  non-diapausing           08.24.2017
## 1704                  non-diapausing           08.24.2017
## 1705                  non-diapausing           08.24.2017
## 1706                  non-diapausing           08.24.2017
## 1707                  non-diapausing           08.24.2017
## 1708                  non-diapausing           08.24.2017
## 1709                  non-diapausing           08.24.2017
## 1710                  non-diapausing           08.24.2017
## 1711                  non-diapausing           08.24.2017
## 1712                  non-diapausing           08.24.2017
## 1713                  non-diapausing           08.24.2017
## 1714                  non-diapausing           08.24.2017
## 1715                  non-diapausing           08.24.2017
## 1716                  non-diapausing           08.24.2017
## 1717                  non-diapausing           08.24.2017
## 1718                  non-diapausing           08.24.2017
## 1719                  non-diapausing           08.24.2017
## 1720                  non-diapausing           08.24.2017
## 1721                  non-diapausing           08.24.2017
## 1722                  non-diapausing           08.24.2017
## 1723                  non-diapausing           08.24.2017
## 1724                  non-diapausing           08.24.2017
## 1725                  non-diapausing           08.24.2017
## 1726                  non-diapausing           08.24.2017
## 1727                  non-diapausing           08.24.2017
## 1728                  non-diapausing           08.24.2017
## 1729                  non-diapausing           08.24.2017
## 1730                  non-diapausing           08.24.2017
## 1731                  non-diapausing           08.24.2017
## 1732                  non-diapausing           08.24.2017
## 1733                  non-diapausing           08.24.2017
## 1734                  non-diapausing           08.24.2017
## 1735                  non-diapausing           08.24.2017
## 1736                  non-diapausing           08.24.2017
## 1737                  non-diapausing           08.24.2017
## 1738                  non-diapausing           08.24.2017
## 1739                  non-diapausing           08.24.2017
## 1740                  non-diapausing           08.24.2017
## 1741                  non-diapausing           08.24.2017
## 1742                  non-diapausing           08.24.2017
## 1743                  non-diapausing           09.23.2018
## 1744                  non-diapausing           09.23.2018
## 1745                  non-diapausing           09.23.2018
## 1746                  non-diapausing           09.23.2018
## 1747                  non-diapausing           09.23.2018
## 1748                  non-diapausing           09.23.2018
## 1749                  non-diapausing           09.23.2018
## 1750                  non-diapausing           09.23.2018
## 1751                  non-diapausing           09.23.2018
## 1752                  non-diapausing           09.23.2018
## 1753                  non-diapausing           09.23.2018
## 1754                  non-diapausing           09.23.2018
## 1755                  non-diapausing           09.23.2018
## 1756                  non-diapausing           09.23.2018
## 1757                  non-diapausing           09.23.2018
## 1758                  non-diapausing           09.23.2018
## 1759                  non-diapausing           09.23.2018
## 1760                  non-diapausing           09.23.2018
## 1761                  non-diapausing           09.23.2018
## 1762                  non-diapausing           09.23.2018
## 1763                  non-diapausing           09.23.2018
## 1764                  non-diapausing           09.23.2018
## 1765                  non-diapausing           09.23.2018
## 1766                  non-diapausing           09.23.2018
## 1767                  non-diapausing           09.23.2018
## 1768                  non-diapausing           09.23.2018
## 1769                  non-diapausing           09.23.2018
## 1770                  non-diapausing           09.23.2018
## 1771                  non-diapausing           09.23.2018
## 1772                  non-diapausing           09.23.2018
## 1773                  non-diapausing           09.23.2018
## 1774                  non-diapausing           09.23.2018
## 1775                  non-diapausing           09.23.2018
## 1776                  non-diapausing           09.23.2018
## 1777                  non-diapausing           09.23.2018
## 1778                  non-diapausing           09.23.2018
## 1779                  non-diapausing           09.23.2018
## 1780                  non-diapausing           09.23.2018
## 1781                  non-diapausing           09.23.2018
## 1782                  non-diapausing           09.23.2018
## 1783                  non-diapausing           09.23.2018
## 1784                  non-diapausing           09.23.2018
## 1785                  non-diapausing           09.23.2018
## 1786                  non-diapausing           09.23.2018
## 1787                  non-diapausing           09.23.2018
## 1788                  non-diapausing           09.23.2018
## 1789                  non-diapausing           09.23.2018
## 1790                  non-diapausing           09.23.2018
## 1791                  non-diapausing           09.23.2018
## 1792                  non-diapausing           09.23.2018
## 1793                  non-diapausing           09.23.2018
## 1794                  non-diapausing           09.23.2018
## 1795                  non-diapausing           09.23.2018
## 1796                  non-diapausing           09.23.2018
## 1797                  non-diapausing           09.23.2018
## 1798                  non-diapausing           09.23.2018
## 1799                  non-diapausing           09.23.2018
## 1800                  non-diapausing           09.23.2018
## 1801                  non-diapausing           09.23.2018
## 1802                  non-diapausing           09.23.2018
## 1803                  non-diapausing           09.23.2018
## 1804                  non-diapausing           09.23.2018
## 1805                  non-diapausing           09.23.2018
## 1806                  non-diapausing           09.23.2018
## 1807                  non-diapausing           09.26.2018
## 1808                  non-diapausing           09.26.2018
## 1809                  non-diapausing           09.26.2018
## 1810                  non-diapausing           09.26.2018
## 1811                  non-diapausing           09.26.2018
## 1812                  non-diapausing           09.26.2018
## 1813                  non-diapausing           09.26.2018
## 1814                  non-diapausing           09.26.2018
## 1815                  non-diapausing           09.26.2018
## 1816                  non-diapausing           09.26.2018
## 1817                  non-diapausing           09.26.2018
## 1818                  non-diapausing           09.26.2018
## 1819                  non-diapausing           09.26.2018
## 1820                  non-diapausing           09.26.2018
## 1821                  non-diapausing           09.26.2018
## 1822                  non-diapausing           09.26.2018
## 1823                  non-diapausing           09.26.2018
## 1824                  non-diapausing           09.26.2018
## 1825                  non-diapausing           09.26.2018
## 1826                  non-diapausing           09.26.2018
## 1827                  non-diapausing           09.26.2018
## 1828                  non-diapausing           09.26.2018
## 1829                  non-diapausing           09.26.2018
## 1830                  non-diapausing           09.26.2018
## 1831                  non-diapausing           09.26.2018
## 1832                  non-diapausing           09.26.2018
## 1833                  non-diapausing           09.26.2018
## 1834                  non-diapausing           09.26.2018
## 1835                  non-diapausing           09.26.2018
## 1836                  non-diapausing           09.26.2018
## 1837                  non-diapausing           09.26.2018
## 1838                  non-diapausing           09.26.2018
## 1839                  non-diapausing           09.26.2018
## 1840                  non-diapausing           09.26.2018
## 1841                  non-diapausing           09.26.2018
## 1842                  non-diapausing           09.26.2018
## 1843                  non-diapausing           09.26.2018
## 1844                  non-diapausing           09.26.2018
## 1845                  non-diapausing           09.26.2018
## 1846                  non-diapausing           09.26.2018
## 1847                  non-diapausing           09.26.2018
## 1848                  non-diapausing           09.26.2018
## 1849                  non-diapausing           09.26.2018
## 1850                  non-diapausing           09.26.2018
## 1851                  non-diapausing           09.26.2018
## 1852                  non-diapausing           09.26.2018
## 1853                  non-diapausing           09.26.2018
## 1854                  non-diapausing           09.26.2018
## 1855                  non-diapausing           09.26.2018
## 1856                  non-diapausing           09.26.2018
## 1857                  non-diapausing           09.26.2018
## 1858                  non-diapausing           09.26.2018
## 1859                  non-diapausing           09.26.2018
## 1860                  non-diapausing           09.26.2018
## 1861                  non-diapausing           09.26.2018
## 1862                  non-diapausing           09.26.2018
## 1863                  non-diapausing           09.26.2018
## 1864                  non-diapausing           09.26.2018
## 1865                  non-diapausing           09.26.2018
## 1866                  non-diapausing           09.26.2018
## 1867                  non-diapausing           09.26.2018
## 1868                  non-diapausing           09.26.2018
## 1869                  non-diapausing           09.26.2018
## 1870                  non-diapausing           09.26.2018
## 1871                  non-diapausing           09.26.2018
## 1872                  non-diapausing           09.26.2018
## 1873                  non-diapausing           09.26.2018
## 1874                  non-diapausing           09.26.2018
## 1875                  non-diapausing           09.28.2018
## 1876                  non-diapausing           09.28.2018
## 1877                  non-diapausing           09.28.2018
## 1878                  non-diapausing           09.28.2018
## 1879                  non-diapausing           09.28.2018
## 1880                  non-diapausing           09.28.2018
## 1881                  non-diapausing           09.28.2018
## 1882                  non-diapausing           09.28.2018
## 1883                  non-diapausing           09.28.2018
## 1884                  non-diapausing           09.28.2018
## 1885                  non-diapausing           09.28.2018
## 1886                  non-diapausing           09.28.2018
## 1887                  non-diapausing           09.28.2018
## 1888                  non-diapausing           09.28.2018
## 1889                  non-diapausing           09.28.2018
## 1890                  non-diapausing           09.28.2018
## 1891                  non-diapausing           09.28.2018
## 1892                  non-diapausing           09.28.2018
## 1893                  non-diapausing           09.28.2018
## 1894                  non-diapausing           09.28.2018
## 1895                  non-diapausing           09.28.2018
## 1896                  non-diapausing           09.28.2018
## 1897                  non-diapausing           09.28.2018
## 1898                  non-diapausing           09.28.2018
## 1899                  non-diapausing           09.28.2018
## 1900                  non-diapausing           09.28.2018
## 1901                  non-diapausing           09.28.2018
## 1902                  non-diapausing           09.28.2018
## 1903                  non-diapausing           09.28.2018
## 1904                  non-diapausing           09.28.2018
## 1905                  non-diapausing           09.28.2018
## 1906                  non-diapausing           09.28.2018
## 1907                  non-diapausing           09.28.2018
## 1908                  non-diapausing           09.28.2018
## 1909                  non-diapausing           09.28.2018
## 1910                  non-diapausing           09.28.2018
## 1911                  non-diapausing           09.28.2018
## 1912                  non-diapausing           09.28.2018
## 1913                  non-diapausing           09.28.2018
## 1914                  non-diapausing           09.28.2018
## 1915                  non-diapausing           09.28.2018
## 1916                  non-diapausing            5.22.2019
## 1917                  non-diapausing            5.22.2019
## 1918                  non-diapausing            5.22.2019
## 1919                  non-diapausing            5.22.2019
## 1920                  non-diapausing            5.22.2019
## 1921                  non-diapausing            5.22.2019
## 1922                  non-diapausing            5.22.2019
## 1923                  non-diapausing            5.22.2019
## 1924                  non-diapausing            5.22.2019
## 1925                                           05.22.2019
## 1926                                           05.22.2019
## 1927                                           05.22.2019
## 1928                                           05.22.2019
## 1929                                           05.22.2019
## 1930                                           05.22.2019
## 1931                                           05.22.2019
## 1932                                           05.22.2019
## 1933                                           05.22.2019
## 1934                                           05.22.2019
## 1935                                           05.22.2019
## 1936                                           05.22.2019
## 1937                                           05.22.2019
## 1938                                           05.22.2019
## 1939                                           05.22.2019
## 1940                                           05.22.2019
## 1941                                           05.22.2019
## 1942                                           05.22.2019
## 1943                                           05.22.2019
## 1944                                           05.22.2019
## 1945                                           05.22.2019
## 1946                                           05.22.2019
## 1947                                           05.22.2019
## 1948                                           05.22.2019
## 1949                                           05.22.2019
## 1950                                           05.22.2019
## 1951                                           05.22.2019
## 1952                                           05.22.2019
## 1953                                           05.22.2019
## 1954                                           05.22.2019
## 1955                                           05.22.2019
## 1956                                           05.22.2019
## 1957                                           05.22.2019
## 1958                                           05.22.2019
## 1959                                           05.22.2019
## 1960                                           05.22.2019
## 1961                                           05.22.2019
## 1962                                           05.22.2019
## 1963                                           05.22.2019
## 1964                                           05.22.2019
## 1965                  non-diapausing           05.17.2019
## 1966                  non-diapausing           05.17.2019
## 1967                  non-diapausing           05.17.2019
## 1968                  non-diapausing           05.17.2019
## 1969                  non-diapausing           05.17.2019
## 1970                  non-diapausing           05.17.2019
## 1971                  non-diapausing           05.17.2019
## 1972                  non-diapausing           05.17.2019
## 1973                  non-diapausing           05.17.2019
## 1974                  non-diapausing           05.17.2019
## 1975                  non-diapausing           05.17.2019
## 1976                  non-diapausing           05.17.2019
## 1977                  non-diapausing           05.17.2019
## 1978                  non-diapausing           05.17.2019
## 1979                  non-diapausing           05.17.2019
## 1980                  non-diapausing           05.17.2019
## 1981                  non-diapausing           05.17.2019
## 1982                  non-diapausing           05.17.2019
## 1983                  non-diapausing             5.6.2019
## 1984                  non-diapausing             5.6.2019
## 1985                  non-diapausing             5.6.2019
## 1986                  non-diapausing             5.6.2019
## 1987                  non-diapausing             5.6.2019
## 1988                  non-diapausing             5.6.2019
## 1989                  non-diapausing             5.6.2019
## 1990                  non-diapausing             5.6.2019
## 1991                  non-diapausing             5.6.2019
## 1992                  non-diapausing             5.6.2019
## 1993                  non-diapausing             5.6.2019
## 1994                  non-diapausing             5.6.2019
## 1995                  non-diapausing             5.6.2019
## 1996                  non-diapausing             5.6.2019
## 1997                  non-diapausing             5.6.2019
## 1998                  non-diapausing             5.6.2019
## 1999                  non-diapausing             5.6.2019
## 2000                  non-diapausing             5.6.2019
## 2001                  non-diapausing             5.6.2019
## 2002                  non-diapausing             5.6.2019
## 2003                  non-diapausing             5.6.2019
## 2004                  non-diapausing             5.6.2019
## 2005                  non-diapausing             5.6.2019
## 2006                  non-diapausing             5.6.2019
## 2007                  non-diapausing             5.6.2019
## 2008                  non-diapausing             5.6.2019
## 2009                  non-diapausing             5.6.2019
## 2010                  non-diapausing             5.6.2019
## 2011                  non-diapausing             5.6.2019
## 2012                  non-diapausing             5.6.2019
## 2013                  non-diapausing             5.6.2019
## 2014                  non-diapausing             5.6.2019
## 2015                  non-diapausing             5.6.2019
## 2016                  non-diapausing             5.6.2019
## 2017                  non-diapausing             5.6.2019
## 2018                  non-diapausing             5.6.2019
## 2019                  non-diapausing             5.6.2019
## 2020                  non-diapausing             5.6.2019
## 2021                  non-diapausing             5.6.2019
## 2022                  non-diapausing             5.6.2019
## 2023                  non-diapausing             5.6.2019
## 2024                  non-diapausing             5.6.2019
## 2025                  non-diapausing             5.6.2019
## 2026                  non-diapausing             5.6.2019
## 2027                  non-diapausing             5.6.2019
## 2028                  non-diapausing             5.6.2019
## 2029                  non-diapausing             5.6.2019
## 2030                  non-diapausing             5.6.2019
## 2031                  non-diapausing             5.6.2019
## 2032                  non-diapausing             5.6.2019
## 2033                  non-diapausing             5.6.2019
## 2034                  non-diapausing             5.6.2019
## 2035                  non-diapausing             5.6.2019
## 2036                  non-diapausing             5.6.2019
## 2037                  non-diapausing             5.6.2019
## 2038                  non-diapausing             5.6.2019
## 2039                  non-diapausing             5.6.2019
## 2040                  non-diapausing             5.6.2019
## 2041                  non-diapausing             5.6.2019
## 2042                  non-diapausing             5.6.2019
## 2043                  non-diapausing             5.6.2019
## 2044                  non-diapausing             5.6.2019
## 2045                  non-diapausing             5.6.2019
## 2046                  non-diapausing             5.6.2019
## 2047                  non-diapausing             5.6.2019
## 2048                  non-diapausing             5.6.2019
## 2049                  non-diapausing             5.6.2019
## 2050                  non-diapausing             5.6.2019
## 2051                  non-diapausing             5.6.2019
## 2052                  non-diapausing             5.6.2019
## 2053                  non-diapausing             5.6.2019
## 2054                  non-diapausing             5.6.2019
## 2055                  non-diapausing             5.6.2019
## 2056                  non-diapausing             5.6.2019
## 2057                  non-diapausing             5.6.2019
## 2058                  non-diapausing             5.6.2019
## 2059                      diapausing           05.19.2019
## 2060                      diapausing           05.19.2019
## 2061                      diapausing           05.19.2019
## 2062                      diapausing           05.19.2019
## 2063                      diapausing           05.19.2019
## 2064                      diapausing           05.19.2019
## 2065                      diapausing           05.19.2019
## 2066                      diapausing           05.19.2019
## 2067                      diapausing           05.19.2019
## 2068                      diapausing           05.19.2019
## 2069                      diapausing           05.19.2019
## 2070                      diapausing           05.19.2019
## 2071                      diapausing           05.19.2019
## 2072                      diapausing           05.19.2019
## 2073                      diapausing           05.19.2019
## 2074                      diapausing           05.19.2019
## 2075                      diapausing           05.19.2019
## 2076                      diapausing           05.19.2019
## 2077                      diapausing           05.19.2019
## 2078                      diapausing           05.19.2019
## 2079                      diapausing           05.19.2019
## 2080                      diapausing           05.19.2019
## 2081                      diapausing           05.19.2019
## 2082                      diapausing           05.19.2019
## 2083                      diapausing           05.19.2019
## 2084                      diapausing           05.19.2019
## 2085                      diapausing           05.19.2019
## 2086                      diapausing           05.19.2019
## 2087                      diapausing           05.19.2019
## 2088                      diapausing           05.19.2019
## 2089                      diapausing           05.19.2019
## 2090                      diapausing           05.19.2019
## 2091                      diapausing           05.19.2019
## 2092                      diapausing           05.19.2019
## 2093                      diapausing           05.19.2019
## 2094                      diapausing           05.19.2019
## 2095                      diapausing           05.19.2019
## 2096                      diapausing           05.19.2019
## 2097                      diapausing           05.19.2019
## 2098                      diapausing           05.19.2019
## 2099                      diapausing           05.19.2019
## 2100                      diapausing           05.19.2019
## 2101                      diapausing           05.19.2019
## 2102                      diapausing           05.19.2019
## 2103                      diapausing           05.19.2019
## 2104                      diapausing           05.19.2019
## 2105                      diapausing           05.19.2019
## 2106                      diapausing           05.19.2019
## 2107                      diapausing           05.19.2019
## 2108                      diapausing           05.19.2019
## 2109                      diapausing           05.19.2019
## 2110                      diapausing           05.19.2019
## 2111                      diapausing           05.19.2019
## 2112                      diapausing           05.19.2019
## 2113                      diapausing           05.19.2019
## 2114                      diapausing           05.19.2019
## 2115                      diapausing           05.19.2019
## 2116                      diapausing           05.19.2019
## 2117                      diapausing           05.19.2019
## 2118                      diapausing           05.19.2019
## 2119                      diapausing           05.19.2019
## 2120                      diapausing           05.19.2019
## 2121                                           05.13.2019
## 2122                                           05.13.2019
## 2123                                           05.13.2019
## 2124                                           05.13.2019
## 2125                                           05.13.2019
## 2126                                           05.13.2019
## 2127                                           05.13.2019
## 2128                                           05.13.2019
## 2129                                           05.13.2019
## 2130                                           05.13.2019
## 2131                                           05.13.2019
## 2132                                           05.13.2019
## 2133                                           05.13.2019
## 2134                                           05.13.2019
## 2135                                           05.13.2019
## 2136                                           05.13.2019
## 2137                                           05.13.2019
## 2138                                           05.13.2019
## 2139                                           05.13.2019
## 2140                                           05.13.2019
## 2141                                           05.13.2019
## 2142                                           05.13.2019
## 2143                                           05.13.2019
## 2144                                           05.13.2019
## 2145                                           05.13.2019
## 2146                                           05.13.2019
## 2147                                           05.13.2019
## 2148                                           05.13.2019
## 2149                                           05.13.2019
## 2150                                           05.13.2019
## 2151                                           05.13.2019
## 2152                                           05.13.2019
## 2153                                           05.13.2019
## 2154                                           05.13.2019
## 2155                                           05.13.2019
## 2156                                           05.13.2019
## 2157                                           05.13.2019
## 2158                                           05.13.2019
## 2159                                           05.13.2019
## 2160                                           05.13.2019
## 2161                                           05.13.2019
## 2162                                           05.13.2019
## 2163                                           05.13.2019
## 2164                                           05.13.2019
## 2165                                           05.13.2019
## 2166                                           05.13.2019
## 2167                                           05.13.2019
## 2168                                           05.13.2019
## 2169                                           05.13.2019
## 2170                                           05.13.2019
## 2171                                           05.13.2019
## 2172                                           05.13.2019
## 2173                                           05.13.2019
## 2174                                           05.13.2019
## 2175                                           05.13.2019
## 2176                                           05.13.2019
## 2177                                           05.13.2019
## 2178                                           05.13.2019
## 2179                                           05.13.2019
## 2180                                           05.13.2019
## 2181                                           05.13.2019
## 2182                                           05.13.2019
## 2183                                           05.13.2019
## 2184                                           05.13.2019
## 2185                                           05.13.2019
## 2186                                           05.13.2019
## 2187                                           05.13.2019
## 2188                                           05.13.2019
## 2189                                           05.13.2019
## 2190                                           05.13.2019
## 2191                                           05.13.2019
## 2192                                           05.13.2019
## 2193                                           05.13.2019
## 2194                                           05.13.2019
## 2195                                           05.13.2019
## 2196                                           05.13.2019
## 2197                                           05.13.2019
## 2198                                           05.13.2019
## 2199                                           05.13.2019
## 2200                                           05.13.2019
## 2201                                           05.13.2019
## 2202                                           05.13.2019
## 2203                                           05.13.2019
## 2204                                           05.13.2019
## 2205                                           05.13.2019
## 2206                                           05.13.2019
## 2207                                           05.13.2019
## 2208                                           05.13.2019
## 2209                                           05.13.2019
## 2210                                           05.13.2019
## 2211                                           05.13.2019
## 2212                                           05.13.2019
## 2213                                           05.13.2019
## 2214                                           05.13.2019
## 2215                                           05.13.2019
## 2216                                           05.13.2019
## 2217                                           05.13.2019
## 2218                                           05.13.2019
## 2219                                           05.13.2019
## 2220                                           05.13.2019
## 2221                                           05.13.2019
## 2222                                           05.14.2019
## 2223                                           05.14.2019
## 2224                                           05.14.2019
## 2225                                           05.14.2019
## 2226                                           05.14.2019
## 2227                                           05.14.2019
## 2228                                           05.14.2019
## 2229                                           05.14.2019
## 2230                                           05.14.2019
## 2231                                           05.06.2019
## 2232                                           05.06.2019
## 2233                                           05.06.2019
## 2234                                           05.06.2019
## 2235                                           05.06.2019
## 2236                                           05.06.2019
## 2237                                           05.06.2019
## 2238                                           05.06.2019
## 2239                                           05.06.2019
## 2240                                           05.06.2019
## 2241                                           05.06.2019
## 2242                                           05.06.2019
## 2243                                           05.06.2019
## 2244                                           05.06.2019
## 2245                                           05.06.2019
## 2246                                           05.06.2019
## 2247                                           05.06.2019
## 2248                                           05.06.2019
## 2249                                           05.06.2019
## 2250                                           05.06.2019
## 2251                                           05.06.2019
## 2252                                           05.06.2019
## 2253                                           05.06.2019
## 2254                                           05.06.2019
## 2255                                           05.06.2019
## 2256                                           05.06.2019
## 2257                                           05.06.2019
## 2258                                           05.06.2019
## 2259                                           05.06.2019
## 2260                                           05.06.2019
## 2261                                           05.06.2019
## 2262                                           05.06.2019
## 2263                                           05.06.2019
## 2264                                           05.06.2019
## 2265                                           05.06.2019
## 2266                                           05.06.2019
## 2267                                           05.06.2019
## 2268                                           05.06.2019
## 2269                                           05.06.2019
## 2270                                           05.06.2019
## 2271                                           05.06.2019
## 2272                                           05.06.2019
## 2273                                           05.06.2019
## 2274                                           05.06.2019
## 2275                                           05.06.2019
## 2276                                           05.06.2019
## 2277                                           05.06.2019
## 2278                                           05.06.2019
## 2279                                           05.06.2019
## 2280                                           05.06.2019
## 2281                                           05.06.2019
## 2282                                           05.06.2019
## 2283                                           05.06.2019
## 2284                                           05.06.2019
## 2285                                           05.06.2019
## 2286                                           05.06.2019
## 2287                                           05.06.2019
## 2288                                           05.06.2019
## 2289                                           05.06.2019
## 2290                                           05.06.2019
## 2291                                           05.06.2019
## 2292                                           05.06.2019
## 2293                                           05.06.2019
## 2294                                           05.06.2019
## 2295                                           05.06.2019
## 2296                                           05.06.2019
## 2297                                           05.06.2019
## 2298                                           05.06.2019
## 2299                                           05.06.2019
## 2300                                           05.06.2019
## 2301                                           05.06.2019
## 2302                                           05.06.2019
## 2303                                           05.06.2019
## 2304                                           05.06.2019
## 2305                                           05.06.2019
## 2306                                           05.06.2019
## 2307                                           05.06.2019
## 2308                                           05.06.2019
## 2309                                           05.06.2019
## 2310                                           05.06.2019
## 2311                                           05.06.2019
## 2312                                           05.06.2019
## 2313                                           05.06.2019
## 2314                                           05.06.2019
## 2315                                           05.06.2019
## 2316                                           05.06.2019
## 2317                                           05.06.2019
## 2318                                           05.06.2019
## 2319                                           05.06.2019
## 2320                                           05.06.2019
## 2321                                           05.06.2019
## 2322                                           05.06.2019
## 2323                                           05.06.2019
## 2324                                           05.06.2019
## 2325                                           05.06.2019
## 2326                                           05.06.2019
## 2327                                           05.06.2019
## 2328                                           05.06.2019
## 2329                                           05.06.2019
## 2330                                           05.06.2019
## 2331                                           05.06.2019
## 2332                                           05.06.2019
## 2333                                                     
## 2334                                                     
## 2335                                                     
## 2336                                                     
## 2337                                                     
## 2338                                                     
## 2339                                                     
## 2340                                                     
## 2341                                                     
## 2342                                                     
## 2343                                                     
## 2344                                                     
## 2345                                                     
## 2346                                                     
## 2347                                                     
## 2348                                                     
## 2349                                                     
## 2350                                                     
## 2351                                                     
## 2352                                                     
## 2353                                                     
## 2354                                                     
## 2355                                                     
## 2356                                                     
## 2357                                                     
## 2358                                                     
## 2359                                                     
## 2360                                                     
## 2361                                                     
## 2362                  non-diapausing            5.13.2019
## 2363                  non-diapausing            5.13.2019
## 2364                  non-diapausing            5.13.2019
## 2365                  non-diapausing            5.13.2019
## 2366                  non-diapausing            5.13.2019
## 2367                  non-diapausing            5.13.2019
## 2368                  non-diapausing            5.13.2019
## 2369                                                     
## 2370                                                     
## 2371                                                     
## 2372                                                     
## 2373                                                     
## 2374                                                     
## 2375                                                     
## 2376                                                     
## 2377                                                     
## 2378                                                     
## 2379                                                     
## 2380                                                     
## 2381                                                     
## 2382                                                     
## 2383                                                     
## 2384                                                     
## 2385                                                     
## 2386                                                     
## 2387                                                     
## 2388                                                     
## 2389                                                     
## 2390                                                     
## 2391                                                     
## 2392                                                     
## 2393                                                     
## 2394                                                     
## 2395                                                     
## 2396                                                     
## 2397                                                     
## 2398                                                     
## 2399                                                     
## 2400                                                     
## 2401                                                     
## 2402                                                     
## 2403                  non-diapausing           10.06.2019
## 2404                  non-diapausing           10.06.2019
## 2405                  non-diapausing           10.06.2019
## 2406                  non-diapausing           10.06.2019
## 2407                  non-diapausing           10.06.2019
## 2408                  non-diapausing           10.06.2019
## 2409                  non-diapausing           10.06.2019
## 2410                  non-diapausing           10.06.2019
## 2411                  non-diapausing           10.06.2019
## 2412                  non-diapausing           10.06.2019
## 2413                  non-diapausing           10.06.2019
## 2414                  non-diapausing           10.06.2019
## 2415                  non-diapausing           10.06.2019
## 2416                  non-diapausing           10.06.2019
## 2417                  non-diapausing           10.06.2019
## 2418                  non-diapausing           10.06.2019
## 2419                     diapausing?           10.04.2019
## 2420                     diapausing?           10.04.2019
## 2421                     diapausing?           10.04.2019
## 2422                     diapausing?           10.04.2019
## 2423                     diapausing?           10.04.2019
## 2424                     diapausing?           10.04.2019
## 2425                     diapausing?           10.04.2019
## 2426                     diapausing?           10.04.2019
## 2427                     diapausing?           10.04.2019
## 2428                     diapausing?           10.04.2019
## 2429                     diapausing?           10.04.2019
## 2430                     diapausing?           10.04.2019
## 2431                     diapausing?           10.04.2019
## 2432                     diapausing?           10.04.2019
## 2433                     diapausing?           10.04.2019
## 2434                     diapausing?           10.04.2019
## 2435                     diapausing?           10.04.2019
## 2436                     diapausing?           10.04.2019
## 2437                     diapausing?           10.04.2019
## 2438                     diapausing?           10.04.2019
## 2439                     diapausing?           10.04.2019
## 2440                     diapausing?           10.04.2019
## 2441                     diapausing?           10.04.2019
## 2442                     diapausing?           10.04.2019
## 2443                     diapausing?           10.04.2019
## 2444                     diapausing?           10.04.2019
## 2445                     diapausing?           10.04.2019
## 2446                     diapausing?           10.04.2019
## 2447                     diapausing?           10.04.2019
## 2448                     diapausing?           10.04.2019
## 2449                     diapausing?           10.04.2019
## 2450                     diapausing?           10.04.2019
## 2451                     diapausing?           10.04.2019
## 2452                     diapausing?           10.04.2019
## 2453                     diapausing?           10.04.2019
## 2454                  non-diapausing           10.04.2019
## 2455                  non-diapausing           10.04.2019
## 2456                  non-diapausing           10.04.2019
## 2457                  non-diapausing           10.04.2019
## 2458                  non-diapausing           10.04.2019
## 2459                  non-diapausing           10.04.2019
## 2460                  non-diapausing           10.04.2019
## 2461                  non-diapausing           10.04.2019
## 2462                  non-diapausing           10.04.2019
## 2463                  non-diapausing           10.04.2019
## 2464                  non-diapausing           10.04.2019
## 2465                  non-diapausing           10.04.2019
## 2466                  non-diapausing           10.04.2019
## 2467                  non-diapausing           10.04.2019
## 2468                  non-diapausing           10.04.2019
## 2469                  non-diapausing           10.04.2019
## 2470                      diapausing           10.05.2019
## 2471                      diapausing           10.05.2019
## 2472                      diapausing           10.05.2019
## 2473                      diapausing           10.05.2019
## 2474                      diapausing           10.05.2019
## 2475                      diapausing           10.05.2019
## 2476                      diapausing           10.05.2019
## 2477                      diapausing           10.05.2019
## 2478                      diapausing           10.05.2019
## 2479                      diapausing           10.05.2019
## 2480                      diapausing           10.05.2019
## 2481                      diapausing           10.05.2019
## 2482                      diapausing           10.05.2019
## 2483                      diapausing           10.05.2019
## 2484                      diapausing           10.05.2019
## 2485                      diapausing           10.05.2019
## 2486                      diapausing           10.05.2019
## 2487                      diapausing           10.05.2019
## 2488                      diapausing           10.05.2019
## 2489                      diapausing           10.05.2019
## 2490                      diapausing           10.05.2019
## 2491                      diapausing           10.05.2019
## 2492                      diapausing           10.05.2019
## 2493                      diapausing           10.05.2019
## 2494                      diapausing           10.05.2019
## 2495                      diapausing           10.05.2019
## 2496                      diapausing           10.05.2019
## 2497                      diapausing           10.05.2019
## 2498                      diapausing           10.05.2019
## 2499                      diapausing           10.05.2019
## 2500                      diapausing           10.05.2019
## 2501                      diapausing           10.05.2019
## 2502                      diapausing           10.05.2019
## 2503                      diapausing           10.05.2019
## 2504                      diapausing           10.05.2019
## 2505                      diapausing           10.05.2019
## 2506                      diapausing           10.05.2019
## 2507                      diapausing           10.05.2019
## 2508                      diapausing           10.05.2019
## 2509                      diapausing           10.05.2019
## 2510                      diapausing           10.05.2019
## 2511                      diapausing           10.05.2019
## 2512                      diapausing           10.05.2019
## 2513                      diapausing           10.05.2019
## 2514                      diapausing           10.05.2019
## 2515                      diapausing           10.05.2019
## 2516                      diapausing           10.05.2019
## 2517                      diapausing           10.05.2019
## 2518                      diapausing           10.05.2019
## 2519                      diapausing           10.05.2019
## 2520                      diapausing           10.05.2019
## 2521                      diapausing           10.05.2019
## 2522                      diapausing           10.05.2019
## 2523                      diapausing           10.05.2019
## 2524                      diapausing            10.5.2019
## 2525                      diapausing            10.5.2019
## 2526                      diapausing            10.5.2019
## 2527                      diapausing            10.5.2019
## 2528                      diapausing            10.5.2019
## 2529                      diapausing            10.5.2019
## 2530                      diapausing            10.5.2019
## 2531                      diapausing            10.5.2019
## 2532                      diapausing            10.5.2019
## 2533                      diapausing            10.5.2019
## 2534                      diapausing            10.5.2019
## 2535                      diapausing            10.5.2019
## 2536                  non-diapausing           10.05.2019
## 2537                  non-diapausing           10.05.2019
## 2538                  non-diapausing           10.05.2019
## 2539                  non-diapausing           10.05.2019
## 2540                  non-diapausing           10.05.2019
## 2541                  non-diapausing           10.05.2019
## 2542                  non-diapausing           10.05.2019
## 2543                  non-diapausing           10.05.2019
## 2544                  non-diapausing           10.05.2019
## 2545                  non-diapausing           10.05.2019
## 2546                  non-diapausing           10.05.2019
## 2547                  non-diapausing           10.05.2019
## 2548                         unknown           10.05.2019
## 2549                         unknown           10.05.2019
## 2550                         unknown           10.05.2019
## 2551                         unknown           10.05.2019
## 2552                         unknown           10.05.2019
## 2553                         unknown           10.05.2019
## 2554                         unknown           10.05.2019
## 2555                         unknown           10.05.2019
## 2556                         unknown           10.05.2019
## 2557                         unknown           10.05.2019
## 2558                         unknown           10.05.2019
## 2559                         unknown           10.05.2019
## 2560                         unknown           10.05.2019
## 2561                         unknown           10.05.2019
## 2562                  non-diapausing           10.03.2019
## 2563                  non-diapausing           10.03.2019
## 2564                  non-diapausing           10.03.2019
## 2565                  non-diapausing           10.03.2019
## 2566                  non-diapausing           10.03.2019
## 2567                  non-diapausing           10.03.2019
## 2568                  non-diapausing           10.03.2019
## 2569                  non-diapausing           10.03.2019
## 2570                  non-diapausing           10.03.2019
## 2571                  non-diapausing           10.03.2019
## 2572                  non-diapausing           10.03.2019
## 2573                  non-diapausing           10.03.2019
## 2574                  non-diapausing           10.03.2019
## 2575                  non-diapausing           10.03.2019
## 2576                  non-diapausing           10.03.2019
## 2577                  non-diapausing           10.03.2019
## 2578                  non-diapausing           10.03.2019
## 2579                  non-diapausing           10.03.2019
## 2580                  non-diapausing           10.03.2019
## 2581                  non-diapausing           10.02.2019
## 2582                  non-diapausing           10.02.2019
## 2583                  non-diapausing           10.02.2019
## 2584                  non-diapausing           10.02.2019
## 2585                  non-diapausing           10.02.2019
## 2586                  non-diapausing           10.02.2019
## 2587                  non-diapausing           10.02.2019
## 2588                  non-diapausing           10.02.2019
## 2589                  non-diapausing           10.02.2019
## 2590                  non-diapausing           10.02.2019
## 2591                  non-diapausing           10.02.2019
## 2592                  non-diapausing           10.02.2019
## 2593                  non-diapausing           10.03.2019
## 2594                  non-diapausing           10.03.2019
## 2595                  non-diapausing           10.03.2019
## 2596                  non-diapausing           10.03.2019
## 2597                  non-diapausing           10.03.2019
## 2598                  non-diapausing           10.03.2019
## 2599                  non-diapausing           10.03.2019
## 2600                  non-diapausing           10.03.2019
## 2601                  non-diapausing           10.02.2019
## 2602                  non-diapausing           10.02.2019
## 2603                  non-diapausing           10.02.2019
## 2604                  non-diapausing           10.02.2019
## 2605                  non-diapausing           10.02.2019
## 2606                  non-diapausing           10.02.2019
## 2607                  non-diapausing           10.02.2019
## 2608                  non-diapausing           10.02.2019
## 2609                  non-diapausing           10.02.2019
## 2610                  non-diapausing           10.02.2019
## 2611                  non-diapausing           10.02.2019
## 2612                  non-diapausing           10.02.2019
## 2613                  non-diapausing           10.02.2019
## 2614                  non-diapausing           10.02.2019
## 2615                  non-diapausing           10.02.2019
## 2616                  non-diapausing           10.02.2019
## 2617                  non-diapausing           10.02.2019
## 2618                  non-diapausing           10.02.2019
## 2619                  non-diapausing           10.02.2019
## 2620                  non-diapausing           10.02.2019
## 2621                  non-diapausing           10.02.2019
## 2622                  non-diapausing           10.02.2019
## 2623                  non-diapausing           10.02.2019
## 2624                  non-diapausing           10.02.2019
## 2625                  non-diapausing           10.02.2019
## 2626                  non-diapausing           10.02.2019
## 2627                  non-diapausing           10.02.2019
## 2628                  non-diapausing           10.02.2019
## 2629                  non-diapausing           10.02.2019
## 2630                  non-diapausing           10.02.2019
## 2631                  non-diapausing           10.02.2019
## 2632                  non-diapausing           10.02.2019
## 2633                  non-diapausing           10.05.2019
## 2634                  non-diapausing            10.2.2019
## 2635                  non-diapausing            10.2.2019
## 2636                  non-diapausing            10.2.2019
## 2637                  non-diapausing            10.2.2019
## 2638                  non-diapausing            10.2.2019
## 2639                  non-diapausing            10.2.2019
## 2640                  non-diapausing            10.2.2019
## 2641                  non-diapausing            10.2.2019
## 2642                  non-diapausing            10.2.2019
## 2643                  non-diapausing           10.02.2019
## 2644                  non-diapausing           10.02.2019
## 2645                  non-diapausing           10.02.2019
## 2646                  non-diapausing           10.02.2019
## 2647                  non-diapausing           10.02.2019
## 2648                  non-diapausing           10.02.2019
## 2649                  non-diapausing           10.02.2019
## 2650                  non-diapausing           10.02.2019
## 2651                  non-diapausing           10.02.2019
## 2652                  non-diapausing           10.02.2019
## 2653                  non-diapausing           10.02.2019
## 2654                  non-diapausing           10.02.2019
## 2655                  non-diapausing           10.02.2019
## 2656                  non-diapausing           10.02.2019
## 2657                  non-diapausing           10.02.2019
## 2658                  non-diapausing             2.9.2020
## 2659                  non-diapausing             2.9.2020
## 2660                  non-diapausing             2.9.2020
## 2661                  non-diapausing             2.9.2020
## 2662                  non-diapausing             2.9.2020
## 2663                  non-diapausing             2.9.2020
## 2664                  non-diapausing             2.9.2020
## 2665                  non-diapausing             2.9.2020
## 2666                  non-diapausing             2.9.2020
## 2667                  non-diapausing             2.9.2020
## 2668                  non-diapausing             2.9.2020
## 2669                  non-diapausing             2.9.2020
## 2670                  non-diapausing             2.9.2020
## 2671                  non-diapausing             2.9.2020
## 2672                  non-diapausing             2.9.2020
## 2673                  non-diapausing             2.9.2020
## 2674                  non-diapausing             2.9.2020
## 2675                  non-diapausing           02.09.2020
## 2676                  non-diapausing           02.09.2020
## 2677                  non-diapausing           02.09.2020
## 2678                  non-diapausing           02.09.2020
## 2679                  non-diapausing           02.09.2020
## 2680                  non-diapausing           02.09.2020
## 2681                  non-diapausing           02.09.2020
## 2682                  non-diapausing           02.09.2020
## 2683                  non-diapausing           02.09.2020
## 2684                  non-diapausing           02.09.2020
## 2685                  non-diapausing           02.09.2020
## 2686                  non-diapausing           02.09.2020
## 2687                  non-diapausing           02.09.2020
## 2688                  non-diapausing           02.09.2020
## 2689                  non-diapausing           02.09.2020
## 2690                  non-diapausing           02.09.2020
## 2691                  non-diapausing           02.09.2020
## 2692                  non-diapausing           02.09.2020
## 2693                  non-diapausing           02.09.2020
## 2694                  non-diapausing             2.5.2020
## 2695                  non-diapausing             2.7.2020
## 2696                  non-diapausing             2.7.2020
## 2697                  non-diapausing             2.7.2020
## 2698                  non-diapausing             2.7.2020
## 2699                  non-diapausing             2.7.2020
## 2700                  non-diapausing             2.7.2020
## 2701                  non-diapausing             2.7.2020
## 2702                  non-diapausing             2.7.2020
## 2703                  non-diapausing             2.7.2020
## 2704                  non-diapausing             2.7.2020
## 2705                  non-diapausing             2.7.2020
## 2706                  non-diapausing             2.7.2020
## 2707                  non-diapausing             2.7.2020
## 2708                  non-diapausing             2.7.2020
## 2709                  non-diapausing             2.7.2020
## 2710                  non-diapausing             2.7.2020
## 2711                  non-diapausing             2.7.2020
## 2712                  non-diapausing             2.7.2020
## 2713                  non-diapausing             2.7.2020
## 2714                  non-diapausing             2.7.2020
## 2715                  non-diapausing             2.7.2020
## 2716                  non-diapausing             2.7.2020
## 2717                  non-diapausing             2.7.2020
## 2718                  non-diapausing             2.7.2020
## 2719                  non-diapausing             2.7.2020
## 2720                  non-diapausing             2.7.2020
## 2721                  non-diapausing             2.7.2020
## 2722                  non-diapausing           02.07.2020
## 2723                  non-diapausing           02.07.2020
## 2724                  non-diapausing           02.07.2020
## 2725                  non-diapausing           02.07.2020
## 2726                  non-diapausing           02.07.2020
## 2727                  non-diapausing           02.07.2020
## 2728                  non-diapausing           02.07.2020
## 2729                  non-diapausing           02.07.2020
## 2730                  non-diapausing           02.07.2020
## 2731                  non-diapausing           02.07.2020
## 2732                  non-diapausing           02.07.2020
## 2733                  non-diapausing           02.07.2020
## 2734                  non-diapausing           02.07.2020
## 2735                  non-diapausing           02.07.2020
## 2736                  non-diapausing             2.5.2020
## 2737                  non-diapausing             2.5.2020
## 2738                  non-diapausing             2.5.2020
## 2739                  non-diapausing             2.5.2020
## 2740                  non-diapausing             2.5.2020
## 2741                  non-diapausing             2.5.2020
## 2742                  non-diapausing             2.5.2020
## 2743                  non-diapausing             2.5.2020
## 2744                  non-diapausing             2.5.2020
## 2745                  non-diapausing             2.5.2020
## 2746                  non-diapausing             2.5.2020
## 2747                  non-diapausing             2.5.2020
## 2748                  non-diapausing             2.5.2020
## 2749                  non-diapausing             2.5.2020
## 2750                  non-diapausing             2.5.2020
## 2751                  non-diapausing             2.5.2020
## 2752                  non-diapausing             2.5.2020
## 2753                  non-diapausing             2.5.2020
## 2754                  non-diapausing             2.5.2020
## 2755                  non-diapausing             2.5.2020
## 2756                  non-diapausing             2.5.2020
## 2757                  non-diapausing             2.5.2020
## 2758                  non-diapausing             2.5.2020
## 2759                  non-diapausing             2.5.2020
## 2760                  non-diapausing             2.5.2020
## 2761                  non-diapausing             2.5.2020
## 2762                  non-diapausing             2.5.2020
## 2763                  non-diapausing             2.5.2020
## 2764                  non-diapausing             2.5.2020
## 2765                  non-diapausing             2.5.2020
## 2766                  non-diapausing             2.5.2020
## 2767                  non-diapausing             2.5.2020
## 2768                  non-diapausing             2.5.2020
## 2769                  non-diapausing             2.5.2020
## 2770                  non-diapausing             2.5.2020
## 2771                  non-diapausing             2.5.2020
## 2772                  non-diapausing             2.5.2020
## 2773                  non-diapausing             2.5.2020
## 2774                  non-diapausing             2.5.2020
## 2775                  non-diapausing             2.5.2020
## 2776                  non-diapausing             2.5.2020
## 2777                  non-diapausing             2.5.2020
## 2778                  non-diapausing             2.5.2020
## 2779                  non-diapausing             2.5.2020
## 2780                  non-diapausing           02.06.2020
## 2781                  non-diapausing           02.06.2020
## 2782                  non-diapausing           02.06.2020
## 2783                  non-diapausing           02.06.2020
## 2784                  non-diapausing           02.06.2020
## 2785                  non-diapausing           02.06.2020
## 2786                  non-diapausing           02.06.2020
## 2787                  non-diapausing           02.06.2020
## 2788                  non-diapausing           02.06.2020
## 2789                  non-diapausing           02.06.2020
## 2790                  non-diapausing           02.06.2020
## 2791                  non-diapausing           02.06.2020
## 2792                  non-diapausing           02.06.2020
## 2793                  non-diapausing           02.06.2020
## 2794                  non-diapausing           02.06.2020
## 2795                  non-diapausing           02.06.2020
## 2796                  non-diapausing           02.06.2020
## 2797                  non-diapausing           02.06.2020
## 2798                  non-diapausing           02.06.2020
## 2799                  non-diapausing           02.06.2020
## 2800                  non-diapausing           02.06.2020
## 2801                  non-diapausing           02.06.2020
## 2802                  non-diapausing           02.06.2020
## 2803                  non-diapausing           02.06.2020
## 2804                  non-diapausing           02.06.2020
## 2805                  non-diapausing           02.06.2020
## 2806                  non-diapausing           02.06.2020
## 2807                  non-diapausing           02.06.2020
## 2808                  non-diapausing           02.06.2020
## 2809                  non-diapausing           02.06.2020
## 2810                  non-diapausing           02.06.2020
## 2811                  non-diapausing           02.06.2020
## 2812 diapause-like behavior observed             2.7.2020
## 2813 diapause-like behavior observed             2.7.2020
## 2814 diapause-like behavior observed             2.7.2020
## 2815 diapause-like behavior observed             2.7.2020
## 2816 diapause-like behavior observed             2.7.2020
## 2817 diapause-like behavior observed             2.7.2020
## 2818 diapause-like behavior observed             2.7.2020
## 2819 diapause-like behavior observed             2.7.2020
## 2820 diapause-like behavior observed             2.7.2020
## 2821 diapause-like behavior observed             2.7.2020
## 2822 diapause-like behavior observed             2.7.2020
## 2823 diapause-like behavior observed             2.7.2020
## 2824 diapause-like behavior observed             2.7.2020
## 2825 diapause-like behavior observed             2.7.2020
## 2826 diapause-like behavior observed             2.7.2020
## 2827 diapause-like behavior observed             2.7.2020
## 2828 diapause-like behavior observed             2.7.2020
## 2829 diapause-like behavior observed             2.7.2020
## 2830 diapause-like behavior observed             2.7.2020
## 2831 diapause-like behavior observed             2.7.2020
## 2832 diapause-like behavior observed             2.7.2020
## 2833 diapause-like behavior observed             2.7.2020
## 2834 diapause-like behavior observed             2.7.2020
## 2835 diapause-like behavior observed             2.7.2020
## 2836 diapause-like behavior observed           02.07.2020
## 2837 diapause-like behavior observed           02.07.2020
## 2838 diapause-like behavior observed           02.07.2020
## 2839 diapause-like behavior observed           02.07.2020
## 2840 diapause-like behavior observed           02.07.2020
## 2841 diapause-like behavior observed           02.07.2020
## 2842 diapause-like behavior observed           02.07.2020
## 2843 diapause-like behavior observed           02.07.2020
## 2844 diapause-like behavior observed           02.07.2020
## 2845 diapause-like behavior observed           02.07.2020
## 2846 diapause-like behavior observed           02.07.2020
## 2847 diapause-like behavior observed           02.07.2020
## 2848 diapause-like behavior observed           02.07.2020
## 2849 diapause-like behavior observed           02.07.2020
## 2850 diapause-like behavior observed           02.07.2020
## 2851 diapause-like behavior observed           02.07.2020
## 2852 diapause-like behavior observed           02.07.2020
## 2853 diapause-like behavior observed           02.07.2020
## 2854 diapause-like behavior observed           02.07.2020
## 2855                  non-diapausing             2.7.2020
## 2856                  non-diapausing             2.7.2020
## 2857                  non-diapausing             2.7.2020
## 2858                  non-diapausing             2.7.2020
## 2859                  non-diapausing             2.7.2020
## 2860                  non-diapausing             2.7.2020
## 2861                  non-diapausing             2.7.2020
## 2862                  non-diapausing             2.7.2020
## 2863                  non-diapausing             2.7.2020
## 2864                  non-diapausing             2.7.2020
## 2865                  non-diapausing             2.7.2020
## 2866                  non-diapausing           02.07.2020
## 2867                  non-diapausing           02.07.2020
## 2868                  non-diapausing           02.07.2020
## 2869                  non-diapausing           02.07.2020
## 2870                  non-diapausing           02.07.2020
## 2871                  non-diapausing           02.07.2020
## 2872                  non-diapausing           02.07.2020
## 2873                  non-diapausing           02.07.2020
## 2874                  non-diapausing           02.07.2020
## 2875                  non-diapausing           02.07.2020
## 2876                  non-diapausing           02.07.2020
## 2877                  non-diapausing           02.07.2020
## 2878                  non-diapausing           02.07.2020
## 2879                  non-diapausing           02.07.2020
## 2880                  non-diapausing           02.07.2020
## 2881                  non-diapausing           02.07.2020
## 2882                  non-diapausing           02.07.2020
## 2883                  non-diapausing           02.07.2020
## 2884                  non-diapausing           02.07.2020
## 2885                  non-diapausing           02.07.2020
## 2886                  non-diapausing           02.07.2020
## 2887                  non-diapausing           02.07.2020
## 2888                  non-diapausing           02.07.2020
## 2889                  non-diapausing           02.07.2020
## 2890                  non-diapausing           02.07.2020
## 2891                  non-diapausing           02.07.2020
## 2892                  non-diapausing           02.07.2020
## 2893                  non-diapausing           02.07.2020
## 2894                  non-diapausing           02.07.2020
## 2895                  non-diapausing           02.07.2020
## 2896                  non-diapausing           02.07.2020
## 2897                  non-diapausing           02.07.2020
## 2898                  non-diapausing           02.07.2020
## 2899                  non-diapausing           02.07.2020
## 2900                  non-diapausing           02.07.2020
## 2901                  non-diapausing           02.07.2020
## 2902                  non-diapausing           02.07.2020
## 2903                  non-diapausing           02.07.2020
## 2904                  non-diapausing           02.07.2020
## 2905                  non-diapausing             2.7.2020
## 2906                  non-diapausing             2.7.2020
## 2907                  non-diapausing             2.7.2020
## 2908                  non-diapausing             2.7.2020
## 2909                  non-diapausing             2.7.2020
## 2910                  non-diapausing             2.7.2020
## 2911                  non-diapausing             2.7.2020
## 2912                  non-diapausing             2.7.2020
## 2913                  non-diapausing             2.7.2020
## 2914                  non-diapausing             2.7.2020
## 2915                  non-diapausing             2.7.2020
## 2916                  non-diapausing             2.7.2020
## 2917                  non-diapausing           02.07.2020
## 2918                  non-diapausing           02.07.2020
## 2919                  non-diapausing           02.07.2020
## 2920                  non-diapausing           02.07.2020
## 2921                  non-diapausing           02.07.2020
## 2922                  non-diapausing           02.07.2020
## 2923                  non-diapausing           02.07.2020
## 2924                  non-diapausing           02.07.2020
## 2925                  non-diapausing           02.07.2020
## 2926                  non-diapausing           02.07.2020
## 2927                  non-diapausing           02.07.2020
## 2928                  non-diapausing           02.07.2020
## 2929                  non-diapausing           02.07.2020
## 2930                  non-diapausing           02.07.2020
## 2931                  non-diapausing           02.07.2020
## 2932                  non-diapausing           02.07.2020
## 2933                  non-diapausing           02.07.2020
## 2934                  non-diapausing             2.3.2020
## 2935                  non-diapausing             2.3.2020
## 2936                  non-diapausing             2.3.2020
## 2937                  non-diapausing             2.3.2020
## 2938                  non-diapausing             2.3.2020
## 2939                  non-diapausing             2.5.2020
## 2940                  non-diapausing             2.5.2020
## 2941                  non-diapausing             2.5.2020
## 2942                  non-diapausing             2.5.2020
## 2943                  non-diapausing             2.5.2020
## 2944                  non-diapausing             2.4.2020
## 2945                  non-diapausing             2.4.2020
## 2946                  non-diapausing             2.4.2020
## 2947                  non-diapausing             2.4.2020
## 2948                  non-diapausing             2.4.2020
## 2949                  non-diapausing             2.5.2020
## 2950                  non-diapausing             2.5.2020
## 2951                  non-diapausing             2.5.2020
## 2952                  non-diapausing             2.3.2020
## 2953                  non-diapausing             2.3.2020
## 2954                  non-diapausing             2.3.2020
## 2955                  non-diapausing             2.4.2020
## 2956                  non-diapausing             2.4.2020
## 2957                  non-diapausing             2.4.2020
## 2958                  non-diapausing             2.4.2020
## 2959                  non-diapausing             2.4.2020
## 2960                  non-diapausing             2.5.2020
## 2961                  non-diapausing             2.5.2020
## 2962                  non-diapausing             2.5.2020
## 2963                  non-diapausing             2.5.2020
## 2964                  non-diapausing             2.4.2020
## 2965                  non-diapausing             2.4.2020
## 2966                  non-diapausing             2.4.2020
## 2967                  non-diapausing             2.3.2020
## 2968                  non-diapausing             2.3.2020
## 2969                  non-diapausing             2.3.2020
## 2970                  non-diapausing             2.3.2020
## 2971                  non-diapausing             2.5.2020
## 2972                  non-diapausing             2.5.2020
## 2973                  non-diapausing             2.5.2020
## 2974                  non-diapausing             2.5.2020
## 2975                  non-diapausing             2.5.2020
## 2976                  non-diapausing             2.4.2020
## 2977                  non-diapausing             2.4.2020
## 2978                  non-diapausing             2.4.2020
## 2979                  non-diapausing             2.4.2020
## 2980                  non-diapausing             2.4.2020
## 2981                  non-diapausing             2.3.2020
## 2982                  non-diapausing             2.3.2020
## 2983                  non-diapausing             2.3.2020
## 2984                  non-diapausing             2.3.2020
## 2985                  non-diapausing             2.3.2020
## 2986                  non-diapausing             2.3.2020
## 2987                  non-diapausing             2.3.2020
## 2988                  non-diapausing             2.5.2020
## 2989                  non-diapausing             2.5.2020
## 2990                  non-diapausing             2.5.2020
## 2991                  non-diapausing             2.5.2020
## 2992                  non-diapausing             2.4.2020
## 2993                  non-diapausing             2.4.2020
## 2994                  non-diapausing             2.4.2020
## 2995                  non-diapausing             2.4.2020
## 2996                  non-diapausing             2.4.2020
## 2997                  non-diapausing             2.5.2020
## 2998                  non-diapausing             2.5.2020
## 2999                  non-diapausing             2.5.2020
## 3000                  non-diapausing             2.5.2020
## 3001                  non-diapausing             2.5.2020
## 3002                  non-diapausing             2.4.2020
## 3003                  non-diapausing             2.4.2020
## 3004                  non-diapausing             2.4.2020
## 3005                  non-diapausing             2.5.2020
## 3006                  non-diapausing             2.5.2020
## 3007                  non-diapausing             2.5.2020
## 3008                  non-diapausing             2.5.2020
## 3009                  non-diapausing             2.5.2020
## 3010                  non-diapausing             2.3.2020
## 3011                  non-diapausing             2.3.2020
## 3012                  non-diapausing             2.3.2020
## 3013                  non-diapausing             2.3.2020
## 3014                  non-diapausing             2.3.2020
## 3015                  non-diapausing             2.3.2020
## 3016                  non-diapausing             2.3.2020
## 3017                  non-diapausing             2.3.2020
## 3018                  non-diapausing             2.3.2020
## 3019                  non-diapausing             2.3.2020
## 3020                  non-diapausing             2.5.2020
## 3021                  non-diapausing             2.5.2020
## 3022                  non-diapausing             2.5.2020
## 3023                  non-diapausing             2.5.2020
## 3024                  non-diapausing             2.5.2020
## 3025                  non-diapausing             2.4.2020
## 3026                  non-diapausing             2.4.2020
## 3027                  non-diapausing             2.5.2020
## 3028                  non-diapausing             2.5.2020
## 3029                  non-diapausing             2.5.2020
## 3030                  non-diapausing             2.4.2020
## 3031                  non-diapausing             2.4.2020
## 3032                  non-diapausing             2.4.2020
## 3033                  non-diapausing             2.5.2020
## 3034                  non-diapausing             2.5.2020
## 3035                  non-diapausing             2.5.2020
## 3036                  non-diapausing             2.5.2020
## 3037                  non-diapausing             2.5.2020
## 3038                  non-diapausing             2.5.2020
## 3039                  non-diapausing             2.5.2020
## 3040                  non-diapausing             2.5.2020
## 3041                  non-diapausing             2.5.2020
## 3042                  non-diapausing             2.5.2020
## 3043                  non-diapausing             2.5.2020
## 3044                  non-diapausing             2.5.2020
## 3045                  non-diapausing             2.5.2020
## 3046                  non-diapausing             2.5.2020
## 3047                  non-diapausing             2.5.2020
## 3048                  non-diapausing             2.5.2020
## 3049                  non-diapausing             2.5.2020
## 3050                  non-diapausing             2.5.2020
## 3051                  non-diapausing             2.5.2020
## 3052                  non-diapausing             2.5.2020
## 3053                  non-diapausing             2.5.2020
## 3054                  non-diapausing             2.5.2020
## 3055                  non-diapausing             2.5.2020
## 3056                  non-diapausing             2.5.2020
## 3057                  non-diapausing             2.5.2020
## 3058                  non-diapausing             2.5.2020
## 3059                  non-diapausing             2.5.2020
## 3060                  non-diapausing             2.3.2020
## 3061                  non-diapausing             2.3.2020
## 3062                  non-diapausing             2.3.2020
## 3063                  non-diapausing             2.3.2020
## 3064                  non-diapausing             2.3.2020
## 3065                  non-diapausing             2.3.2020
## 3066                  non-diapausing             2.3.2020
## 3067                  non-diapausing             2.3.2020
## 3068                  non-diapausing             2.4.2020
## 3069                  non-diapausing             2.4.2020
## 3070                  non-diapausing             2.4.2020
## 3071                  non-diapausing             2.4.2020
## 3072                  non-diapausing           02.03.2020
## 3073                  non-diapausing           02.03.2020
## 3074                  non-diapausing           02.03.2020
## 3075                  non-diapausing           02.03.2020
## 3076                  non-diapausing           02.03.2020
## 3077                  non-diapausing           02.03.2020
## 3078                  non-diapausing           02.05.2020
## 3079                  non-diapausing           02.05.2020
## 3080                  non-diapausing           02.05.2020
## 3081                  non-diapausing           02.05.2020
## 3082                  non-diapausing           02.05.2020
## 3083                  non-diapausing           02.05.2020
## 3084                  non-diapausing           02.05.2020
## 3085                  non-diapausing           02.05.2020
## 3086                  non-diapausing           02.05.2020
## 3087                  non-diapausing           02.05.2020
## 3088                  non-diapausing           02.05.2020
## 3089                  non-diapausing           02.05.2020
## 3090                  non-diapausing           02.05.2020
## 3091                  non-diapausing           02.05.2020
## 3092                  non-diapausing           02.04.2020
## 3093                  non-diapausing           02.04.2020
## 3094                  non-diapausing           02.04.2020
## 3095                  non-diapausing           02.04.2020
## 3096                  non-diapausing           02.03.2020
## 3097                  non-diapausing           02.03.2020
## 3098                  non-diapausing           02.03.2020
## 3099                  non-diapausing           02.03.2020
## 3100                  non-diapausing           02.03.2020
## 3101                  non-diapausing           02.03.2020
## 3102                  non-diapausing           02.03.2020
## 3103                  non-diapausing           02.03.2020
## 3104                  non-diapausing           02.05.2020
## 3105                  non-diapausing           02.05.2020
## 3106                  non-diapausing           02.05.2020
## 3107                  non-diapausing           02.05.2020
## 3108                  non-diapausing           02.05.2020
## 3109                  non-diapausing           02.05.2020
## 3110                  non-diapausing           02.05.2020
## 3111                  non-diapausing           02.05.2020
## 3112                  non-diapausing           02.05.2020
## 3113                  non-diapausing           02.05.2020
## 3114                  non-diapausing           02.05.2020
## 3115                  non-diapausing           02.05.2020
## 3116                  non-diapausing           02.05.2020
## 3117                  non-diapausing           02.05.2020
## 3118                  non-diapausing           02.05.2020
## 3119                  non-diapausing           02.05.2020
## 3120                  non-diapausing           02.05.2020
## 3121                  non-diapausing           02.05.2020
## 3122                  non-diapausing           02.05.2020
## 3123                  non-diapausing           02.05.2020
## 3124                  non-diapausing           02.05.2020
## 3125                  non-diapausing           02.05.2020
## 3126                  non-diapausing           02.05.2020
## 3127                  non-diapausing           02.05.2020
## 3128                  non-diapausing           02.05.2020
## 3129                  non-diapausing           02.05.2020
## 3130                  non-diapausing           02.05.2020
## 3131                  non-diapausing           02.05.2020
## 3132                  non-diapausing           02.05.2020
## 3133                  non-diapausing           02.05.2020
## 3134                  non-diapausing           02.05.2020
## 3135                  non-diapausing           02.05.2020
## 3136                  non-diapausing           02.05.2020
## 3137                  non-diapausing           02.04.2020
## 3138                  non-diapausing           02.04.2020
## 3139                  non-diapausing           02.04.2020
## 3140                  non-diapausing           02.04.2020
## 3141                  non-diapausing           02.04.2020
## 3142                  non-diapausing           02.04.2020
## 3143                  non-diapausing           02.04.2020
## 3144                  non-diapausing           02.04.2020
## 3145                  non-diapausing           02.04.2020
## 3146                  non-diapausing           02.04.2020
## 3147                  non-diapausing           02.04.2020
## 3148                  non-diapausing           02.04.2020
## 3149                  non-diapausing           02.04.2020
## 3150                  non-diapausing           02.04.2020
## 3151                  non-diapausing           02.04.2020
## 3152                  non-diapausing           02.04.2020
## 3153                  non-diapausing           02.04.2020
## 3154                  non-diapausing           02.04.2020
## 3155                  non-diapausing             2.4.2020
## 3156                  non-diapausing             2.4.2020
## 3157                  non-diapausing             2.4.2020
## 3158                  non-diapausing             2.4.2020
## 3159                  non-diapausing             2.4.2020
## 3160                  non-diapausing             2.4.2020
## 3161                  non-diapausing             2.4.2020
## 3162                  non-diapausing             2.4.2020
## 3163                  non-diapausing             2.4.2020
## 3164                  non-diapausing             2.4.2020
## 3165                  non-diapausing             2.4.2020
## 3166                  non-diapausing             2.4.2020
## 3167                  non-diapausing             2.4.2020
## 3168                  non-diapausing             2.4.2020
## 3169                  non-diapausing             2.4.2020
## 3170                  non-diapausing             2.4.2020
## 3171                  non-diapausing             2.4.2020
## 3172                  non-diapausing             2.4.2020
## 3173                  non-diapausing             2.4.2020
## 3174                  non-diapausing             2.4.2020
## 3175                  non-diapausing             2.4.2020
## 3176                  non-diapausing             2.4.2020
## 3177                  non-diapausing             2.4.2020
## 3178                  non-diapausing             2.4.2020
## 3179                  non-diapausing             2.4.2020
## 3180                  non-diapausing             2.4.2020
## 3181                  non-diapausing             2.4.2020
## 3182                  non-diapausing             2.4.2020
## 3183                  non-diapausing             2.4.2020
## 3184                  non-diapausing             2.4.2020
## 3185                  non-diapausing             2.4.2020
## 3186                  non-diapausing             2.4.2020
## 3187                  non-diapausing             2.4.2020
## 3188                  non-diapausing             2.4.2020
## 3189                  non-diapausing             2.4.2020
## 3190                  non-diapausing             2.4.2020
## 3191                  non-diapausing             2.4.2020
## 3192                  non-diapausing             2.4.2020
## 3193                  non-diapausing             2.4.2020
## 3194                  non-diapausing             2.4.2020
## 3195                  non-diapausing             2.4.2020
## 3196                  non-diapausing             2.4.2020
## 3197                  non-diapausing             2.4.2020
## 3198                  non-diapausing             2.4.2020
## 3199                  non-diapausing             2.4.2020
## 3200                  non-diapausing             2.4.2020
## 3201                  non-diapausing             2.4.2020
## 3202                  non-diapausing             2.4.2020
## 3203                  non-diapausing             2.4.2020
## 3204                  non-diapausing             2.4.2020
## 3205                  non-diapausing             2.4.2020
## 3206                  non-diapausing           02.04.2020
## 3207                  non-diapausing           02.04.2020
## 3208                  non-diapausing           02.04.2020
## 3209                  non-diapausing           02.04.2020
## 3210                  non-diapausing           02.04.2020
## 3211                  non-diapausing           02.04.2020
## 3212                  non-diapausing           02.04.2020
## 3213                  non-diapausing           02.04.2020
## 3214                  non-diapausing           02.04.2020
## 3215                  non-diapausing           02.04.2020
## 3216                  non-diapausing           02.04.2020
## 3217                  non-diapausing           02.04.2020
## 3218                  non-diapausing           02.04.2020
## 3219                  non-diapausing           02.04.2020
## 3220                  non-diapausing           02.04.2020
## 3221                  non-diapausing           02.04.2020
## 3222                  non-diapausing           02.04.2020
## 3223                  non-diapausing           02.04.2020
## 3224                  non-diapausing           02.04.2020
## 3225                  non-diapausing           02.04.2020
## 3226                  non-diapausing           10.02.2019
## 3227                  non-diapausing           10.02.2019
## 3228                  non-diapausing           10.02.2019
## 3229                  non-diapausing           10.02.2019
## 3230                  non-diapausing           10.02.2019
## 3231                  non-diapausing           10.02.2019
## 3232                  non-diapausing           10.02.2019
## 3233                  non-diapausing           10.02.2019
## 3234                  non-diapausing           10.02.2019
## 3235                  non-diapausing           10.02.2019
## 3236                  non-diapausing           10.02.2019
## 3237                  non-diapausing           10.02.2019
## 3238                  non-diapausing           10.02.2019
## 3239                  non-diapausing           10.02.2019
## 3240                  non-diapausing           10.02.2019
## 3241                  non-diapausing           10.02.2019
## 3242                  non-diapausing           10.02.2019
## 3243                  non-diapausing           10.02.2019
## 3244                  non-diapausing           10.02.2019
## 3245                  non-diapausing           10.02.2019
## 3246                  non-diapausing           10.02.2019
## 3247                  non-diapausing           10.02.2019
## 3248                  non-diapausing           10.02.2019
## 3249                  non-diapausing           10.02.2019
## 3250                  non-diapausing           10.02.2019
## 3251                                           10.04.2019
## 3252                                           10.04.2019
## 3253                                           10.04.2019
## 3254                                           10.04.2019
## 3255                                           10.04.2019
## 3256                                           10.04.2019
## 3257                                           10.04.2019
## 3258                                           10.04.2019
## 3259                                           10.04.2019
## 3260                                           10.04.2019
## 3261                                           10.04.2019
## 3262                                           10.04.2019
## 3263                                           10.03.2019
## 3264                                           10.03.2019
## 3265                                           10.03.2019
## 3266                                           10.03.2019
## 3267                                           10.03.2019
## 3268                                           10.03.2019
## 3269                                           10.03.2019
## 3270                                           10.03.2019
## 3271                                           10.03.2019
## 3272                                           10.03.2019
## 3273                                           10.03.2019
## 3274                                           10.03.2019
## 3275                                           10.03.2019
## 3276                                           10.03.2019
## 3277                                           10.02.2019
## 3278                                           10.02.2019
## 3279                                           10.02.2019
## 3280                                           10.02.2019
## 3281                                           10.02.2019
## 3282                                           10.02.2019
## 3283                                           10.02.2019
## 3284                                           10.02.2019
## 3285                                           10.02.2019
## 3286                                           10.02.2019
## 3287                                           10.02.2019
## 3288                                           10.02.2019
## 3289                                           10.05.2019
## 3290                                           10.05.2019
## 3291                                           10.05.2019
## 3292                                           10.05.2019
## 3293                                           10.05.2019
## 3294                                           10.05.2019
## 3295                                           10.05.2019
## 3296                                           10.05.2019
## 3297                                           10.05.2019
## 3298                                           10.05.2019
## 3299                                           10.05.2019
## 3300                                           10.05.2019
## 3301                                           10.05.2019
## 3302                                           10.05.2019
## 3303                                           10.05.2019
## 3304                                           10.05.2019
## 3305                                           10.05.2019
## 3306                                           10.05.2019
## 3307                                           10.05.2019
## 3308                                           10.05.2019
## 3309                                           10.05.2019
## 3310                                           10.02.2019
## 3311                                           10.02.2019
## 3312                                           10.02.2019
## 3313                                           10.02.2019
## 3314                                           12.15.2016
## 3315                                           12.15.2016
## 3316                                           12.15.2016
## 3317                                           12.15.2016
## 3318                                           10.04.2019
## 3319                       tips torn           10.04.2019
## 3320                       tips torn           10.04.2019
## 3321                                           10.04.2019
## 3322                                           10.04.2019
## 3323                                           10.04.2019
## 3324                       tips torn           10.04.2019
## 3325                                           10.02.2019
## 3326                       tips torn           10.02.2019
## 3327                        d1 peach           10.02.2019
## 3328                                           10.02.2019
## 3329                                           10.02.2019
## 3330                                           10.02.2019
## 3331                                           10.04.2019
## 3332                       tips torn           10.04.2019
## 3333                       tips torn           10.04.2019
## 3334                       tips torn           10.03.2019
## 3335                                           10.03.2019
## 3336                                           10.03.2019
## 3337                                           10.03.2019
## 3338                                           10.03.2019
## 3339                       tips torn           10.03.2019
## 3340                      diapausing           05.21.2019
## 3341                      diapausing           05.21.2019
## 3342                      diapausing           05.21.2019
## 3343                      diapausing           05.21.2019
## 3344                      diapausing           05.21.2019
## 3345                      diapausing           05.21.2019
## 3346                      diapausing           05.21.2019
## 3347                      diapausing           05.21.2019
## 3348                      diapausing           05.21.2019
## 3349                      diapausing           05.21.2019
## 3350                      diapausing           05.21.2019
## 3351                      diapausing           05.21.2019
## 3352                      diapausing           05.21.2019
## 3353                      diapausing           05.21.2019
## 3354                      diapausing           05.21.2019
## 3355                      diapausing           05.21.2019
## 3356                      diapausing           05.21.2019
## 3357                      diapausing           05.21.2019
## 3358                      diapausing           05.21.2019
## 3359                      diapausing           05.21.2019
## 3360                      diapausing           05.21.2019
## 3361                      diapausing           05.21.2019
## 3362                      diapausing           05.21.2019
## 3363                      diapausing           05.21.2019
## 3364                      diapausing           05.21.2019
## 3365                      diapausing           05.21.2019
## 3366                      diapausing           05.21.2019
## 3367                      diapausing           05.21.2019
## 3368                      diapausing           05.21.2019
## 3369                      diapausing           05.21.2019
## 3370                      diapausing           05.21.2019
## 3371                      diapausing           05.21.2019
## 3372                      diapausing           05.21.2019
## 3373                      diapausing           05.21.2019
## 3374                      diapausing           05.21.2019
## 3375                      diapausing           05.21.2019
## 3376                      diapausing           05.21.2019
## 3377                      diapausing           05.21.2019
## 3378                      diapausing           05.21.2019
## 3379                      diapausing           05.21.2019
## 3380                      diapausing           05.21.2019
## 3381                      diapausing           05.21.2019
## 3382                      diapausing           05.21.2019
## 3383                      diapausing           05.21.2019
## 3384                      diapausing           05.21.2019
## 3385                      diapausing           05.21.2019
## 3386                      diapausing           05.21.2019
## 3387                      diapausing           05.21.2019
## 3388                      diapausing           05.21.2019
## 3389                      diapausing           05.21.2019
## 3390                      diapausing           05.21.2019
## 3391                      diapausing           05.21.2019
## 3392                      diapausing           05.21.2019
## 3393                      diapausing           05.21.2019
## 3394                                           05.21.2019
## 3395                                           05.21.2019
## 3396                                           05.21.2019
## 3397                                           05.21.2019
## 3398                                           05.21.2019
## 3399                                           05.21.2019
## 3400                                           05.21.2019
## 3401                                           05.21.2019
## 3402                                           05.21.2019
## 3403                                           05.21.2019
## 3404                                           05.21.2019
## 3405                                           05.21.2019
## 3406                                           05.21.2019
## 3407                                           05.21.2019
## 3408                                           05.21.2019
## 3409                                           05.21.2019
## 3410                                           05.21.2019
## 3411                                           05.21.2019
## 3412                                           05.21.2019
## 3413                                           05.21.2019
## 3414                                           05.21.2019
## 3415                                           05.21.2019
## 3416                                           05.21.2019
## 3417                                           05.21.2019
## 3418                                           05.21.2019
## 3419                                           05.21.2019
## 3420                                           05.21.2019
## 3421                                           05.21.2019
## 3422                                           05.21.2019
## 3423                                           05.21.2019
## 3424                                           05.21.2019
## 3425                                           05.21.2019
## 3426                                           05.21.2019
## 3427                                           05.21.2019
## 3428                                           05.21.2019
## 3429                                           05.21.2019
## 3430                                           05.21.2019
## 3431                                           05.21.2019
## 3432                                           05.21.2019
## 3433                                           05.21.2019
## 3434                                           05.21.2019
## 3435                                           05.21.2019
## 3436                                           05.21.2019
## 3437                                           05.21.2019
## 3438                                           05.21.2019
## 3439                                           05.21.2019
## 3440                                           05.21.2019
## 3441                                           05.21.2019
## 3442                                           05.21.2019
## 3443                                           05.21.2019
## 3444                                           05.21.2019
## 3445                                           05.21.2019
## 3446                                           05.21.2019
## 3447                                           05.21.2019
##                                  notes sex_binom pophost_binom            date
## 1                                             -1             1      April/2013
## 2                                             -1             1      April/2013
## 3                                             -1             1      April/2013
## 4                                             -1             1      April/2013
## 5                                             -1             1      April/2013
## 6                                             -1             1      April/2013
## 7                                             -1             1      April/2013
## 8                                             -1             1      April/2013
## 9                                             -1             1      April/2013
## 10                                             1             1      April/2013
## 11                                             1             1      April/2013
## 12                                            -1             1      April/2013
## 13                                            -1             1      April/2013
## 14                                            -1             1      April/2013
## 15                                             1             1      April/2013
## 16                                            -1             1      April/2013
## 17                                            -1             1      April/2013
## 18                                             1             1      April/2013
## 19                                            -1             1      April/2013
## 20                                             1             1      April/2013
## 21                                             1             1      April/2013
## 22                                            -1             1      April/2013
## 23                                             1             1      April/2013
## 24                                            -1             1      April/2013
## 25                                             1             1      April/2013
## 26                                            -1             1      April/2013
## 27                                             1             1      April/2013
## 28                                             1             1      April/2013
## 29                                             1             1      April/2013
## 30                                            -1             1      April/2013
## 31                                             1             1      April/2013
## 32                                            -1             1      April/2013
## 33                                            -1             1      April/2013
## 34                                            -1             1      April/2013
## 35                                             1             1      April/2013
## 36                                            -1             1      April/2013
## 37                                             1             1      April/2013
## 38                                            -1             1      April/2013
## 39                                            -1             1      April/2013
## 40                                            -1             1      April/2013
## 41                                            -1             1      April/2013
## 42                                             1             1      April/2013
## 43                                            -1             1      April/2013
## 44                                             1             1      April/2013
## 45                                            -1             1      April/2013
## 46                                             1             1      April/2013
## 47                                            -1             1      April/2013
## 48                                             1             1      April/2013
## 49                                             1             1      April/2013
## 50                                            -1             1      April/2013
## 51                                             1             1      April/2013
## 52                                            -1             1      April/2013
## 53                                            -1             1      April/2013
## 54                                             1             1      April/2013
## 55                                            -1             1      April/2013
## 56                                             1             1      April/2013
## 57                                            -1             1      April/2013
## 58                                            -1             1      April/2013
## 59                                             1             1      April/2013
## 60                                             1             1      April/2013
## 61                                             1             1      April/2013
## 62                                            -1             1      April/2013
## 63                                             1             1      April/2013
## 64                                            -1             1      April/2013
## 65                                             1             1      April/2013
## 66                                             1             1      April/2013
## 67                                            -1             1      April/2013
## 68                                             1             1      April/2013
## 69                                             1             1      April/2013
## 70                                            -1             1      April/2013
## 71                                             1             1      April/2013
## 72                                             1             1      April/2013
## 73                                             1             1      April/2013
## 74                                            -1             1      April/2013
## 75                                            -1             1      April/2013
## 76                                             1            -1      April/2013
## 77                                            -1            -1      April/2013
## 78                                             1            -1      April/2013
## 79                                            -1            -1      April/2013
## 80                                             1            -1      April/2013
## 81                                            -1            -1      April/2013
## 82                                            -1            -1      April/2013
## 83                                            -1            -1      April/2013
## 84                                             1            -1      April/2013
## 85                                             1            -1      April/2013
## 86                                            -1            -1      April/2013
## 87                                            -1            -1      April/2013
## 88                                            -1            -1      April/2013
## 89                                            -1            -1      April/2013
## 90                                             1            -1      April/2013
## 91                                            -1            -1      April/2013
## 92                                            -1            -1      April/2013
## 93                                            -1            -1      April/2013
## 94                                             1            -1      April/2013
## 95                                            -1            -1      April/2013
## 96                                             1            -1      April/2013
## 97                                             1            -1      April/2013
## 98                                             1            -1      April/2013
## 99                                             1            -1      April/2013
## 100                                            1            -1      April/2013
## 101                                            1            -1      April/2013
## 102                                            1            -1      April/2013
## 103                                           -1            -1      April/2013
## 104                                            1            -1      April/2013
## 105                                           -1            -1      April/2013
## 106                                            1            -1      April/2013
## 107                                            1            -1      April/2013
## 108                                            1            -1      April/2013
## 109                                           -1            -1      April/2013
## 110                                           -1            -1      April/2013
## 111                                           -1            -1      April/2013
## 112                                           -1            -1      April/2013
## 113                                           -1            -1      April/2013
## 114                                            1             1      April/2013
## 115                                            1             1      April/2013
## 116                                            1             1      April/2013
## 117                                            1             1      April/2013
## 118                                           -1             1      April/2013
## 119                                            1             1      April/2013
## 120                                           -1             1      April/2013
## 121                                            1             1      April/2013
## 122                                            1             1      April/2013
## 123                                           -1             1      April/2013
## 124                                            1             1      April/2013
## 125                                           -1             1      April/2013
## 126                                           -1             1      April/2013
## 127                                           -1             1      April/2013
## 128                                            1             1      April/2013
## 129                                           -1             1      April/2013
## 130                                           -1             1      April/2013
## 131                                           -1             1      April/2013
## 132                                           -1             1      April/2013
## 133                                            1             1      April/2013
## 134                                            1             1      April/2013
## 135                                           -1             1      April/2013
## 136                                           -1             1      April/2013
## 137                                            1             1      April/2013
## 138                                            1             1      April/2013
## 139                                           -1             1      April/2013
## 140                                           -1            -1      April/2013
## 141                                           -1            -1      April/2013
## 142                                            1            -1      April/2013
## 143                                           -1            -1      April/2013
## 144                                           -1            -1      April/2013
## 145                                           -1            -1      April/2013
## 146                                            1            -1      April/2013
## 147                                           -1            -1      April/2013
## 148                                           -1            -1      April/2013
## 149                                           -1            -1      April/2013
## 150                                           -1            -1      April/2013
## 151                                           -1            -1      April/2013
## 152                                           -1            -1      April/2013
## 153                                           -1            -1      April/2013
## 154                                            1            -1      April/2013
## 155                                            1            -1      April/2013
## 156                                           -1            -1      April/2013
## 157                                            1            -1      April/2013
## 158                                           -1            -1      April/2013
## 159                                            1            -1      April/2013
## 160                                           -1            -1      April/2013
## 161                                            1            -1      April/2013
## 162                                            1            -1      April/2013
## 163                                            1            -1      April/2013
## 164                                            1            -1      April/2013
## 165                                            1            -1      April/2013
## 166                                           -1            -1      April/2013
## 167                                           -1            -1      April/2013
## 168                                            1            -1      April/2013
## 169                                           -1            -1      April/2013
## 170                                           -1            -1      April/2013
## 171                                            1            -1      April/2013
## 172                                           -1            -1      April/2013
## 173                                           -1            -1      April/2013
## 174                                           -1            -1      April/2013
## 175                                            1            -1      April/2013
## 176                                           -1            -1      April/2013
## 177                                            1            -1      April/2013
## 178                                           -1            -1      April/2013
## 179                                            1            -1      April/2013
## 180                                           -1            -1      April/2013
## 181                                           -1            -1      April/2013
## 182                                            1            -1      April/2013
## 183                                           -1            -1      April/2013
## 184                                           -1            -1      April/2013
## 185                                            1            -1      April/2013
## 186                                           -1            -1      April/2013
## 187                                            1            -1      April/2013
## 188                                           -1            -1      April/2013
## 189                                            1            -1      April/2013
## 190                                            1            -1      April/2013
## 191                                            1            -1      April/2013
## 192                                            1            -1      April/2013
## 193                                            1            -1      April/2013
## 194                                           -1            -1      April/2013
## 195                                           -1            -1      April/2013
## 196                                           -1            -1      April/2013
## 197                                           -1            -1      April/2013
## 198                                           -1            -1      April/2013
## 199                                            1            -1      April/2013
## 200                                            1            -1      April/2013
## 201                                           -1             1      April/2013
## 202                                           -1             1      April/2013
## 203                                           -1             1      April/2013
## 204                                            1             1      April/2013
## 205                                           -1             1      April/2013
## 206                                           -1             1      April/2013
## 207                                            1             1      April/2013
## 208                                           -1             1      April/2013
## 209                                           -1             1      April/2013
## 210                                           -1             1      April/2013
## 211                                            1             1      April/2013
## 212                                           -1             1      April/2013
## 213                                            1             1      April/2013
## 214                                           -1             1      April/2013
## 215                                           -1             1      April/2013
## 216                                           -1             1      April/2013
## 217                                            1             1      April/2013
## 218                                           -1             1      April/2013
## 219                                           -1             1      April/2013
## 220                                           -1             1      April/2013
## 221                                           -1             1      April/2013
## 222                                           -1             1      April/2013
## 223                                           -1             1      April/2013
## 224                                            1             1      April/2013
## 225                                           -1             1      April/2013
## 226                                           -1             1      April/2013
## 227                                           -1             1      April/2013
## 228                                           -1             1      April/2013
## 229                                           -1             1      April/2013
## 230                                           -1             1      April/2013
## 231                                           -1             1      April/2013
## 232                                            1             1      April/2013
## 233                                            1             1      April/2013
## 234                                           -1             1      April/2013
## 235                                           -1             1      April/2013
## 236                                            1             1      April/2013
## 237                                            1             1      April/2013
## 238                                           -1             1      April/2013
## 239                                            1             1      April/2013
## 240                                            1             1      April/2013
## 241                                           -1             1      April/2013
## 242                                           -1             1      April/2013
## 243                                            1             1      April/2013
## 244                                           -1             1      April/2013
## 245                                            1             1      April/2013
## 246                                            1             1      April/2013
## 247                                            1             1      April/2013
## 248                                            1             1      April/2013
## 249                                            1             1      April/2013
## 250                                           -1             1      April/2013
## 251                                           -1             1      April/2013
## 252                                           -1             1      April/2013
## 253                                           -1             1      April/2013
## 254                                           -1             1      April/2013
## 255                                           -1             1      April/2013
## 256                                           -1             1      April/2013
## 257                                            1             1      April/2013
## 258                                           -1             1      April/2013
## 259                                            1             1      April/2013
## 260                                           -1             1      April/2013
## 261                                           -1             1      April/2013
## 262                                           -1             1      April/2013
## 263                                            1             1      April/2013
## 264                                           -1             1      April/2013
## 265                                            1             1      April/2013
## 266                                           -1             1      April/2013
## 267                                           -1             1      April/2013
## 268                                            1             1      April/2013
## 269                                           -1             1      April/2013
## 270                                           -1             1      April/2013
## 271                                            1             1      April/2013
## 272                                           -1             1      April/2013
## 273                                            1             1      April/2013
## 274                                           -1             1      April/2013
## 275                                           -1             1      April/2013
## 276                                            1             1      April/2013
## 277                                           -1             1      April/2013
## 278                                           -1             1      April/2013
## 279                                            1             1      April/2013
## 280                                           -1             1      April/2013
## 281                                            1             1      April/2013
## 282                                           -1             1      April/2013
## 283                                            1             1      April/2013
## 284                                            1             1      April/2013
## 285                                            1             1      April/2013
## 286                                           -1            -1      April/2013
## 287                                            1            -1      April/2013
## 288                                           -1            -1      April/2013
## 289                                           -1            -1      April/2013
## 290                                           -1            -1      April/2013
## 291                                            1            -1      April/2013
## 292                                           -1            -1      April/2013
## 293                                           -1            -1      April/2013
## 294                                           -1            -1      April/2013
## 295                                            1            -1      April/2013
## 296                                            1            -1      April/2013
## 297                                           -1            -1      April/2013
## 298                                           -1            -1      April/2013
## 299                                            1            -1      April/2013
## 300                                           -1            -1      April/2013
## 301                                           -1            -1      April/2013
## 302                                           -1            -1      April/2013
## 303                                           -1            -1      April/2013
## 304                                           -1            -1      April/2013
## 305                                            1            -1      April/2013
## 306                                           -1            -1      April/2013
## 307                                            1            -1      April/2013
## 308                                            1            -1      April/2013
## 309                                            1            -1      April/2013
## 310                                            1            -1      April/2013
## 311                                           -1            -1      April/2013
## 312                                            1            -1      April/2013
## 313                                           -1            -1      April/2013
## 314                                           -1            -1      April/2013
## 315                                           -1            -1      April/2013
## 316                                            1            -1      April/2013
## 317                                            1            -1      April/2013
## 318                                            1            -1      April/2013
## 319                                           -1            -1      April/2013
## 320                                            1            -1      April/2013
## 321                                           -1            -1      April/2013
## 322                                           -1             1 December/2013.6
## 323                                            1             1 December/2013.6
## 324                                            1             1 December/2013.6
## 325                                            1             1 December/2013.6
## 326                                            1             1 December/2013.6
## 327                                           -1             1 December/2013.6
## 328                                            1             1 December/2013.6
## 329                                            1             1 December/2013.6
## 330                                            1             1 December/2013.6
## 331                                           -1             1 December/2013.6
## 332                                            1             1 December/2013.6
## 333                                            1             1 December/2013.6
## 334                                           -1             1 December/2013.6
## 335                                            1             1 December/2013.6
## 336                                            1             1 December/2013.6
## 337                                           -1             1 December/2013.6
## 338                                           -1             1 December/2013.6
## 339                                            1             1 December/2013.6
## 340                                            1             1 December/2013.6
## 341                                            1             1 December/2013.6
## 342                                            1             1 December/2013.6
## 343                                            1             1 December/2013.6
## 344                                            1             1 December/2013.6
## 345                                            1             1 December/2013.6
## 346                                           -1             1 December/2013.6
## 347                                            1             1 December/2013.6
## 348                                            1             1 December/2013.6
## 349                                            1             1 December/2013.6
## 350                                            1             1 December/2013.6
## 351                                            1             1 December/2013.6
## 352                                            1             1 December/2013.6
## 353                                            1             1 December/2013.6
## 354                                            1             1 December/2013.6
## 355                                            1             1 December/2013.6
## 356                                           -1             1 December/2013.6
## 357                                            1             1 December/2013.6
## 358                                           -1             1 December/2013.6
## 359                                            1             1 December/2013.6
## 360                                           -1             1 December/2013.6
## 361                                            1             1 December/2013.6
## 362                                            1             1 December/2013.6
## 363                                            1             1 December/2013.6
## 364                                            1             1 December/2013.6
## 365                                            1             1 December/2013.6
## 366                                           -1             1 December/2013.6
## 367                                            1             1 December/2013.6
## 368                                           -1             1 December/2013.6
## 369                                            1             1 December/2013.6
## 370                                           -1             1 December/2013.6
## 371                                           -1             1 December/2013.6
## 372                                           -1             1 December/2013.6
## 373                                            1             1 December/2013.6
## 374                                            1             1 December/2013.6
## 375                                            1             1 December/2013.6
## 376                                           -1             1 December/2013.6
## 377                                            1             1 December/2013.6
## 378                                            1             1 December/2013.6
## 379                                            1             1 December/2013.6
## 380                                           -1             1 December/2013.6
## 381                                            1             1 December/2013.6
## 382                                           -1             1 December/2013.6
## 383                                            1             1 December/2013.6
## 384                                            1             1 December/2013.6
## 385                                            1             1 December/2013.6
## 386                                            1             1 December/2013.6
## 387                                            1             1 December/2013.6
## 388                                           -1             1 December/2013.6
## 389                                           -1             1 December/2013.6
## 390                                            1             1 December/2013.6
## 391                                            1             1 December/2013.6
## 392                                            1             1 December/2013.6
## 393                                            1             1 December/2013.6
## 394                                            1             1 December/2013.6
## 395                                            1             1 December/2013.6
## 396                                            1             1 December/2013.6
## 397                                           -1             1 December/2013.6
## 398                                           -1             1 December/2013.6
## 399                                            1             1 December/2013.6
## 400                                           -1             1 December/2013.6
## 401                                           -1             1 December/2013.6
## 402                                           -1             1 December/2013.6
## 403                                           -1             1 December/2013.6
## 404                                           -1             1 December/2013.6
## 405                                           -1             1 December/2013.6
## 406                                           -1             1 December/2013.6
## 407                                            1             1 December/2013.6
## 408                                           -1             1 December/2013.6
## 409                                            1             1 December/2013.6
## 410                                            1             1 December/2013.6
## 411                                            1            -1 December/2013.6
## 412                                            1            -1 December/2013.6
## 413                                            1            -1 December/2013.6
## 414                                            1            -1 December/2013.6
## 415                                           -1            -1 December/2013.6
## 416                                            1            -1 December/2013.6
## 417                                           -1            -1 December/2013.6
## 418                                            1            -1 December/2013.6
## 419                                            1            -1 December/2013.6
## 420                                            1            -1 December/2013.6
## 421                                            1            -1 December/2013.6
## 422                                           -1            -1 December/2013.6
## 423                                            1            -1 December/2013.6
## 424                                            1            -1 December/2013.6
## 425                                           -1            -1 December/2013.6
## 426                                            1            -1 December/2013.6
## 427                                            1            -1 December/2013.6
## 428                                           -1            -1 December/2013.6
## 429                                            1            -1 December/2013.6
## 430                                           -1            -1 December/2013.6
## 431                                           -1            -1 December/2013.6
## 432                                           -1            -1 December/2013.6
## 433                                            1            -1 December/2013.6
## 434                                           -1             1 December/2013.6
## 435                                            1             1 December/2013.6
## 436                                           -1             1 December/2013.6
## 437                                            1             1 December/2013.6
## 438                                            1             1 December/2013.6
## 439                                           -1             1 December/2013.6
## 440                                            1             1 December/2013.6
## 441                                           -1             1 December/2013.6
## 442                                           -1             1 December/2013.6
## 443                                           -1             1 December/2013.6
## 444                                            1             1 December/2013.6
## 445                                            1             1 December/2013.6
## 446                                           -1             1 December/2013.6
## 447                                            1             1 December/2013.6
## 448                                           -1             1 December/2013.6
## 449                                            1             1 December/2013.6
## 450                                           -1             1 December/2013.6
## 451                                            1             1 December/2013.6
## 452                                           -1             1 December/2013.6
## 453                                           -1             1 December/2013.6
## 454                                            1             1 December/2013.6
## 455                                            1             1 December/2013.6
## 456                                           -1             1 December/2013.6
## 457                                            1             1 December/2013.6
## 458                                           -1             1 December/2013.6
## 459                                            1             1 December/2013.6
## 460                                            1             1 December/2013.6
## 461                                            1             1 December/2013.6
## 462                                           -1             1 December/2013.6
## 463                                           -1            -1 December/2013.6
## 464                                            1            -1 December/2013.6
## 465                                            1            -1 December/2013.6
## 466                                           -1            -1 December/2013.6
## 467                                            1            -1 December/2013.6
## 468                                            1            -1 December/2013.6
## 469                                           -1            -1 December/2013.6
## 470                                            1            -1 December/2013.6
## 471                                            1            -1 December/2013.6
## 472                                           -1            -1 December/2013.6
## 473                                           -1            -1 December/2013.6
## 474                                            1            -1 December/2013.6
## 475                                           -1            -1 December/2013.6
## 476                                           -1            -1 December/2013.6
## 477                                           -1            -1 December/2013.6
## 478                                            1            -1 December/2013.6
## 479                                           -1            -1 December/2013.6
## 480                                            1            -1 December/2013.6
## 481                                           -1            -1 December/2013.6
## 482                                           -1            -1 December/2013.6
## 483                                            1            -1 December/2013.6
## 484                                           -1            -1 December/2013.6
## 485                                            1            -1 December/2013.6
## 486                                           -1            -1 December/2013.6
## 487                                            1            -1 December/2013.6
## 488                                            1            -1 December/2013.6
## 489                                            1            -1 December/2013.6
## 490                                           -1            -1 December/2013.6
## 491                                            1            -1 December/2013.6
## 492                                            1            -1 December/2013.6
## 493                                           -1            -1 December/2013.6
## 494                                            1            -1 December/2013.6
## 495                                            1             1 December/2013.6
## 496                                           -1             1 December/2013.6
## 497                                            1             1 December/2013.6
## 498                                            1             1 December/2013.6
## 499                                            1             1 December/2013.6
## 500                                           -1             1 December/2013.6
## 501                                            1             1 December/2013.6
## 502                                           -1             1 December/2013.6
## 503                                            1             1 December/2013.6
## 504                                            1             1 December/2013.6
## 505                                           -1             1 December/2013.6
## 506                                            1             1 December/2013.6
## 507                                           -1             1 December/2013.6
## 508                                            1             1 December/2013.6
## 509                                           -1             1 December/2013.6
## 510                                           -1             1 December/2013.6
## 511                                           -1             1 December/2013.6
## 512                                            1             1 December/2013.6
## 513                                           -1             1 December/2013.6
## 514                                           -1             1 December/2013.6
## 515                                           -1             1 December/2013.6
## 516                                            1             1 December/2013.6
## 517                                            1             1 December/2013.6
## 518                                            1             1 December/2013.6
## 519                                           -1             1 December/2013.6
## 520                                           -1             1 December/2013.6
## 521                                           -1             1 December/2013.6
## 522                                           -1             1 December/2013.6
## 523                                           -1             1 December/2013.6
## 524                                            1             1 December/2013.6
## 525                                           -1             1 December/2013.6
## 526                                           -1             1 December/2013.6
## 527                                            1             1 December/2013.6
## 528                                           -1             1 December/2013.6
## 529                                           -1             1 December/2013.6
## 530                                           -1             1 December/2013.6
## 531                                           -1             1 December/2013.6
## 532                                           -1             1 December/2013.6
## 533                                            1             1 December/2013.6
## 534                                           -1             1 December/2013.6
## 535                                            1             1 December/2013.6
## 536                                           -1             1 December/2013.6
## 537                                            1             1 December/2013.6
## 538                                            1             1 December/2013.6
## 539                                            1             1 December/2013.6
## 540                                           -1             1 December/2013.6
## 541                                           -1             1 December/2013.6
## 542                                           -1             1 December/2013.6
## 543                                            1             1 December/2013.6
## 544                                           -1             1 December/2013.6
## 545                                            1             1 December/2013.6
## 546                                           -1             1 December/2013.6
## 547                                            1             1 December/2013.6
## 548                                            1             1 December/2013.6
## 549                                            1             1 December/2013.6
## 550                                           -1             1 December/2013.6
## 551                                           -1             1 December/2013.6
## 552                                            1             1 December/2013.6
## 553                                           -1             1 December/2013.6
## 554                                           -1             1 December/2013.6
## 555                                           -1             1 December/2013.6
## 556                                            1             1 December/2013.6
## 557                                            1             1 December/2013.6
## 558                                           -1             1 December/2013.6
## 559                                           -1             1 December/2013.6
## 560                                            1             1 December/2013.6
## 561                                           -1             1 December/2013.6
## 562                                           -1             1 December/2013.6
## 563                                           -1             1 December/2013.6
## 564                                           -1             1 December/2013.6
## 565                                           -1             1 December/2013.6
## 566                                           -1             1 December/2013.6
## 567                                           -1             1 December/2013.6
## 568                                           -1             1 December/2013.6
## 569                                           -1             1 December/2013.6
## 570                                            1             1 December/2013.6
## 571                                           -1             1 December/2013.6
## 572                                           -1             1 December/2013.6
## 573                                            1             1 December/2013.6
## 574                                           -1             1 December/2013.6
## 575                                           -1             1 December/2013.6
## 576                                            1             1 December/2013.6
## 577                                           -1             1 December/2013.6
## 578                                           -1             1 December/2013.6
## 579                                            1             1 December/2013.6
## 580                                            1             1 December/2013.6
## 581                                            1             1 December/2013.6
## 582                                            1             1 December/2013.6
## 583                                           -1             1 December/2013.6
## 584                                           -1             1 December/2013.6
## 585                                            1             1 December/2013.6
## 586                                            1             1 December/2013.6
## 587                                           -1             1 December/2013.6
## 588                                           -1             1 December/2013.6
## 589                                            1             1 December/2013.6
## 590                                           -1             1 December/2013.6
## 591                                            1             1 December/2013.6
## 592                                            1             1 December/2013.6
## 593                                           -1             1 December/2013.6
## 594                                           -1             1 December/2013.6
## 595                                            1             1 December/2013.6
## 596                                            1             1 December/2013.6
## 597                                            1             1 December/2013.6
## 598                                            1             1 December/2013.6
## 599                                            1             1 December/2013.6
## 600                                            1             1 December/2013.6
## 601                                           -1             1 December/2013.6
## 602                                            1             1 December/2013.6
## 603                                            1             1 December/2013.6
## 604                                           -1             1 December/2013.6
## 605                                           -1             1 December/2013.6
## 606                                           -1             1 December/2013.6
## 607                                           -1             1 December/2013.6
## 608                                            1             1 December/2013.6
## 609                                            1             1 December/2013.6
## 610                                           -1             1 December/2013.6
## 611                                            1             1 December/2013.6
## 612                                            1             1 December/2013.6
## 613                                            1             1 December/2013.6
## 614                                            1             1 December/2013.6
## 615                                            1             1 December/2013.6
## 616                                           -1             1 December/2013.6
## 617                                           -1             1 December/2013.6
## 618                                           -1             1 December/2013.6
## 619                                            1             1 December/2013.6
## 620                                            1             1 December/2013.6
## 621                                           -1             1 December/2013.6
## 622                                           -1             1 December/2013.6
## 623                                           -1             1 December/2013.6
## 624                                           -1             1 December/2013.6
## 625                                           -1             1 December/2013.6
## 626                                           -1             1 December/2013.6
## 627                                            1             1 December/2013.6
## 628                                            1             1 December/2013.6
## 629                                            1             1 December/2013.6
## 630                                           -1             1 December/2013.6
## 631                                           -1             1 December/2013.6
## 632                                            1             1 December/2013.6
## 633                                           -1             1 December/2013.6
## 634                                           -1             1 December/2013.6
## 635                                            1             1 December/2013.6
## 636                                           -1             1 December/2013.6
## 637                                           -1             1 December/2013.6
## 638                                           -1             1 December/2013.6
## 639                                            1             1 December/2013.6
## 640                                           -1             1 December/2013.6
## 641                                            1             1 December/2013.6
## 642                                           -1             1 December/2013.6
## 643                                           -1             1 December/2013.6
## 644                                           -1             1 December/2013.6
## 645                                           -1             1 December/2013.6
## 646                                            1             1 December/2013.6
## 647                                           -1             1 December/2013.6
## 648                                           -1             1 December/2013.6
## 649                                           -1             1 December/2013.6
## 650                                            1             1 December/2013.6
## 651                                            1             1 December/2013.6
## 652                                            1             1 December/2013.6
## 653                                           -1             1 December/2013.6
## 654                                           -1             1 December/2013.6
## 655                                           -1             1 December/2013.6
## 656                                           -1             1 December/2013.6
## 657                                           -1             1 December/2013.6
## 658                                           -1             1 December/2013.6
## 659                                           -1             1 December/2013.6
## 660                                           -1             1 December/2013.6
## 661                                            1             1 December/2013.6
## 662                                           -1             1 December/2013.6
## 663                                            1             1 December/2013.6
## 664                                            1             1 December/2013.6
## 665                                           -1             1 December/2013.6
## 666                                           -1             1 December/2013.6
## 667                                            1             1 December/2013.6
## 668                                           -1             1 December/2013.6
## 669                                           -1             1 December/2013.6
## 670                                           -1            -1 December/2013.6
## 671                                            1            -1 December/2013.6
## 672                                            1            -1 December/2013.6
## 673                                           -1            -1 December/2013.6
## 674                                           -1            -1 December/2013.6
## 675                                            1            -1 December/2013.6
## 676                                           -1            -1 December/2013.6
## 677                                            1            -1 December/2013.6
## 678                                            1            -1 December/2013.6
## 679                                           -1            -1 December/2013.6
## 680                                            1            -1 December/2013.6
## 681                                            1            -1 December/2013.6
## 682                                            1            -1 December/2013.6
## 683                                           -1            -1 December/2013.6
## 684                                           -1            -1 December/2013.6
## 685                                           -1            -1 December/2013.6
## 686                                            1            -1 December/2013.6
## 687                                            1            -1 December/2013.6
## 688                                            1            -1 December/2013.6
## 689                                            1            -1 December/2013.6
## 690                                            1            -1 December/2013.6
## 691                                           -1            -1 December/2013.6
## 692                                            1            -1 December/2013.6
## 693                                           -1            -1 December/2013.6
## 694                                            1            -1 December/2013.6
## 695                                           -1            -1 December/2013.6
## 696                                           -1            -1 December/2013.6
## 697                                            1            -1 December/2013.6
## 698                                           -1            -1 December/2013.6
## 699                                           -1            -1 December/2013.6
## 700                                            1            -1 December/2013.6
## 701                                           -1            -1 December/2013.6
## 702                                           -1            -1 December/2013.6
## 703                                           -1            -1 December/2013.6
## 704                                            1            -1 December/2013.6
## 705                                            1             1      April/2014
## 706                                           -1             1      April/2014
## 707                                           -1             1      April/2014
## 708                                           -1             1      April/2014
## 709                                            1             1      April/2014
## 710                                            1             1      April/2014
## 711                                            1             1      April/2014
## 712                                            1             1      April/2014
## 713                                           -1             1      April/2014
## 714                                            1             1      April/2014
## 715                                           -1             1      April/2014
## 716                                            1             1      April/2014
## 717                                            1             1      April/2014
## 718                                           -1             1      April/2014
## 719                                            1             1      April/2014
## 720                                            1             1      April/2014
## 721                                           -1             1      April/2014
## 722                                            1             1      April/2014
## 723                                            1             1      April/2014
## 724                                            1             1      April/2014
## 725                                           -1             1      April/2014
## 726                                           -1             1      April/2014
## 727                                            1             1      April/2014
## 728                                            1             1      April/2014
## 729                                           -1             1      April/2014
## 730                                           -1             1      April/2014
## 731                                            1             1      April/2014
## 732                                            1             1      April/2014
## 733                                            1             1      April/2014
## 734                                           -1             1      April/2014
## 735                                            1             1      April/2014
## 736                                            1             1      April/2014
## 737                                            1             1      April/2014
## 738                                           -1             1      April/2014
## 739                                            1             1      April/2014
## 740                                            1             1      April/2014
## 741                                            1             1      April/2014
## 742                                           -1             1      April/2014
## 743                                            1             1      April/2014
## 744                                           -1             1      April/2014
## 745                                           -1             1      April/2014
## 746                                            1             1      April/2014
## 747                                           -1             1      April/2014
## 748                                            1             1      April/2014
## 749                                           -1             1      April/2014
## 750                                            1             1      April/2014
## 751                                           -1             1      April/2014
## 752                                           -1             1      April/2014
## 753                                           -1            -1      April/2014
## 754                                           -1            -1      April/2014
## 755                                           -1            -1      April/2014
## 756                                            1            -1      April/2014
## 757                                            1            -1      April/2014
## 758                                            1            -1      April/2014
## 759                                            1            -1      April/2014
## 760                                           -1            -1      April/2014
## 761                                            1            -1      April/2014
## 762                                           -1            -1      April/2014
## 763                                           -1            -1      April/2014
## 764                                            1            -1      April/2014
## 765                                           -1            -1      April/2014
## 766                                            1            -1      April/2014
## 767                                           -1            -1      April/2014
## 768                                           -1            -1      April/2014
## 769                                           -1            -1      April/2014
## 770                                            1            -1      April/2014
## 771                                            1            -1      April/2014
## 772                                            1            -1      April/2014
## 773                                            1            -1      April/2014
## 774                                            1            -1      April/2014
## 775                                            1            -1      April/2014
## 776                                            1            -1      April/2014
## 777                                            1            -1      April/2014
## 778                                            1            -1      April/2014
## 779                                            1            -1      April/2014
## 780                                            1            -1      April/2014
## 781                                            1            -1      April/2014
## 782                                            1            -1      April/2014
## 783                                            1            -1      April/2014
## 784                                            1            -1      April/2014
## 785                                            1            -1      April/2014
## 786                                            1            -1      April/2014
## 787                                            1            -1      April/2014
## 788                                            1            -1      April/2014
## 789                                            1            -1      April/2014
## 790                                            1            -1      April/2014
## 791                                            1            -1      April/2014
## 792                                            1            -1      April/2014
## 793                                            1            -1      April/2014
## 794                                            1            -1      April/2014
## 795                                            1            -1      April/2014
## 796                                            1            -1      April/2014
## 797                                            1            -1      April/2014
## 798                                            1            -1      April/2014
## 799                                            1            -1      April/2014
## 800                                            1            -1      April/2014
## 801                                           -1            -1      April/2014
## 802                                            1            -1      April/2014
## 803                                           -1            -1      April/2014
## 804                                            1            -1      April/2014
## 805                                            1            -1      April/2014
## 806                                            1            -1      April/2014
## 807                                            1            -1      April/2014
## 808                                           -1            -1      April/2014
## 809                                           -1            -1      April/2014
## 810                                           -1             1      April/2014
## 811                                            1             1      April/2014
## 812                                           -1             1      April/2014
## 813                                           -1             1      April/2014
## 814                                            1             1      April/2014
## 815                                            1             1      April/2014
## 816                                           -1             1      April/2014
## 817                                            1             1      April/2014
## 818                                           -1             1      April/2014
## 819                                           -1             1      April/2014
## 820                                            1             1      April/2014
## 821                                           -1             1      April/2014
## 822                                           -1             1      April/2014
## 823                                            1             1      April/2014
## 824                                            1             1      April/2014
## 825                                           -1             1      April/2014
## 826                                            1             1      April/2014
## 827                                            1             1      April/2014
## 828                                           -1             1      April/2014
## 829                                            1             1      April/2014
## 830                                           -1             1      April/2014
## 831                                            1             1      April/2014
## 832                                            1             1      April/2014
## 833                                            1             1      April/2014
## 834                                           -1             1      April/2014
## 835                                            1             1      April/2014
## 836                                            1             1      April/2014
## 837                                            1             1      April/2014
## 838                                           -1             1      April/2014
## 839                                            1             1      April/2014
## 840                                            1             1      April/2014
## 841                                            1             1      April/2014
## 842                                           -1             1      April/2014
## 843                                            1             1      April/2014
## 844                                           -1             1      April/2014
## 845                                            1             1      April/2014
## 846                                            1             1      April/2014
## 847                                           -1             1      April/2014
## 848                                            1             1      April/2014
## 849                                            1             1      April/2014
## 850                                           -1             1      April/2014
## 851                                            1             1      April/2014
## 852                                            1             1      April/2014
## 853                                            1             1      April/2014
## 854                                            1             1      April/2014
## 855                                           -1             1      April/2014
## 856                                           -1             1      April/2014
## 857                                            1             1      April/2014
## 858                                           -1             1      April/2014
## 859                                           -1             1      April/2014
## 860                                            1             1      April/2014
## 861                                            1             1      April/2014
## 862                                           -1             1      April/2014
## 863                                           -1             1      April/2014
## 864                                            1             1      April/2014
## 865                                            1             1      April/2014
## 866                                            1             1      April/2014
## 867                                            1             1      April/2014
## 868                                            1            -1      April/2014
## 869                                           -1            -1      April/2014
## 870                                           -1            -1      April/2014
## 871                                            1            -1      April/2014
## 872                                           -1            -1      April/2014
## 873                                           -1            -1      April/2014
## 874                                            1            -1      April/2014
## 875                                           -1            -1      April/2014
## 876                                            1            -1      April/2014
## 877                                            1            -1      April/2014
## 878                                            1            -1      April/2014
## 879                                            1            -1      April/2014
## 880                                            1            -1      April/2014
## 881                                            1            -1      April/2014
## 882                                            1            -1      April/2014
## 883                                           -1            -1      April/2014
## 884                                            1            -1      April/2014
## 885                                           -1            -1      April/2014
## 886                                           -1            -1      April/2014
## 887                                           -1            -1      April/2014
## 888                                           -1            -1      April/2014
## 889                                            1            -1      April/2014
## 890                                            1            -1      April/2014
## 891                                           -1            -1      April/2014
## 892                                           -1            -1      April/2014
## 893                                            1            -1      April/2014
## 894                                           -1            -1      April/2014
## 895                                            1            -1      April/2014
## 896                                           -1            -1      April/2014
## 897                                           -1            -1      April/2014
## 898                                           -1            -1      April/2014
## 899                                           -1            -1      April/2014
## 900                                           -1            -1      April/2014
## 901                                            1            -1      April/2014
## 902                                            1            -1      April/2014
## 903                                           -1            -1      April/2014
## 904                                            1            -1      April/2014
## 905                                           -1            -1      April/2014
## 906                                           -1            -1      April/2014
## 907                                            1            -1      April/2014
## 908                                           -1            -1      April/2014
## 909                                            1            -1      April/2014
## 910                                           -1            -1      April/2014
## 911                                           -1            -1      April/2014
## 912                                            1            -1      April/2015
## 913                                           -1            -1      April/2015
## 914                                           -1            -1      April/2015
## 915                                            1            -1      April/2015
## 916                                           -1            -1      April/2015
## 917                                            1            -1      April/2015
## 918                                           -1            -1      April/2015
## 919                                           -1            -1      April/2015
## 920                                           -1            -1      April/2015
## 921                                            1            -1      April/2015
## 922                                            1            -1      April/2015
## 923                                            1            -1      April/2015
## 924                                            1            -1      April/2015
## 925                                            1            -1      April/2015
## 926                                            1            -1      April/2015
## 927                                            1            -1      April/2015
## 928                                           -1            -1      April/2015
## 929                                            1            -1      April/2015
## 930                                           -1            -1      April/2015
## 931                                            1            -1      April/2015
## 932                                           -1            -1      April/2015
## 933                                           -1            -1      April/2015
## 934                                            1            -1      April/2015
## 935                                           -1            -1      April/2015
## 936                                            1            -1      April/2015
## 937                                           -1            -1      April/2015
## 938                                           -1            -1      April/2015
## 939                                           -1            -1      April/2015
## 940                                           -1            -1      April/2015
## 941                                           -1            -1      April/2015
## 942                                            1            -1      April/2015
## 943                                           -1            -1      April/2015
## 944                                           -1            -1      April/2015
## 945                                            1            -1      April/2015
## 946                                            1            -1      April/2015
## 947                                           -1            -1      April/2015
## 948                                            1            -1      April/2015
## 949                                           -1            -1      April/2015
## 950                                            1            -1      April/2015
## 951                                            1            -1      April/2015
## 952                                            1            -1      April/2015
## 953                                            1            -1      April/2015
## 954                                            1            -1      April/2015
## 955                                           -1            -1      April/2015
## 956                                            1            -1      April/2015
## 957                                           -1            -1      April/2015
## 958                                            1            -1      April/2015
## 959                                           -1            -1      April/2015
## 960                                           -1            -1      April/2015
## 961                                            1            -1      April/2015
## 962                                            1            -1      April/2015
## 963                                           -1             1      April/2015
## 964                                           -1             1      April/2015
## 965                                            1             1      April/2015
## 966                                           -1             1      April/2015
## 967                                            1             1      April/2015
## 968                                           -1             1      April/2015
## 969                                           -1             1      April/2015
## 970                                            1             1      April/2015
## 971                                           -1             1      April/2015
## 972                                            1             1      April/2015
## 973                                           -1             1      April/2015
## 974                                           -1             1      April/2015
## 975                                           -1             1      April/2015
## 976                                            1             1      April/2015
## 977                                           -1             1      April/2015
## 978                                            1             1      April/2015
## 979                                            1             1      April/2015
## 980                                            1             1      April/2015
## 981                                            1             1      April/2015
## 982                                           -1             1      April/2015
## 983                                            1             1      April/2015
## 984                                           -1             1      April/2015
## 985                                           -1             1      April/2015
## 986                                            1             1      April/2015
## 987                                            1             1      April/2015
## 988                                            1             1      April/2015
## 989                                           -1             1      April/2015
## 990                                            1             1      April/2015
## 991                                           -1             1      April/2015
## 992                                           -1             1      April/2015
## 993                                           -1             1      April/2015
## 994                                           -1             1      April/2015
## 995                                            1             1      April/2015
## 996                                            1             1      April/2015
## 997                                            1             1      April/2015
## 998                                            1             1      April/2015
## 999                                            1             1      April/2015
## 1000                                          -1             1      April/2015
## 1001                                           1             1      April/2015
## 1002                                          -1             1      April/2015
## 1003                                          -1             1      April/2015
## 1004                                           1             1      April/2015
## 1005                                           1             1      April/2015
## 1006                                          -1             1      April/2015
## 1007                                           1             1      April/2015
## 1008                                           1             1      April/2015
## 1009                                          -1             1      April/2015
## 1010                                           1             1      April/2015
## 1011                                          -1             1      April/2015
## 1012                                           1             1      April/2015
## 1013                                          -1             1      April/2015
## 1014                                          -1             1      April/2015
## 1015                                           1             1      April/2015
## 1016                                           1             1      April/2015
## 1017                                          -1             1      April/2015
## 1018                                          -1             1      April/2015
## 1019                                           1             1      April/2015
## 1020                                           1             1      April/2015
## 1021                                           1             1      April/2015
## 1022                                          -1             1      April/2015
## 1023                                          -1             1      April/2015
## 1024                                          -1             1      April/2015
## 1025                                           1             1      April/2015
## 1026                                           1             1      April/2015
## 1027                                          -1             1      April/2015
## 1028                                          -1             1      April/2015
## 1029                                          -1             1      April/2015
## 1030                                           1             1      April/2015
## 1031                                          -1             1      April/2015
## 1032                                          -1             1      April/2015
## 1033                                           1             1      April/2015
## 1034                                          -1             1      April/2015
## 1035                                           1             1      April/2015
## 1036                                           1             1      April/2015
## 1037                                           1             1      April/2015
## 1038                                          -1             1      April/2015
## 1039                                           1             1      April/2015
## 1040                                          -1             1      April/2015
## 1041                                           1             1      April/2015
## 1042                                           1             1      April/2015
## 1043                                           1             1      April/2015
## 1044                                           1             1      April/2015
## 1045                                          -1             1      April/2015
## 1046                                          -1             1      April/2015
## 1047                                          -1             1      April/2015
## 1048                                           1             1      April/2015
## 1049                                          -1             1      April/2015
## 1050                                          -1             1      April/2015
## 1051                                          -1             1      April/2015
## 1052                                           1            -1      April/2015
## 1053                                          -1            -1      April/2015
## 1054                                           1            -1      April/2015
## 1055                                           1            -1      April/2015
## 1056                                           1            -1      April/2015
## 1057                                           1            -1      April/2015
## 1058                                           1            -1      April/2015
## 1059                                           1            -1      April/2015
## 1060                                           1            -1      April/2015
## 1061                                           1            -1      April/2015
## 1062                                           1            -1      April/2015
## 1063                                           1            -1      April/2015
## 1064                                          -1             1   December/2016
## 1065                                           1             1   December/2016
## 1066                                          -1             1   December/2016
## 1067                                          -1             1   December/2016
## 1068                                           1             1   December/2016
## 1069                                           1             1   December/2016
## 1070                                           1             1   December/2016
## 1071                                           1             1   December/2016
## 1072                                           1             1   December/2016
## 1073                                           1             1   December/2016
## 1074                                          -1             1   December/2016
## 1075                                           1             1   December/2016
## 1076                                          -1             1   December/2016
## 1077                                          -1             1   December/2016
## 1078                        wings torn        -1             1   December/2016
## 1079                        wings torn         1             1   December/2016
## 1080                        wings torn        -1             1   December/2016
## 1081                                           1             1   December/2016
## 1082                                           1             1   December/2016
## 1083                                          -1             1   December/2016
## 1084                        wings torn         1             1   December/2016
## 1085                                           1             1   December/2016
## 1086                        wings torn        -1             1   December/2016
## 1087                                          -1             1   December/2016
## 1088                        wings torn        -1             1   December/2016
## 1089                        wings torn        -1             1   December/2016
## 1090                        wings torn        -1             1   December/2016
## 1091                        wings torn         1             1   December/2016
## 1092                        wings torn        -1             1   December/2016
## 1093                        wings torn        -1             1   December/2016
## 1094                                           1             1   December/2016
## 1095                                           1             1   December/2016
## 1096                        wings torn        -1             1   December/2016
## 1097                                           1             1   December/2016
## 1098                                          -1             1   December/2016
## 1099                                          -1             1   December/2016
## 1100                                          -1             1   December/2016
## 1101                                           1             1   December/2016
## 1102                        wings torn        -1             1   December/2016
## 1103                                           1             1   December/2016
## 1104                        wings torn        -1             1   December/2016
## 1105                                           1             1   December/2016
## 1106                                           1             1   December/2016
## 1107                                           1             1   December/2016
## 1108                        wings torn         1             1   December/2016
## 1109                                           1             1   December/2016
## 1110                                          -1             1   December/2016
## 1111                        wings torn        -1             1   December/2016
## 1112                        wings torn         1             1   December/2016
## 1113                         tips torn         1             1   December/2016
## 1114                                           1             1   December/2016
## 1115                                          -1             1   December/2016
## 1116                         tips torn        -1             1   December/2016
## 1117                         tips torn        -1             1   December/2016
## 1118                         tips torn        -1             1   December/2016
## 1119                                           1             1   December/2016
## 1120                                          -1             1   December/2016
## 1121                                          -1             1   December/2016
## 1122                                          -1             1   December/2016
## 1123                                          -1             1   December/2016
## 1124                                          -1             1   December/2016
## 1125                                          -1             1   December/2016
## 1126                                           1             1   December/2016
## 1127                                           1             1   December/2016
## 1128                                          -1             1   December/2016
## 1129                                          -1             1   December/2016
## 1130                                          -1             1   December/2016
## 1131                                          -1             1   December/2016
## 1132                                          -1             1   December/2016
## 1133                                          -1             1   December/2016
## 1134                        wings torn         1            -1   December/2016
## 1135                        wings torn         1            -1   December/2016
## 1136                        wings torn        -1            -1   December/2016
## 1137                                          -1            -1   December/2016
## 1138                        wings torn        -1            -1   December/2016
## 1139                                           1            -1   December/2016
## 1140                        wings torn        -1            -1   December/2016
## 1141                        wings torn         1            -1   December/2016
## 1142                                           1            -1   December/2016
## 1143                                           1            -1   December/2016
## 1144                                           1            -1   December/2016
## 1145                                           1            -1   December/2016
## 1146                                           1            -1   December/2016
## 1147                                          -1            -1   December/2016
## 1148                                          -1            -1   December/2016
## 1149                                          -1            -1   December/2016
## 1150                        wings torn        -1            -1   December/2016
## 1151                        wings torn        -1            -1   December/2016
## 1152                                           1            -1   December/2016
## 1153                        wings torn        -1            -1   December/2016
## 1154                                          -1            -1   December/2016
## 1155                                           1            -1   December/2016
## 1156                                          -1            -1   December/2016
## 1157                                           1            -1   December/2016
## 1158                                           1            -1   December/2016
## 1159                                          -1            -1   December/2016
## 1160                                           1            -1   December/2016
## 1161                                           1            -1   December/2016
## 1162                        wings torn        -1            -1   December/2016
## 1163                        wings torn        -1            -1   December/2016
## 1164                                          -1            -1   December/2016
## 1165                        wings torn        -1            -1   December/2016
## 1166                        wings torn         1            -1   December/2016
## 1167                                           1            -1   December/2016
## 1168                                           1            -1   December/2016
## 1169                                          -1            -1   December/2016
## 1170                                           1            -1   December/2016
## 1171                  malformed thorax        -1            -1   December/2016
## 1172                                           1            -1   December/2016
## 1173                        wings torn        -1            -1   December/2016
## 1174                                           1            -1   December/2016
## 1175                                           1            -1   December/2016
## 1176                        wings torn         1            -1   December/2016
## 1177                                           1            -1   December/2016
## 1178                                          -1            -1   December/2016
## 1179                                          -1            -1   December/2016
## 1180                                          -1            -1   December/2016
## 1181                                          -1            -1   December/2016
## 1182                        wings torn         1            -1   December/2016
## 1183                        wings torn        -1            -1   December/2016
## 1184                        wings torn        -1            -1   December/2016
## 1185                                          -1            -1   December/2016
## 1186                                          -1            -1   December/2016
## 1187                                           1            -1   December/2016
## 1188                                          -1            -1   December/2016
## 1189                                          -1            -1   December/2016
## 1190                                          -1            -1   December/2016
## 1191                                          -1            -1   December/2016
## 1192                                          -1            -1   December/2016
## 1193                                           1            -1   December/2016
## 1194                                           1            -1   December/2016
## 1195                                           1            -1   December/2016
## 1196                                           1            -1   December/2016
## 1197                                          -1            -1   December/2016
## 1198                        wings torn         1             1   December/2016
## 1199                        wings torn         1             1   December/2016
## 1200                        wings torn        -1             1   December/2016
## 1201                        wings torn         1             1   December/2016
## 1202                        wings torn        -1             1   December/2016
## 1203                        wings torn        -1             1   December/2016
## 1204                        wings torn         1             1   December/2016
## 1205                                           1             1   December/2016
## 1206                        wings torn        -1             1   December/2016
## 1207                                          -1             1   December/2016
## 1208                        wings torn         1             1   December/2016
## 1209                        wings torn        -1             1   December/2016
## 1210                        wings torn        -1             1   December/2016
## 1211                                          -1             1   December/2016
## 1212                        wings torn        -1             1   December/2016
## 1213                        wings torn        -1             1   December/2016
## 1214                        wings torn         1             1   December/2016
## 1215                                           1             1   December/2016
## 1216                        wings torn        -1             1   December/2016
## 1217                        wings torn         1             1   December/2016
## 1218                        wings torn        -1             1   December/2016
## 1219                        wings torn        -1             1   December/2016
## 1220                                           1             1   December/2016
## 1221                        wings torn        -1             1   December/2016
## 1222                        wings torn        -1             1   December/2016
## 1223                        wings torn        -1             1   December/2016
## 1224                                          -1             1   December/2016
## 1225                        wings torn        -1             1   December/2016
## 1226                        wings torn        -1             1   December/2016
## 1227                        wings torn        -1             1   December/2016
## 1228                                          -1             1   December/2016
## 1229                                          -1             1   December/2016
## 1230                         tips torn         1             1   December/2016
## 1231                                          -1             1   December/2016
## 1232                        wings torn        -1             1   December/2016
## 1233                                          -1             1   December/2016
## 1234                                           1             1   December/2016
## 1235                                           1             1   December/2016
## 1236                                           1             1   December/2016
## 1237                                           1             1   December/2016
## 1238                                           1             1   December/2016
## 1239                                           1             1   December/2016
## 1240                                          -1             1   December/2016
## 1241                                           1             1   December/2016
## 1242                                           1             1   December/2016
## 1243                                           1             1   December/2016
## 1244                                           1             1   December/2016
## 1245                                          -1             1   December/2016
## 1246                                          -1             1   December/2016
## 1247                                           1             1   December/2016
## 1248                                          -1             1   December/2016
## 1249                                          -1             1   December/2016
## 1250                                           1             1   December/2016
## 1251                                           1             1   December/2016
## 1252                                           1             1   December/2016
## 1253                                           1             1   December/2016
## 1254                                          -1             1   December/2016
## 1255                                          -1             1   December/2016
## 1256                                           1             1   December/2016
## 1257                                          -1             1   December/2016
## 1258                                          -1             1   December/2016
## 1259                                           1             1   December/2016
## 1260                                           1             1   December/2016
## 1261                                           1             1   December/2016
## 1262                                           1             1   December/2016
## 1263                                           1             1   December/2016
## 1264                                          -1             1   December/2016
## 1265                                           1             1   December/2016
## 1266                                          -1             1   December/2016
## 1267                                          -1             1   December/2016
## 1268                                           1             1   December/2016
## 1269                                           1             1   December/2016
## 1270                                          -1             1   December/2016
## 1271                                           1             1   December/2016
## 1272                                          -1             1   December/2016
## 1273                                          -1             1   December/2016
## 1274                                          -1             1   December/2016
## 1275                                          -1             1   December/2016
## 1276                                          -1             1   December/2016
## 1277                                          -1             1   December/2016
## 1278                                          -1            -1   December/2016
## 1279                                          -1            -1   December/2016
## 1280                                          -1            -1   December/2016
## 1281                                          -1            -1   December/2016
## 1282                                           1            -1   December/2016
## 1283                                          -1            -1   December/2016
## 1284                                           1            -1   December/2016
## 1285                                          -1            -1   December/2016
## 1286                                           1            -1   December/2016
## 1287                                           1            -1   December/2016
## 1288                                           1            -1   December/2016
## 1289                                           1            -1   December/2016
## 1290                                          -1            -1   December/2016
## 1291                                           1            -1   December/2016
## 1292                                           1            -1   December/2016
## 1293                                           1            -1   December/2016
## 1294                                          -1            -1   December/2016
## 1295                                           1            -1   December/2016
## 1296                                           1            -1   December/2016
## 1297                                           1            -1   December/2016
## 1298                                           1            -1   December/2016
## 1299                                           1            -1   December/2016
## 1300                                          -1            -1   December/2016
## 1301                                           1            -1   December/2016
## 1302                                          -1            -1   December/2016
## 1303                                          -1            -1   December/2016
## 1304                                          -1            -1   December/2016
## 1305                                           1            -1   December/2016
## 1306                                           1            -1   December/2016
## 1307                                          -1            -1   December/2016
## 1308                                          -1            -1   December/2016
## 1309                                          -1            -1   December/2016
## 1310                                          -1            -1   December/2016
## 1311                                          -1            -1   December/2016
## 1312                                          -1            -1   December/2016
## 1313                                           1            -1   December/2016
## 1314                                          -1            -1   December/2016
## 1315                                          -1             1     August/2017
## 1316                                          -1             1     August/2017
## 1317                                           1             1     August/2017
## 1318                                           1             1     August/2017
## 1319                                          -1             1     August/2017
## 1320                                          -1             1     August/2017
## 1321                                           1             1     August/2017
## 1322                                           1             1     August/2017
## 1323                                           1             1     August/2017
## 1324                                          -1             1     August/2017
## 1325                                          -1             1     August/2017
## 1326                                          -1             1     August/2017
## 1327                                           1             1     August/2017
## 1328                                           1             1     August/2017
## 1329                                          -1             1     August/2017
## 1330                                          -1             1     August/2017
## 1331                                           1             1     August/2017
## 1332                                           1             1     August/2017
## 1333                                           1             1     August/2017
## 1334                        wings torn         1             1     August/2017
## 1335                                           1             1     August/2017
## 1336                                           1             1     August/2017
## 1337                                          -1             1     August/2017
## 1338                                          -1             1     August/2017
## 1339                                          -1             1     August/2017
## 1340                                          -1             1     August/2017
## 1341                                           1             1     August/2017
## 1342                                           1             1     August/2017
## 1343                                          -1             1     August/2017
## 1344                                           1             1     August/2017
## 1345                                           1             1     August/2017
## 1346                                           1             1     August/2017
## 1347                                          -1             1     August/2017
## 1348                                          -1             1     August/2017
## 1349                                          -1             1     August/2017
## 1350                                          -1             1     August/2017
## 1351                                           1             1     August/2017
## 1352                                           1             1     August/2017
## 1353                                          -1             1     August/2017
## 1354                                          -1             1     August/2017
## 1355                                           1             1     August/2017
## 1356                                          -1             1     August/2017
## 1357                                           1             1     August/2017
## 1358                                           1             1     August/2017
## 1359                                          -1             1     August/2017
## 1360                                           1             1     August/2017
## 1361                                          -1             1     August/2017
## 1362                                          -1             1     August/2017
## 1363                                           1             1     August/2017
## 1364                                          -1             1     August/2017
## 1365                                          -1             1     August/2017
## 1366                                           1             1     August/2017
## 1367                                          -1             1     August/2017
## 1368                                           1             1     August/2017
## 1369                                           1             1     August/2017
## 1370                                          -1             1     August/2017
## 1371                                           1             1     August/2017
## 1372                                           1             1     August/2017
## 1373                                          -1             1     August/2017
## 1374                                          -1             1     August/2017
## 1375                       teal marked        -1             1     August/2017
## 1376                       teal marked         1             1     August/2017
## 1377                       teal marked         1             1     August/2017
## 1378                                          -1             1     August/2017
## 1379                       teal marked         1             1     August/2017
## 1380                                           1             1     August/2017
## 1381                                           1             1     August/2017
## 1382                                           1             1     August/2017
## 1383                       teal marked        -1             1     August/2017
## 1384                                          -1             1     August/2017
## 1385                                          -1             1     August/2017
## 1386                                           1             1     August/2017
## 1387                                          -1             1     August/2017
## 1388                                           1             1     August/2017
## 1389                 wings torn at end        -1             1     August/2017
## 1390                                          -1             1     August/2017
## 1391                                          -1             1     August/2017
## 1392                       teal marked        -1             1     August/2017
## 1393                                           1             1     August/2017
## 1394                                          -1             1     August/2017
## 1395                                          -1             1     August/2017
## 1396                                           1             1     August/2017
## 1397                                          -1             1     August/2017
## 1398                                          -1             1     August/2017
## 1399                                           1             1     August/2017
## 1400                                          -1             1     August/2017
## 1401                                          -1             1     August/2017
## 1402                                          -1             1     August/2017
## 1403                                          -1             1     August/2017
## 1404                       teal marked        -1             1     August/2017
## 1405                                           1             1     August/2017
## 1406                                           1             1     August/2017
## 1407                 wings torn at end        -1             1     August/2017
## 1408                                          -1             1     August/2017
## 1409                       teal marked         1             1     August/2017
## 1410                       teal marked         1             1     August/2017
## 1411                                          -1             1     August/2017
## 1412                       teal marked        -1             1     August/2017
## 1413                                           1             1     August/2017
## 1414                                           1             1     August/2017
## 1415                       teal marked        -1             1     August/2017
## 1416                                           1             1     August/2017
## 1417                 wings torn at end         1             1     August/2017
## 1418                                           1             1     August/2017
## 1419                       teal marked        -1             1     August/2017
## 1420                                           1             1     August/2017
## 1421   wings torn at end; teal marked          1             1     August/2017
## 1422                                          -1             1     August/2017
## 1423                                           1             1     August/2017
## 1424                       teal marked         1             1     August/2017
## 1425                       teal marked        -1             1     August/2017
## 1426                       teal marked         1             1     August/2017
## 1427                                          -1             1     August/2017
## 1428                                           1             1     August/2017
## 1429                                           1             1     August/2017
## 1430                       teal marked         1             1     August/2017
## 1431                                           1             1     August/2017
## 1432                                          -1             1     August/2017
## 1433                                           1             1     August/2017
## 1434                                           1             1     August/2017
## 1435                                           1             1     August/2017
## 1436                                          -1             1     August/2017
## 1437                                          -1             1     August/2017
## 1438                                           1             1     August/2017
## 1439                                          -1             1     August/2017
## 1440                                          -1             1     August/2017
## 1441                                          -1             1     August/2017
## 1442                                          -1             1     August/2017
## 1443                                          -1             1     August/2017
## 1444                                          -1             1     August/2017
## 1445                                           1             1     August/2017
## 1446                                           1             1     August/2017
## 1447                                          -1             1     August/2017
## 1448                                          -1             1     August/2017
## 1449                                           1             1     August/2017
## 1450                                          -1             1     August/2017
## 1451                                           1             1     August/2017
## 1452                                          -1             1     August/2017
## 1453                                           1             1     August/2017
## 1454                                          -1             1     August/2017
## 1455                                          -1             1     August/2017
## 1456                                           1             1     August/2017
## 1457                                          -1             1     August/2017
## 1458                                          -1             1     August/2017
## 1459                                           1             1     August/2017
## 1460                                           1             1     August/2017
## 1461                                          -1             1     August/2017
## 1462                                           1             1     August/2017
## 1463                                          -1             1     August/2017
## 1464                                           1             1     August/2017
## 1465                                           1             1     August/2017
## 1466                                           1             1     August/2017
## 1467                                           1             1     August/2017
## 1468                                          -1             1     August/2017
## 1469                                           1             1     August/2017
## 1470                                          -1             1     August/2017
## 1471                                          -1             1     August/2017
## 1472                                          -1             1     August/2017
## 1473                                           1             1     August/2017
## 1474                                           1             1     August/2017
## 1475                                          -1             1     August/2017
## 1476                                           1             1     August/2017
## 1477                                           1             1     August/2017
## 1478                                           1             1     August/2017
## 1479                                           1             1     August/2017
## 1480                                           1             1     August/2017
## 1481                                          -1             1     August/2017
## 1482                                           1             1     August/2017
## 1483                                           1             1     August/2017
## 1484                                           1             1     August/2017
## 1485                                           1             1     August/2017
## 1486                                           1             1     August/2017
## 1487                                          -1             1     August/2017
## 1488                                          -1             1     August/2017
## 1489                                          -1             1     August/2017
## 1490                                           1             1     August/2017
## 1491                                          -1             1     August/2017
## 1492                                          -1             1     August/2017
## 1493                                           1             1     August/2017
## 1494                                          -1             1     August/2017
## 1495                                           1             1     August/2017
## 1496                                          -1             1     August/2017
## 1497                                          -1             1     August/2017
## 1498                                           1             1     August/2017
## 1499                                          -1             1     August/2017
## 1500                                          -1             1     August/2017
## 1501                                          -1             1     August/2017
## 1502                                           1            -1     August/2017
## 1503                                          -1            -1     August/2017
## 1504                                          -1            -1     August/2017
## 1505                                          -1            -1     August/2017
## 1506                                           1            -1     August/2017
## 1507                                          -1            -1     August/2017
## 1508                                          -1            -1     August/2017
## 1509                                          -1            -1     August/2017
## 1510                                           1            -1     August/2017
## 1511                                          -1            -1     August/2017
## 1512                                           1            -1     August/2017
## 1513                                          -1            -1     August/2017
## 1514                                          -1            -1     August/2017
## 1515                                          -1            -1     August/2017
## 1516                                          -1            -1     August/2017
## 1517                                           1            -1     August/2017
## 1518                                          -1            -1     August/2017
## 1519                                          -1            -1     August/2017
## 1520                                           1            -1     August/2017
## 1521                                           1            -1     August/2017
## 1522                                           1            -1     August/2017
## 1523                                           1            -1     August/2017
## 1524                                          -1            -1     August/2017
## 1525                                          -1            -1     August/2017
## 1526                                           1            -1     August/2017
## 1527                                           1            -1     August/2017
## 1528                                          -1            -1     August/2017
## 1529                                          -1            -1     August/2017
## 1530                                           1            -1     August/2017
## 1531                                           1            -1     August/2017
## 1532                                          -1            -1     August/2017
## 1533                                          -1            -1     August/2017
## 1534                                          -1            -1     August/2017
## 1535                                          -1            -1     August/2017
## 1536                                          -1            -1     August/2017
## 1537                                          -1            -1     August/2017
## 1538                                           1            -1     August/2017
## 1539                                          -1            -1     August/2017
## 1540                                           1            -1     August/2017
## 1541                                          -1            -1     August/2017
## 1542                                          -1            -1     August/2017
## 1543                                           1            -1     August/2017
## 1544                                           1            -1     August/2017
## 1545                                           1            -1     August/2017
## 1546                                           1            -1     August/2017
## 1547                                          -1            -1     August/2017
## 1548                                           1            -1     August/2017
## 1549                                           1            -1     August/2017
## 1550                                          -1            -1     August/2017
## 1551                                          -1            -1     August/2017
## 1552                                          -1            -1     August/2017
## 1553                                           1            -1     August/2017
## 1554                                          -1            -1     August/2017
## 1555                                           1            -1     August/2017
## 1556                                          -1            -1     August/2017
## 1557                                          -1            -1     August/2017
## 1558                                           1            -1     August/2017
## 1559                                          -1            -1     August/2017
## 1560                                           1            -1     August/2017
## 1561                                          -1            -1     August/2017
## 1562                                          -1            -1     August/2017
## 1563                                          -1            -1     August/2017
## 1564                                          -1            -1     August/2017
## 1565                                          -1            -1     August/2017
## 1566                                          -1            -1     August/2017
## 1567                                           1            -1     August/2017
## 1568                                          -1            -1     August/2017
## 1569                                          -1            -1     August/2017
## 1570                                          -1            -1     August/2017
## 1571                                          -1            -1     August/2017
## 1572                                           1            -1     August/2017
## 1573                                          -1            -1     August/2017
## 1574                                           1            -1     August/2017
## 1575                                           1            -1     August/2017
## 1576                                           1            -1     August/2017
## 1577                                          -1            -1     August/2017
## 1578                                           1            -1     August/2017
## 1579                                           1            -1     August/2017
## 1580                                           1            -1     August/2017
## 1581                                          -1            -1     August/2017
## 1582                                          -1            -1     August/2017
## 1583                                           1            -1     August/2017
## 1584                                          -1            -1     August/2017
## 1585                                          -1            -1     August/2017
## 1586                                          -1            -1     August/2017
## 1587                                          -1            -1     August/2017
## 1588                                          -1            -1     August/2017
## 1589                                           1            -1     August/2017
## 1590                                          -1            -1     August/2017
## 1591                                           1            -1     August/2017
## 1592                                           1            -1     August/2017
## 1593                                          -1            -1     August/2017
## 1594                                          -1             1     August/2017
## 1595                                           1             1     August/2017
## 1596                                           1             1     August/2017
## 1597                                          -1             1     August/2017
## 1598                        wings torn         1             1     August/2017
## 1599                                          -1             1     August/2017
## 1600                                           1             1     August/2017
## 1601                                          -1             1     August/2017
## 1602                                           1             1     August/2017
## 1603                                          -1             1     August/2017
## 1604                                          -1             1     August/2017
## 1605                                          -1             1     August/2017
## 1606                                           1             1     August/2017
## 1607                                           1             1     August/2017
## 1608                                           1             1     August/2017
## 1609                                           1             1     August/2017
## 1610                                           1             1     August/2017
## 1611                                          -1             1     August/2017
## 1612                                          -1             1     August/2017
## 1613                                           1             1     August/2017
## 1614                                          -1             1     August/2017
## 1615                                          -1             1     August/2017
## 1616                                          -1             1     August/2017
## 1617                                           1             1     August/2017
## 1618                                          -1             1     August/2017
## 1619                                           1             1     August/2017
## 1620                                           1             1     August/2017
## 1621                                          -1             1     August/2017
## 1622                                          -1             1     August/2017
## 1623                                          -1             1     August/2017
## 1624                                           1             1     August/2017
## 1625                                          -1             1     August/2017
## 1626                                           1             1     August/2017
## 1627                                          -1             1     August/2017
## 1628                                           1             1     August/2017
## 1629                                           1             1     August/2017
## 1630                                          -1             1     August/2017
## 1631                                           1             1     August/2017
## 1632                                           1             1     August/2017
## 1633                                          -1             1     August/2017
## 1634                                           1             1     August/2017
## 1635                                          -1             1     August/2017
## 1636                                          -1             1     August/2017
## 1637                                          -1             1     August/2017
## 1638                                           1             1     August/2017
## 1639                                          -1             1     August/2017
## 1640                                          -1             1     August/2017
## 1641                                          -1             1     August/2017
## 1642                                           1             1     August/2017
## 1643                                           1             1     August/2017
## 1644                                          -1             1     August/2017
## 1645                                          -1             1     August/2017
## 1646                                           1             1     August/2017
## 1647                                          -1             1     August/2017
## 1648                                           1             1     August/2017
## 1649                                          -1             1     August/2017
## 1650                                          -1             1     August/2017
## 1651                                           1             1     August/2017
## 1652                                           1             1     August/2017
## 1653                                          -1             1     August/2017
## 1654                                          -1             1     August/2017
## 1655                                           1             1     August/2017
## 1656                                          -1             1     August/2017
## 1657                                           1             1     August/2017
## 1658                                          -1             1     August/2017
## 1659                                           1             1     August/2017
## 1660                                          -1             1     August/2017
## 1661                                           1             1     August/2017
## 1662                                          -1             1     August/2017
## 1663                                          -1             1     August/2017
## 1664                                          -1             1     August/2017
## 1665                                          -1             1     August/2017
## 1666                                           1             1     August/2017
## 1667                                           1             1     August/2017
## 1668                                          -1             1     August/2017
## 1669                                           1             1     August/2017
## 1670                                           1             1     August/2017
## 1671                                           1             1     August/2017
## 1672                                          -1             1     August/2017
## 1673                                          -1             1     August/2017
## 1674                                          -1             1     August/2017
## 1675                                          -1             1     August/2017
## 1676                                           1             1     August/2017
## 1677                                          -1             1     August/2017
## 1678                                          -1             1     August/2017
## 1679                                          -1             1     August/2017
## 1680                                          -1             1     August/2017
## 1681                                           1             1     August/2017
## 1682                                          -1             1     August/2017
## 1683                                          -1             1     August/2017
## 1684                                          -1             1     August/2017
## 1685                                          -1             1     August/2017
## 1686                                           1             1     August/2017
## 1687                                           1             1     August/2017
## 1688                                           1             1     August/2017
## 1689                                           1             1     August/2017
## 1690                                          -1             1     August/2017
## 1691                                           1             1     August/2017
## 1692                                          -1             1     August/2017
## 1693                                          -1             1     August/2017
## 1694                                          -1             1     August/2017
## 1695                                          -1             1     August/2017
## 1696                                           1             1     August/2017
## 1697                                           1             1     August/2017
## 1698                                          -1             1     August/2017
## 1699                                           1             1     August/2017
## 1700                                          -1             1     August/2017
## 1701                                           1             1     August/2017
## 1702                                          -1             1     August/2017
## 1703                                           1             1     August/2017
## 1704                                          -1             1     August/2017
## 1705                                          -1             1     August/2017
## 1706                                          -1             1     August/2017
## 1707                                          -1             1     August/2017
## 1708                                          -1             1     August/2017
## 1709                                          -1             1     August/2017
## 1710                                           1             1     August/2017
## 1711                                           1             1     August/2017
## 1712                                          -1             1     August/2017
## 1713                                           1             1     August/2017
## 1714                                          -1             1     August/2017
## 1715                                          -1             1     August/2017
## 1716                                           1             1     August/2017
## 1717                                          -1             1     August/2017
## 1718                                          -1             1     August/2017
## 1719                                           1             1     August/2017
## 1720                                          -1             1     August/2017
## 1721                                          -1             1     August/2017
## 1722                                          -1             1     August/2017
## 1723                                          -1             1     August/2017
## 1724                                           1             1     August/2017
## 1725                                          -1             1     August/2017
## 1726                                          -1             1     August/2017
## 1727                                           1             1     August/2017
## 1728                                          -1             1     August/2017
## 1729                                           1             1     August/2017
## 1730                                          -1             1     August/2017
## 1731                                          -1             1     August/2017
## 1732                                          -1             1     August/2017
## 1733                                          -1             1     August/2017
## 1734                                          -1             1     August/2017
## 1735                                          -1             1     August/2017
## 1736                                           1             1     August/2017
## 1737                                          -1             1     August/2017
## 1738                                          -1             1     August/2017
## 1739                                          -1             1     August/2017
## 1740                                           1             1     August/2017
## 1741                                           1             1     August/2017
## 1742                                           1             1     August/2017
## 1743                                          -1             1  September/2018
## 1744                                          -1             1  September/2018
## 1745                                          -1             1  September/2018
## 1746                                           1             1  September/2018
## 1747                                           1             1  September/2018
## 1748                                          -1             1  September/2018
## 1749                                          -1             1  September/2018
## 1750                                           1             1  September/2018
## 1751                         torn tips         1             1  September/2018
## 1752                                           1             1  September/2018
## 1753                                           1             1  September/2018
## 1754                                           1             1  September/2018
## 1755                                           1             1  September/2018
## 1756                                           1             1  September/2018
## 1757                                           1             1  September/2018
## 1758                                           1             1  September/2018
## 1759                                           1             1  September/2018
## 1760                         torn tips        -1             1  September/2018
## 1761                                          -1             1  September/2018
## 1762                                          -1             1  September/2018
## 1763                                          -1             1  September/2018
## 1764                         torn tips        -1             1  September/2018
## 1765                                           1             1  September/2018
## 1766                         torn tips        -1             1  September/2018
## 1767                         torn tips         1             1  September/2018
## 1768                                           1             1  September/2018
## 1769                                          -1             1  September/2018
## 1770                                          -1             1  September/2018
## 1771                                          -1             1  September/2018
## 1772                                          -1             1  September/2018
## 1773                                           1             1  September/2018
## 1774                                           1             1  September/2018
## 1775                                           1             1  September/2018
## 1776                                          -1             1  September/2018
## 1777                                           1             1  September/2018
## 1778                                          -1             1  September/2018
## 1779                                          -1             1  September/2018
## 1780                                          -1             1  September/2018
## 1781                                           1             1  September/2018
## 1782                                          -1             1  September/2018
## 1783                                           1             1  September/2018
## 1784                                           1             1  September/2018
## 1785                                           1             1  September/2018
## 1786                                          -1             1  September/2018
## 1787                                          -1             1  September/2018
## 1788                                           1             1  September/2018
## 1789                         torn tips        -1             1  September/2018
## 1790                                          -1             1  September/2018
## 1791                                          -1             1  September/2018
## 1792                                           1             1  September/2018
## 1793                                           1             1  September/2018
## 1794                                           1             1  September/2018
## 1795                                          -1             1  September/2018
## 1796                                          -1             1  September/2018
## 1797                                           1             1  September/2018
## 1798                                           1             1  September/2018
## 1799                                           1             1  September/2018
## 1800                                           1             1  September/2018
## 1801                                          -1             1  September/2018
## 1802                                          -1             1  September/2018
## 1803                                          -1             1  September/2018
## 1804                                          -1             1  September/2018
## 1805                                           1             1  September/2018
## 1806                                          -1             1  September/2018
## 1807                                          -1            -1  September/2018
## 1808                                          -1            -1  September/2018
## 1809                                          -1            -1  September/2018
## 1810                                           1            -1  September/2018
## 1811                                           1            -1  September/2018
## 1812                                           1            -1  September/2018
## 1813                                           1            -1  September/2018
## 1814                                           1            -1  September/2018
## 1815                                           1            -1  September/2018
## 1816                                          -1            -1  September/2018
## 1817                                          -1            -1  September/2018
## 1818                                           1            -1  September/2018
## 1819                                           1            -1  September/2018
## 1820                                           1            -1  September/2018
## 1821                                          -1            -1  September/2018
## 1822                                          -1            -1  September/2018
## 1823                                           1            -1  September/2018
## 1824                                           1            -1  September/2018
## 1825                                           1            -1  September/2018
## 1826                                          -1            -1  September/2018
## 1827                                          -1            -1  September/2018
## 1828                                           1            -1  September/2018
## 1829                                           1            -1  September/2018
## 1830                                           1            -1  September/2018
## 1831                                           1            -1  September/2018
## 1832                                           1            -1  September/2018
## 1833                                          -1            -1  September/2018
## 1834                                          -1            -1  September/2018
## 1835                                           1            -1  September/2018
## 1836                                          -1            -1  September/2018
## 1837                                           1            -1  September/2018
## 1838                                           1            -1  September/2018
## 1839                                          -1            -1  September/2018
## 1840                                          -1            -1  September/2018
## 1841                                           1            -1  September/2018
## 1842                                           1            -1  September/2018
## 1843                                          -1            -1  September/2018
## 1844                                          -1            -1  September/2018
## 1845                                           1            -1  September/2018
## 1846                                          -1            -1  September/2018
## 1847                                           1            -1  September/2018
## 1848                                           1            -1  September/2018
## 1849                                           1            -1  September/2018
## 1850                                          -1            -1  September/2018
## 1851                                           1            -1  September/2018
## 1852                                          -1            -1  September/2018
## 1853                                          -1            -1  September/2018
## 1854                                          -1            -1  September/2018
## 1855                                           1            -1  September/2018
## 1856                                           1            -1  September/2018
## 1857                                           1            -1  September/2018
## 1858                                          -1            -1  September/2018
## 1859                                           1            -1  September/2018
## 1860                                          -1            -1  September/2018
## 1861                                           1            -1  September/2018
## 1862                                          -1            -1  September/2018
## 1863                                           1            -1  September/2018
## 1864                                           1            -1  September/2018
## 1865                                           1            -1  September/2018
## 1866                                           1            -1  September/2018
## 1867                                          -1            -1  September/2018
## 1868                                           1            -1  September/2018
## 1869                                           1            -1  September/2018
## 1870                                           1            -1  September/2018
## 1871                                          -1            -1  September/2018
## 1872                                           1            -1  September/2018
## 1873                                          -1            -1  September/2018
## 1874                                          -1            -1  September/2018
## 1875                                           1             1  September/2018
## 1876                                           1             1  September/2018
## 1877                                           1             1  September/2018
## 1878                                          -1             1  September/2018
## 1879                                          -1             1  September/2018
## 1880                                           1             1  September/2018
## 1881                                           1             1  September/2018
## 1882                                          -1             1  September/2018
## 1883                                           1             1  September/2018
## 1884                                          -1             1  September/2018
## 1885                                           1             1  September/2018
## 1886                         torn tips         1             1  September/2018
## 1887                                          -1             1  September/2018
## 1888                                           1             1  September/2018
## 1889                                          -1             1  September/2018
## 1890                                           1             1  September/2018
## 1891                                           1             1  September/2018
## 1892                                          -1             1  September/2018
## 1893                                           1             1  September/2018
## 1894                                           1             1  September/2018
## 1895                                           1             1  September/2018
## 1896                                          -1             1  September/2018
## 1897                                          -1             1  September/2018
## 1898                                           1             1  September/2018
## 1899                                          -1             1  September/2018
## 1900                                           1             1  September/2018
## 1901                                          -1             1  September/2018
## 1902                                           1             1  September/2018
## 1903                                           1             1  September/2018
## 1904                         torn tips         1             1  September/2018
## 1905                         torn tips        -1             1  September/2018
## 1906                                           1             1  September/2018
## 1907                         torn tips         1             1  September/2018
## 1908                                           1             1  September/2018
## 1909                                           1             1  September/2018
## 1910                                           1             1  September/2018
## 1911                                           1             1  September/2018
## 1912                                          -1             1  September/2018
## 1913                                          -1             1  September/2018
## 1914                                          -1             1  September/2018
## 1915                                          -1             1  September/2018
## 1916                                           1             1        May/2019
## 1917                                           1             1        May/2019
## 1918                                          -1             1        May/2019
## 1919                                           1             1        May/2019
## 1920                                          -1             1        May/2019
## 1921                                          -1             1        May/2019
## 1922                                           1             1        May/2019
## 1923                                          -1             1        May/2019
## 1924                                          -1             1        May/2019
## 1925                                           1             1        May/2019
## 1926                                           1             1        May/2019
## 1927                                           1             1        May/2019
## 1928                                          -1             1        May/2019
## 1929                                           1             1        May/2019
## 1930                                           1             1        May/2019
## 1931                                           1             1        May/2019
## 1932                                           1             1        May/2019
## 1933                                           1             1        May/2019
## 1934                                           1             1        May/2019
## 1935                                           1             1        May/2019
## 1936                                           1             1        May/2019
## 1937                                           1             1        May/2019
## 1938                                           1             1        May/2019
## 1939                                           1             1        May/2019
## 1940                                          -1             1        May/2019
## 1941                                           1             1        May/2019
## 1942                                           1             1        May/2019
## 1943                                          -1             1        May/2019
## 1944                                           1             1        May/2019
## 1945                                           1             1        May/2019
## 1946                                          -1             1        May/2019
## 1947                                           1             1        May/2019
## 1948                                           1             1        May/2019
## 1949                                           1             1        May/2019
## 1950                                           1             1        May/2019
## 1951                                           1             1        May/2019
## 1952                                           1             1        May/2019
## 1953                                           1             1        May/2019
## 1954                                           1             1        May/2019
## 1955                                           1             1        May/2019
## 1956                                           1             1        May/2019
## 1957                                           1             1        May/2019
## 1958                                          -1             1        May/2019
## 1959                                           1             1        May/2019
## 1960                                           1             1        May/2019
## 1961                                           1             1        May/2019
## 1962                                           1             1        May/2019
## 1963                                           1             1        May/2019
## 1964                                           1             1        May/2019
## 1965                                          -1             1        May/2019
## 1966                                          -1             1        May/2019
## 1967                                           1             1        May/2019
## 1968                                           1             1        May/2019
## 1969                                          -1             1        May/2019
## 1970                                          -1             1        May/2019
## 1971                                          -1             1        May/2019
## 1972                                          -1             1        May/2019
## 1973                 wings torn at end        -1             1        May/2019
## 1974                                          -1             1        May/2019
## 1975                                           1             1        May/2019
## 1976                                          -1             1        May/2019
## 1977                 wings torn at end        -1             1        May/2019
## 1978                                          -1             1        May/2019
## 1979                                          -1             1        May/2019
## 1980                                          -1             1        May/2019
## 1981                                           1             1        May/2019
## 1982                                           1             1        May/2019
## 1983                                          -1            -1        May/2019
## 1984                                          -1            -1        May/2019
## 1985                                           1            -1        May/2019
## 1986                                          -1            -1        May/2019
## 1987                      d1+d2 yellow         1            -1        May/2019
## 1988                                          -1            -1        May/2019
## 1989                      d1+d2 yellow        -1            -1        May/2019
## 1990                                           1            -1        May/2019
## 1991                                           1            -1        May/2019
## 1992                                           1            -1        May/2019
## 1993                                          -1            -1        May/2019
## 1994                                          -1            -1        May/2019
## 1995                      d1+d2 yellow         1            -1        May/2019
## 1996                                           1            -1        May/2019
## 1997                           d1 blue        -1            -1        May/2019
## 1998                                          -1            -1        May/2019
## 1999                                           1            -1        May/2019
## 2000                                           1            -1        May/2019
## 2001                        d1+d2 blue        -1            -1        May/2019
## 2002                                          -1            -1        May/2019
## 2003                         d1 yellow        -1            -1        May/2019
## 2004                                          -1            -1        May/2019
## 2005                                          -1            -1        May/2019
## 2006                                          -1            -1        May/2019
## 2007                                           1            -1        May/2019
## 2008                         d3 yellow        -1            -1        May/2019
## 2009                                           1            -1        May/2019
## 2010                                          -1            -1        May/2019
## 2011                                          -1            -1        May/2019
## 2012                           d2 pink        -1            -1        May/2019
## 2013                                          -1            -1        May/2019
## 2014                                           1            -1        May/2019
## 2015                                          -1            -1        May/2019
## 2016                           d1 blue        -1            -1        May/2019
## 2017                                          -1            -1        May/2019
## 2018                         d2 yellow        -1            -1        May/2019
## 2019                         d3 yellow        -1            -1        May/2019
## 2020                                           1            -1        May/2019
## 2021                                           1            -1        May/2019
## 2022                                           1            -1        May/2019
## 2023                                           1            -1        May/2019
## 2024                           d1 pink        -1            -1        May/2019
## 2025                                          -1            -1        May/2019
## 2026                           d1 blue        -1            -1        May/2019
## 2027                                           1            -1        May/2019
## 2028                                          -1            -1        May/2019
## 2029                                          -1            -1        May/2019
## 2030                                           1            -1        May/2019
## 2031                         d1 yellow        -1            -1        May/2019
## 2032                                           1            -1        May/2019
## 2033                         d3 yellow        -1            -1        May/2019
## 2034                                          -1            -1        May/2019
## 2035                                          -1            -1        May/2019
## 2036                                          -1            -1        May/2019
## 2037                                          -1            -1        May/2019
## 2038                                          -1            -1        May/2019
## 2039                                           1            -1        May/2019
## 2040                                          -1            -1        May/2019
## 2041                                           1            -1        May/2019
## 2042                                           1            -1        May/2019
## 2043                                           1            -1        May/2019
## 2044                                          -1            -1        May/2019
## 2045                                          -1            -1        May/2019
## 2046                                          -1            -1        May/2019
## 2047                                           1            -1        May/2019
## 2048                                          -1            -1        May/2019
## 2049                                          -1            -1        May/2019
## 2050                           d2 pink        -1            -1        May/2019
## 2051                                          -1            -1        May/2019
## 2052                         d2 yellow         1            -1        May/2019
## 2053                         d2 yellow        -1            -1        May/2019
## 2054                         d2 yellow        -1            -1        May/2019
## 2055                                          -1            -1        May/2019
## 2056                                          -1            -1        May/2019
## 2057                                          -1            -1        May/2019
## 2058                                          -1            -1        May/2019
## 2059                                           1             1        May/2019
## 2060                                           1             1        May/2019
## 2061                                           1             1        May/2019
## 2062                                           1             1        May/2019
## 2063                                           1             1        May/2019
## 2064                                           1             1        May/2019
## 2065                                           1             1        May/2019
## 2066                                           1             1        May/2019
## 2067                                           1             1        May/2019
## 2068                                           1             1        May/2019
## 2069                                          -1             1        May/2019
## 2070                                           1             1        May/2019
## 2071                                          -1             1        May/2019
## 2072                                           1             1        May/2019
## 2073                                          -1             1        May/2019
## 2074                        torn wings        -1             1        May/2019
## 2075                                           1             1        May/2019
## 2076                                           1             1        May/2019
## 2077                                           1             1        May/2019
## 2078                                           1             1        May/2019
## 2079                                           1             1        May/2019
## 2080                                           1             1        May/2019
## 2081                                           1             1        May/2019
## 2082                                           1             1        May/2019
## 2083                                           1             1        May/2019
## 2084                                          -1             1        May/2019
## 2085                                           1             1        May/2019
## 2086                                           1             1        May/2019
## 2087                                           1             1        May/2019
## 2088                       torn thorax         1             1        May/2019
## 2089                                           1             1        May/2019
## 2090                                           1             1        May/2019
## 2091                                           1             1        May/2019
## 2092                                           1             1        May/2019
## 2093                                           1             1        May/2019
## 2094                                           1             1        May/2019
## 2095                                           1             1        May/2019
## 2096                                           1             1        May/2019
## 2097                                           1             1        May/2019
## 2098                                           1             1        May/2019
## 2099                                           1             1        May/2019
## 2100                                           1             1        May/2019
## 2101                                           1             1        May/2019
## 2102                                           1             1        May/2019
## 2103                                          -1             1        May/2019
## 2104                                           1             1        May/2019
## 2105                                           1             1        May/2019
## 2106                                          -1             1        May/2019
## 2107                                          -1             1        May/2019
## 2108                                           1             1        May/2019
## 2109                       torn thorax        -1             1        May/2019
## 2110                                           1             1        May/2019
## 2111                                          -1             1        May/2019
## 2112                                           1             1        May/2019
## 2113                                          -1             1        May/2019
## 2114                                           1             1        May/2019
## 2115                                           1             1        May/2019
## 2116                                           1             1        May/2019
## 2117                                           1             1        May/2019
## 2118                                           1             1        May/2019
## 2119                                           1             1        May/2019
## 2120                                          -1             1        May/2019
## 2121                                           1            -1        May/2019
## 2122                                          -1            -1        May/2019
## 2123                                          -1            -1        May/2019
## 2124                                          -1            -1        May/2019
## 2125                                          -1            -1        May/2019
## 2126                                           1            -1        May/2019
## 2127                                          -1            -1        May/2019
## 2128                                          -1            -1        May/2019
## 2129                                           1            -1        May/2019
## 2130                                          -1            -1        May/2019
## 2131                                          -1            -1        May/2019
## 2132                         tips torn        -1            -1        May/2019
## 2133                                          -1            -1        May/2019
## 2134                                          -1            -1        May/2019
## 2135                                          -1            -1        May/2019
## 2136                                          -1            -1        May/2019
## 2137 tips torn; marked purple hind leg        -1            -1        May/2019
## 2138                                          -1            -1        May/2019
## 2139                                          -1            -1        May/2019
## 2140                                          -1            -1        May/2019
## 2141                         tips torn        -1            -1        May/2019
## 2142                                           1            -1        May/2019
## 2143                                          -1            -1        May/2019
## 2144                                          -1            -1        May/2019
## 2145                                           1            -1        May/2019
## 2146                                          -1            -1        May/2019
## 2147                                          -1            -1        May/2019
## 2148                                           1            -1        May/2019
## 2149                                          -1            -1        May/2019
## 2150                                          -1            -1        May/2019
## 2151                                           1            -1        May/2019
## 2152                                           1            -1        May/2019
## 2153                                           1            -1        May/2019
## 2154                                          -1            -1        May/2019
## 2155                                          -1            -1        May/2019
## 2156                                           1            -1        May/2019
## 2157                                           1            -1        May/2019
## 2158                                           1            -1        May/2019
## 2159                                          -1            -1        May/2019
## 2160                                           1            -1        May/2019
## 2161                                           1            -1        May/2019
## 2162                                           1            -1        May/2019
## 2163                                          -1            -1        May/2019
## 2164                                           1            -1        May/2019
## 2165                                           1            -1        May/2019
## 2166                                          -1            -1        May/2019
## 2167                                           1            -1        May/2019
## 2168                                          -1            -1        May/2019
## 2169                       marked blue        -1            -1        May/2019
## 2170                       marked blue        -1            -1        May/2019
## 2171                                          -1            -1        May/2019
## 2172                                          -1            -1        May/2019
## 2173                                          -1            -1        May/2019
## 2174                                          -1            -1        May/2019
## 2175                       marked blue         1            -1        May/2019
## 2176                                          -1            -1        May/2019
## 2177                       marked blue        -1            -1        May/2019
## 2178                    marked blue x3        -1            -1        May/2019
## 2179                                          -1            -1        May/2019
## 2180                       marked blue        -1            -1        May/2019
## 2181                                          -1            -1        May/2019
## 2182                       marked blue         1            -1        May/2019
## 2183                       marked blue         1            -1        May/2019
## 2184                                           1            -1        May/2019
## 2185                       marked blue        -1            -1        May/2019
## 2186                                           1            -1        May/2019
## 2187                                           1            -1        May/2019
## 2188                                           1            -1        May/2019
## 2189                    marked blue x2         1            -1        May/2019
## 2190                                           1            -1        May/2019
## 2191                                           1            -1        May/2019
## 2192                    marked blue x3        -1            -1        May/2019
## 2193                       marked blue        -1            -1        May/2019
## 2194                                          -1            -1        May/2019
## 2195                    marked blue x2        -1            -1        May/2019
## 2196                                           1            -1        May/2019
## 2197                                          -1            -1        May/2019
## 2198                                          -1            -1        May/2019
## 2199                                          -1            -1        May/2019
## 2200                                          -1            -1        May/2019
## 2201                       marked blue        -1            -1        May/2019
## 2202                                           1            -1        May/2019
## 2203                                          -1            -1        May/2019
## 2204                                          -1            -1        May/2019
## 2205                       marked blue        -1            -1        May/2019
## 2206                                          -1            -1        May/2019
## 2207                                          -1            -1        May/2019
## 2208                                          -1            -1        May/2019
## 2209                                           1            -1        May/2019
## 2210                       marked blue        -1            -1        May/2019
## 2211                       marked blue        -1            -1        May/2019
## 2212                                          -1            -1        May/2019
## 2213                                          -1            -1        May/2019
## 2214                       marked blue        -1            -1        May/2019
## 2215                                          -1            -1        May/2019
## 2216                                          -1            -1        May/2019
## 2217                                          -1            -1        May/2019
## 2218                                          -1            -1        May/2019
## 2219                                          -1            -1        May/2019
## 2220                                           1            -1        May/2019
## 2221                    marked blue x2         1            -1        May/2019
## 2222                                           1            -1        May/2019
## 2223                 torn tips; marked         1            -1        May/2019
## 2224                        torn tips         -1            -1        May/2019
## 2225                                           1            -1        May/2019
## 2226                                          -1            -1        May/2019
## 2227                                           1            -1        May/2019
## 2228                                           1            -1        May/2019
## 2229                            marked         1            -1        May/2019
## 2230                                           1            -1        May/2019
## 2231                                           1            -1        May/2019
## 2232                                           1            -1        May/2019
## 2233                         marked x2         1            -1        May/2019
## 2234                                          -1            -1        May/2019
## 2235                                           1            -1        May/2019
## 2236                            marked         1            -1        May/2019
## 2237                            marked        -1            -1        May/2019
## 2238                                          -1            -1        May/2019
## 2239                            marked         1            -1        May/2019
## 2240                                          -1            -1        May/2019
## 2241                                           1            -1        May/2019
## 2242                                           1            -1        May/2019
## 2243                                          -1            -1        May/2019
## 2244                                          -1            -1        May/2019
## 2245                                           1            -1        May/2019
## 2246                                           1            -1        May/2019
## 2247                                           1            -1        May/2019
## 2248                                           1            -1        May/2019
## 2249                                          -1            -1        May/2019
## 2250                                          -1            -1        May/2019
## 2251                                           1            -1        May/2019
## 2252                                           1            -1        May/2019
## 2253                                          -1            -1        May/2019
## 2254                                          -1            -1        May/2019
## 2255                                          -1            -1        May/2019
## 2256                                          -1            -1        May/2019
## 2257                                           1            -1        May/2019
## 2258                                           1            -1        May/2019
## 2259                    marked pink x2         1            -1        May/2019
## 2260                                          -1            -1        May/2019
## 2261                       marked pink         1            -1        May/2019
## 2262                            marked         1            -1        May/2019
## 2263                                          -1            -1        May/2019
## 2264                                          -1            -1        May/2019
## 2265                                           1            -1        May/2019
## 2266                                           1            -1        May/2019
## 2267                                          -1            -1        May/2019
## 2268                                          -1            -1        May/2019
## 2269                                           1            -1        May/2019
## 2270                                           1            -1        May/2019
## 2271                   marked white x2        -1            -1        May/2019
## 2272                                          -1            -1        May/2019
## 2273                                          -1            -1        May/2019
## 2274                       marked pink         1            -1        May/2019
## 2275                      marked white         1            -1        May/2019
## 2276                                           1            -1        May/2019
## 2277                                           1            -1        May/2019
## 2278                   marked white x2         1            -1        May/2019
## 2279                       marked pink        -1            -1        May/2019
## 2280                      marked white         1            -1        May/2019
## 2281                                           1            -1        May/2019
## 2282                                          -1            -1        May/2019
## 2283                                          -1            -1        May/2019
## 2284                                          -1            -1        May/2019
## 2285                       marked pink         1            -1        May/2019
## 2286                      marked white         1            -1        May/2019
## 2287                                          -1            -1        May/2019
## 2288                      marked white        -1            -1        May/2019
## 2289                                           1            -1        May/2019
## 2290                      marked white        -1            -1        May/2019
## 2291                                          -1            -1        May/2019
## 2292                                          -1            -1        May/2019
## 2293                                           1            -1        May/2019
## 2294                                           1            -1        May/2019
## 2295                                          -1            -1        May/2019
## 2296                                           1            -1        May/2019
## 2297                                           1            -1        May/2019
## 2298                       marked pink        -1            -1        May/2019
## 2299                                          -1            -1        May/2019
## 2300                      marked white         1            -1        May/2019
## 2301                                           1            -1        May/2019
## 2302                                           1            -1        May/2019
## 2303                                          -1            -1        May/2019
## 2304                   marked white d2         1            -1        May/2019
## 2305                                          -1            -1        May/2019
## 2306                                           1            -1        May/2019
## 2307                                          -1            -1        May/2019
## 2308                   marked white d3        -1            -1        May/2019
## 2309                                          -1            -1        May/2019
## 2310                                          -1            -1        May/2019
## 2311                                          -1            -1        May/2019
## 2312                   marked white d2        -1            -1        May/2019
## 2313               marked pink d1 + d3         1            -1        May/2019
## 2314                                          -1            -1        May/2019
## 2315                     white d1 + d3         1            -1        May/2019
## 2316                                          -1            -1        May/2019
## 2317                          white d3        -1            -1        May/2019
## 2318                                           1            -1        May/2019
## 2319                                          -1            -1        May/2019
## 2320                                          -1            -1        May/2019
## 2321                          white d2         1            -1        May/2019
## 2322                                          -1            -1        May/2019
## 2323                           pink d1         1            -1        May/2019
## 2324                           pink d3        -1            -1        May/2019
## 2325                                          -1            -1        May/2019
## 2326                                          -1            -1        May/2019
## 2327                                          -1            -1        May/2019
## 2328                                          -1            -1        May/2019
## 2329                                          -1            -1        May/2019
## 2330                     white d2 + d3        -1            -1        May/2019
## 2331                                          -1            -1        May/2019
## 2332                                          -1            -1        May/2019
## 2333                                          -1            -1        May/2019
## 2334                                           1            -1        May/2019
## 2335                         marked d3         1            -1        May/2019
## 2336                         marked d3         1            -1        May/2019
## 2337                         marked d3        -1            -1        May/2019
## 2338                                           1            -1        May/2019
## 2339                    marked d1 + d2        -1            -1        May/2019
## 2340                                           1            -1        May/2019
## 2341                    marked d2 + d3         1            -1        May/2019
## 2342                                          -1            -1        May/2019
## 2343                                           1            -1        May/2019
## 2344                         marked d1        -1            -1        May/2019
## 2345                                           1            -1        May/2019
## 2346                    marked d1 + d3        -1            -1        May/2019
## 2347                    marked d1 + d3        -1            -1        May/2019
## 2348                         marked d3         1            -1        May/2019
## 2349                                          -1            -1        May/2019
## 2350                                          -1            -1        May/2019
## 2351                         marked d3         1            -1        May/2019
## 2352                                          -1            -1        May/2019
## 2353                                           1            -1        May/2019
## 2354                         marked d1        -1            -1        May/2019
## 2355                                          -1            -1        May/2019
## 2356                         marked d1         1            -1        May/2019
## 2357                                          -1            -1        May/2019
## 2358                                          -1            -1        May/2019
## 2359                         marked d1        -1            -1        May/2019
## 2360                         marked d1         1            -1        May/2019
## 2361                                          -1            -1        May/2019
## 2362                                           1            -1        May/2019
## 2363          marked turquoise d1 + d3         1            -1        May/2019
## 2364               marked turquoise d3         1            -1        May/2019
## 2365          marked turquoise d1 + d3         1            -1        May/2019
## 2366                                           1            -1        May/2019
## 2367                                          -1            -1        May/2019
## 2368          marked turquoise d1 + d3         1            -1        May/2019
## 2369                                          -1            -1        May/2019
## 2370                                          -1            -1        May/2019
## 2371                                          -1            -1        May/2019
## 2372                                          -1            -1        May/2019
## 2373                                          -1            -1        May/2019
## 2374                                           1            -1        May/2019
## 2375                                           1            -1        May/2019
## 2376                                          -1            -1        May/2019
## 2377                                           1            -1        May/2019
## 2378                                           1            -1        May/2019
## 2379                                           1            -1        May/2019
## 2380                                          -1            -1        May/2019
## 2381                                          -1            -1        May/2019
## 2382                                          -1            -1        May/2019
## 2383                                           1            -1        May/2019
## 2384                                           1            -1        May/2019
## 2385                                           1            -1        May/2019
## 2386                                          -1            -1        May/2019
## 2387                                          -1            -1        May/2019
## 2388                                          -1            -1        May/2019
## 2389                                          -1            -1        May/2019
## 2390                                          -1            -1        May/2019
## 2391                                          -1            -1        May/2019
## 2392                                           1            -1        May/2019
## 2393                                          -1            -1        May/2019
## 2394                                          -1            -1        May/2019
## 2395                                           1            -1        May/2019
## 2396                                          -1            -1        May/2019
## 2397                                          -1            -1        May/2019
## 2398                                           1            -1        May/2019
## 2399                                           1            -1        May/2019
## 2400                                           1            -1        May/2019
## 2401                                           1            -1        May/2019
## 2402                                          -1            -1        May/2019
## 2403                                           1             1    October/2019
## 2404                                          -1             1    October/2019
## 2405                                          -1             1    October/2019
## 2406                                           1             1    October/2019
## 2407                                           1             1    October/2019
## 2408                 wings torn at end        -1             1    October/2019
## 2409                 wings torn at end        -1             1    October/2019
## 2410                 wings torn at end        -1             1    October/2019
## 2411                                          -1             1    October/2019
## 2412                 wings torn at end         1             1    October/2019
## 2413                                           1             1    October/2019
## 2414                 wings torn at end         1             1    October/2019
## 2415                                          -1             1    October/2019
## 2416                                          -1             1    October/2019
## 2417                                          -1             1    October/2019
## 2418                                          -1             1    October/2019
## 2419                                          -1             1    October/2019
## 2420                                           1             1    October/2019
## 2421                                          -1             1    October/2019
## 2422                                          -1             1    October/2019
## 2423                                           1             1    October/2019
## 2424                                          -1             1    October/2019
## 2425                                           1             1    October/2019
## 2426                                          -1             1    October/2019
## 2427                                          -1             1    October/2019
## 2428                                           1             1    October/2019
## 2429                                          -1             1    October/2019
## 2430                                           1             1    October/2019
## 2431                                           1             1    October/2019
## 2432                                           1             1    October/2019
## 2433                                           1             1    October/2019
## 2434                                           1             1    October/2019
## 2435                                          -1             1    October/2019
## 2436                                          -1             1    October/2019
## 2437                                          -1             1    October/2019
## 2438                                          -1             1    October/2019
## 2439                                          -1             1    October/2019
## 2440                                          -1             1    October/2019
## 2441                                          -1             1    October/2019
## 2442                                          -1             1    October/2019
## 2443                                          -1             1    October/2019
## 2444                                          -1             1    October/2019
## 2445                                          -1             1    October/2019
## 2446                 wings torn at end        -1             1    October/2019
## 2447                 wings torn at end        -1             1    October/2019
## 2448                 wings torn at end        -1             1    October/2019
## 2449                                           1             1    October/2019
## 2450                                          -1             1    October/2019
## 2451                                          -1             1    October/2019
## 2452                                           1             1    October/2019
## 2453                                          -1             1    October/2019
## 2454                 wings torn at end         1            -1    October/2019
## 2455                 wings torn at end         1            -1    October/2019
## 2456                                          -1            -1    October/2019
## 2457                 wings torn at end         1            -1    October/2019
## 2458                 wings torn at end        -1            -1    October/2019
## 2459                                           1            -1    October/2019
## 2460                                          -1            -1    October/2019
## 2461                                          -1            -1    October/2019
## 2462                 wings torn at end         1            -1    October/2019
## 2463                                          -1            -1    October/2019
## 2464                                          -1            -1    October/2019
## 2465                 wings torn at end         1            -1    October/2019
## 2466                 wings torn at end        -1            -1    October/2019
## 2467                                           1            -1    October/2019
## 2468                 wings torn at end         1            -1    October/2019
## 2469                 wings torn at end         1            -1    October/2019
## 2470                                          -1             1    October/2019
## 2471                                           1             1    October/2019
## 2472                                           1             1    October/2019
## 2473                                          -1             1    October/2019
## 2474                 wings torn at end        -1             1    October/2019
## 2475                                           1             1    October/2019
## 2476                                           1             1    October/2019
## 2477                                           1             1    October/2019
## 2478                                          -1             1    October/2019
## 2479                                           1             1    October/2019
## 2480                 wings torn at end        -1             1    October/2019
## 2481                 wings torn at end        -1             1    October/2019
## 2482                                           1             1    October/2019
## 2483                                           1             1    October/2019
## 2484                                           1             1    October/2019
## 2485                                          -1             1    October/2019
## 2486                                           1             1    October/2019
## 2487                                           1             1    October/2019
## 2488                                          -1             1    October/2019
## 2489                                          -1             1    October/2019
## 2490                                           1             1    October/2019
## 2491                                          -1             1    October/2019
## 2492                                          -1             1    October/2019
## 2493                                           1             1    October/2019
## 2494                                          -1             1    October/2019
## 2495                 wings torn at end        -1             1    October/2019
## 2496                                           1             1    October/2019
## 2497                                          -1             1    October/2019
## 2498                 wings torn at end         1             1    October/2019
## 2499                                          -1             1    October/2019
## 2500                                           1             1    October/2019
## 2501                                           1             1    October/2019
## 2502                                          -1             1    October/2019
## 2503                                          -1             1    October/2019
## 2504                                           1             1    October/2019
## 2505                                           1             1    October/2019
## 2506                                          -1             1    October/2019
## 2507                                          -1             1    October/2019
## 2508                                          -1             1    October/2019
## 2509                                          -1             1    October/2019
## 2510                                          -1             1    October/2019
## 2511                                          -1             1    October/2019
## 2512                 wings torn at end         1             1    October/2019
## 2513                                           1             1    October/2019
## 2514                                           1             1    October/2019
## 2515                                           1             1    October/2019
## 2516                 wings torn at end        -1             1    October/2019
## 2517                 wings torn at end         1             1    October/2019
## 2518                                          -1             1    October/2019
## 2519                 wings torn at end         1             1    October/2019
## 2520                                           1             1    October/2019
## 2521                 wings torn at end        -1             1    October/2019
## 2522                                          -1             1    October/2019
## 2523                                          -1             1    October/2019
## 2524                                           1             1    October/2019
## 2525                                          -1             1    October/2019
## 2526                                           1             1    October/2019
## 2527                                           1             1    October/2019
## 2528                        wings torn        -1             1    October/2019
## 2529                                          -1             1    October/2019
## 2530                                          -1             1    October/2019
## 2531                                           1             1    October/2019
## 2532                                           1             1    October/2019
## 2533                                          -1             1    October/2019
## 2534                                           1             1    October/2019
## 2535                                           1             1    October/2019
## 2536                 wings torn at end         1             1    October/2019
## 2537                                           1             1    October/2019
## 2538                                           1             1    October/2019
## 2539                                           1             1    October/2019
## 2540                 wings torn at end         1             1    October/2019
## 2541                                          -1             1    October/2019
## 2542                                          -1             1    October/2019
## 2543                 wings torn at end        -1             1    October/2019
## 2544                                           1             1    October/2019
## 2545                                          -1             1    October/2019
## 2546                                          -1             1    October/2019
## 2547                                           1             1    October/2019
## 2548                                          -1             1    October/2019
## 2549                                          -1             1    October/2019
## 2550                                          -1             1    October/2019
## 2551                                           1             1    October/2019
## 2552                                          -1             1    October/2019
## 2553                                          -1             1    October/2019
## 2554                 wings torn at end         1             1    October/2019
## 2555                                           1             1    October/2019
## 2556                                          -1             1    October/2019
## 2557                 wings torn at end         1             1    October/2019
## 2558                                           1             1    October/2019
## 2559                                           1             1    October/2019
## 2560                 wings torn at end        -1             1    October/2019
## 2561                                          -1             1    October/2019
## 2562                                           1            -1    October/2019
## 2563                                          -1            -1    October/2019
## 2564                                           1            -1    October/2019
## 2565                                           1            -1    October/2019
## 2566                                          -1            -1    October/2019
## 2567                 wings torn at end         1            -1    October/2019
## 2568                                           1            -1    October/2019
## 2569                 wings torn at end        -1            -1    October/2019
## 2570                                          -1            -1    October/2019
## 2571                                          -1            -1    October/2019
## 2572                                          -1            -1    October/2019
## 2573                 wings torn at end         1            -1    October/2019
## 2574                                          -1            -1    October/2019
## 2575                                          -1            -1    October/2019
## 2576                                          -1            -1    October/2019
## 2577                                           1            -1    October/2019
## 2578                                          -1            -1    October/2019
## 2579                                          -1            -1    October/2019
## 2580                                          -1            -1    October/2019
## 2581                 wings torn at end        -1            -1    October/2019
## 2582                                           1            -1    October/2019
## 2583                 wings torn at end        -1            -1    October/2019
## 2584                                           1            -1    October/2019
## 2585                                           1            -1    October/2019
## 2586                                           1            -1    October/2019
## 2587                 wings torn at end        -1            -1    October/2019
## 2588                 wings torn at end        -1            -1    October/2019
## 2589                                           1            -1    October/2019
## 2590                 wings torn at end        -1            -1    October/2019
## 2591                                          -1            -1    October/2019
## 2592                                           1            -1    October/2019
## 2593                                           1            -1    October/2019
## 2594                 wings torn at end        -1            -1    October/2019
## 2595                                          -1            -1    October/2019
## 2596                                           1            -1    October/2019
## 2597                                           1            -1    October/2019
## 2598                                           1            -1    October/2019
## 2599                                           1            -1    October/2019
## 2600                 wings torn at end         1            -1    October/2019
## 2601                                           1            -1    October/2019
## 2602                                           1            -1    October/2019
## 2603                                           1            -1    October/2019
## 2604                                           1            -1    October/2019
## 2605                                           1            -1    October/2019
## 2606                                           1            -1    October/2019
## 2607                                           1            -1    October/2019
## 2608                 wings torn at end        -1            -1    October/2019
## 2609                                          -1            -1    October/2019
## 2610                                           1            -1    October/2019
## 2611                 wings torn at end        -1            -1    October/2019
## 2612                                          -1            -1    October/2019
## 2613                                          -1            -1    October/2019
## 2614                 wings torn at end        -1            -1    October/2019
## 2615                                          -1            -1    October/2019
## 2616                                           1            -1    October/2019
## 2617                                          -1            -1    October/2019
## 2618                                           1            -1    October/2019
## 2619                 wings torn at end        -1            -1    October/2019
## 2620                 wings torn at end         1            -1    October/2019
## 2621                                          -1            -1    October/2019
## 2622                                           1            -1    October/2019
## 2623                 wings torn at end        -1            -1    October/2019
## 2624                                          -1            -1    October/2019
## 2625                                          -1            -1    October/2019
## 2626                                          -1            -1    October/2019
## 2627                 wings torn at end        -1            -1    October/2019
## 2628                 wings torn at end         1            -1    October/2019
## 2629                 wings torn at end        -1            -1    October/2019
## 2630                                           1            -1    October/2019
## 2631                                          -1            -1    October/2019
## 2632                                          -1            -1    October/2019
## 2633                 wings torn at end        -1            -1    October/2019
## 2634                                          -1            -1    October/2019
## 2635                                          -1            -1    October/2019
## 2636                        wings torn         1            -1    October/2019
## 2637                                          -1            -1    October/2019
## 2638                        wings torn         1            -1    October/2019
## 2639                                           1            -1    October/2019
## 2640                                          -1            -1    October/2019
## 2641                                          -1            -1    October/2019
## 2642                                          -1            -1    October/2019
## 2643                                           1            -1    October/2019
## 2644                                           1            -1    October/2019
## 2645                                           1            -1    October/2019
## 2646                 wings torn at end        -1            -1    October/2019
## 2647                                          -1            -1    October/2019
## 2648                                           1            -1    October/2019
## 2649                                          -1            -1    October/2019
## 2650                                          -1            -1    October/2019
## 2651                                          -1            -1    October/2019
## 2652                                          -1            -1    October/2019
## 2653                                           1            -1    October/2019
## 2654                                          -1            -1    October/2019
## 2655                                          -1            -1    October/2019
## 2656                                           1            -1    October/2019
## 2657                                          -1            -1    October/2019
## 2658                                          -1             1   February/2020
## 2659             wings torn at the end        -1             1   February/2020
## 2660                                          -1             1   February/2020
## 2661                                          -1             1   February/2020
## 2662                                          -1             1   February/2020
## 2663             wings torn at the end        -1             1   February/2020
## 2664             wings torn at the end        -1             1   February/2020
## 2665                                          -1             1   February/2020
## 2666                                          -1             1   February/2020
## 2667                                          -1             1   February/2020
## 2668                                           1             1   February/2020
## 2669                                          -1             1   February/2020
## 2670             wings torn at the end         1             1   February/2020
## 2671             wings torn at the end        -1             1   February/2020
## 2672                                          -1             1   February/2020
## 2673                                          -1             1   February/2020
## 2674             wings torn at the end        -1             1   February/2020
## 2675                                           1             1   February/2020
## 2676             wings torn at the end        -1             1   February/2020
## 2677             wings torn at the end         1             1   February/2020
## 2678                                          -1             1   February/2020
## 2679             wings torn at the end         1             1   February/2020
## 2680                                          -1             1   February/2020
## 2681             wings torn at the end        -1             1   February/2020
## 2682                                          -1             1   February/2020
## 2683             wings torn at the end        -1             1   February/2020
## 2684                                          -1             1   February/2020
## 2685             wings torn at the end        -1             1   February/2020
## 2686             wings torn at the end        -1             1   February/2020
## 2687             wings torn at the end        -1             1   February/2020
## 2688             wings torn at the end        -1             1   February/2020
## 2689             wings torn at the end         1             1   February/2020
## 2690                                          -1             1   February/2020
## 2691                                           1             1   February/2020
## 2692                                          -1             1   February/2020
## 2693                                          -1             1   February/2020
## 2694                                          -1             1   February/2020
## 2695                                           1             1   February/2020
## 2696                                           1             1   February/2020
## 2697                                           1             1   February/2020
## 2698                                           1             1   February/2020
## 2699             wings torn at the end        -1             1   February/2020
## 2700                                          -1             1   February/2020
## 2701                                           1             1   February/2020
## 2702             wings torn at the end        -1             1   February/2020
## 2703             wings torn at the end        -1             1   February/2020
## 2704             wings torn at the end        -1             1   February/2020
## 2705                                          -1             1   February/2020
## 2706                                          -1             1   February/2020
## 2707             wings torn at the end        -1             1   February/2020
## 2708                                           1             1   February/2020
## 2709                                           1             1   February/2020
## 2710                                           1             1   February/2020
## 2711                                          -1             1   February/2020
## 2712                                          -1             1   February/2020
## 2713                                           1             1   February/2020
## 2714                                          -1             1   February/2020
## 2715                                           1             1   February/2020
## 2716                                           1             1   February/2020
## 2717                                          -1             1   February/2020
## 2718                                          -1             1   February/2020
## 2719                                          -1             1   February/2020
## 2720                                          -1             1   February/2020
## 2721                                          -1             1   February/2020
## 2722                                           1             1   February/2020
## 2723                                           1             1   February/2020
## 2724                                          -1             1   February/2020
## 2725                                          -1             1   February/2020
## 2726                                          -1             1   February/2020
## 2727                                          -1             1   February/2020
## 2728                                          -1             1   February/2020
## 2729                                          -1             1   February/2020
## 2730                                           1             1   February/2020
## 2731                                           1             1   February/2020
## 2732                                          -1             1   February/2020
## 2733                                          -1             1   February/2020
## 2734                                          -1             1   February/2020
## 2735                                          -1             1   February/2020
## 2736                                          -1            -1   February/2020
## 2737                                           1            -1   February/2020
## 2738             wings torn at the end         1            -1   February/2020
## 2739                                          -1            -1   February/2020
## 2740                                          -1            -1   February/2020
## 2741                                           1            -1   February/2020
## 2742                                          -1            -1   February/2020
## 2743                                          -1            -1   February/2020
## 2744                                           1            -1   February/2020
## 2745                                          -1            -1   February/2020
## 2746                                           1            -1   February/2020
## 2747                                           1            -1   February/2020
## 2748                                          -1            -1   February/2020
## 2749                                          -1            -1   February/2020
## 2750                                           1            -1   February/2020
## 2751                                          -1            -1   February/2020
## 2752                                           1            -1   February/2020
## 2753             wings torn at the end        -1            -1   February/2020
## 2754                                           1            -1   February/2020
## 2755                                          -1            -1   February/2020
## 2756             wings torn at the end        -1            -1   February/2020
## 2757                                           1            -1   February/2020
## 2758                                          -1            -1   February/2020
## 2759                                          -1            -1   February/2020
## 2760                                           1            -1   February/2020
## 2761                                          -1            -1   February/2020
## 2762                                           1            -1   February/2020
## 2763             wings torn at the end        -1            -1   February/2020
## 2764                                          -1            -1   February/2020
## 2765                                          -1            -1   February/2020
## 2766           thorax torn on one side         1            -1   February/2020
## 2767                                          -1            -1   February/2020
## 2768             wings torn at the end        -1            -1   February/2020
## 2769                                           1            -1   February/2020
## 2770                                           1            -1   February/2020
## 2771                                          -1            -1   February/2020
## 2772             wings torn at the end        -1            -1   February/2020
## 2773                                          -1            -1   February/2020
## 2774                                          -1            -1   February/2020
## 2775                                          -1            -1   February/2020
## 2776                                          -1            -1   February/2020
## 2777             wings torn at the end         1            -1   February/2020
## 2778                                          -1            -1   February/2020
## 2779                                          -1            -1   February/2020
## 2780                                          -1            -1   February/2020
## 2781                                          -1            -1   February/2020
## 2782                                          -1            -1   February/2020
## 2783                                          -1            -1   February/2020
## 2784                                          -1            -1   February/2020
## 2785                                          -1            -1   February/2020
## 2786                                          -1            -1   February/2020
## 2787                                          -1            -1   February/2020
## 2788                                           1            -1   February/2020
## 2789                                           1            -1   February/2020
## 2790                                           1            -1   February/2020
## 2791                                          -1            -1   February/2020
## 2792                                          -1            -1   February/2020
## 2793                                           1            -1   February/2020
## 2794                                           1            -1   February/2020
## 2795                                          -1            -1   February/2020
## 2796                                           1            -1   February/2020
## 2797                                          -1            -1   February/2020
## 2798                                          -1            -1   February/2020
## 2799                                           1            -1   February/2020
## 2800                                          -1            -1   February/2020
## 2801                                           1            -1   February/2020
## 2802                                           1            -1   February/2020
## 2803                                           1            -1   February/2020
## 2804                                           1            -1   February/2020
## 2805                                          -1            -1   February/2020
## 2806                                          -1            -1   February/2020
## 2807                                          -1            -1   February/2020
## 2808                                           1            -1   February/2020
## 2809                                           1            -1   February/2020
## 2810                                          -1            -1   February/2020
## 2811                                          -1            -1   February/2020
## 2812                                          -1             1   February/2020
## 2813                                           1             1   February/2020
## 2814                                           1             1   February/2020
## 2815                                          -1             1   February/2020
## 2816                                          -1             1   February/2020
## 2817                                           1             1   February/2020
## 2818                                           1             1   February/2020
## 2819                                           1             1   February/2020
## 2820                                          -1             1   February/2020
## 2821                                           1             1   February/2020
## 2822                                          -1             1   February/2020
## 2823             wings torn at the end        -1             1   February/2020
## 2824                                          -1             1   February/2020
## 2825                                          -1             1   February/2020
## 2826                                           1             1   February/2020
## 2827                                          -1             1   February/2020
## 2828                                           1             1   February/2020
## 2829                                          -1             1   February/2020
## 2830                                          -1             1   February/2020
## 2831                                          -1             1   February/2020
## 2832                                           1             1   February/2020
## 2833                                          -1             1   February/2020
## 2834                                          -1             1   February/2020
## 2835                                           1             1   February/2020
## 2836                                           1             1   February/2020
## 2837                                          -1             1   February/2020
## 2838                                           1             1   February/2020
## 2839                                           1             1   February/2020
## 2840                                          -1             1   February/2020
## 2841                                          -1             1   February/2020
## 2842                                          -1             1   February/2020
## 2843                                          -1             1   February/2020
## 2844                                          -1             1   February/2020
## 2845                                          -1             1   February/2020
## 2846                                           1             1   February/2020
## 2847                                          -1             1   February/2020
## 2848                                           1             1   February/2020
## 2849                                          -1             1   February/2020
## 2850                                          -1             1   February/2020
## 2851                                          -1             1   February/2020
## 2852                                           1             1   February/2020
## 2853                                          -1             1   February/2020
## 2854                                          -1             1   February/2020
## 2855                                          -1             1   February/2020
## 2856                                           1             1   February/2020
## 2857                                          -1             1   February/2020
## 2858                                           1             1   February/2020
## 2859                                           1             1   February/2020
## 2860                                           1             1   February/2020
## 2861                                           1             1   February/2020
## 2862             wings torn at the end        -1             1   February/2020
## 2863                                          -1             1   February/2020
## 2864             wings torn at the end         1             1   February/2020
## 2865                                          -1             1   February/2020
## 2866                                          -1             1   February/2020
## 2867                                          -1             1   February/2020
## 2868                                           1             1   February/2020
## 2869                                           1             1   February/2020
## 2870                                          -1             1   February/2020
## 2871                                          -1             1   February/2020
## 2872             wings torn at the end        -1             1   February/2020
## 2873                                           1             1   February/2020
## 2874                                          -1             1   February/2020
## 2875                                          -1             1   February/2020
## 2876                                           1             1   February/2020
## 2877                                          -1             1   February/2020
## 2878                                           1             1   February/2020
## 2879                                          -1             1   February/2020
## 2880                                           1             1   February/2020
## 2881                                           1             1   February/2020
## 2882                                          -1             1   February/2020
## 2883                                          -1             1   February/2020
## 2884                                           1             1   February/2020
## 2885                                           1             1   February/2020
## 2886                                           1             1   February/2020
## 2887                                          -1             1   February/2020
## 2888                                          -1             1   February/2020
## 2889                                           1             1   February/2020
## 2890                                          -1             1   February/2020
## 2891                                          -1             1   February/2020
## 2892                                          -1             1   February/2020
## 2893                                          -1             1   February/2020
## 2894                                          -1             1   February/2020
## 2895                                           1             1   February/2020
## 2896                                          -1             1   February/2020
## 2897                                          -1             1   February/2020
## 2898                                          -1             1   February/2020
## 2899                                           1             1   February/2020
## 2900                                          -1             1   February/2020
## 2901                                           1             1   February/2020
## 2902                                           1             1   February/2020
## 2903                                          -1             1   February/2020
## 2904                                          -1             1   February/2020
## 2905                                          -1             1   February/2020
## 2906                                          -1             1   February/2020
## 2907                                          -1             1   February/2020
## 2908                                          -1             1   February/2020
## 2909                                          -1             1   February/2020
## 2910                                          -1             1   February/2020
## 2911                                           1             1   February/2020
## 2912                                           1             1   February/2020
## 2913                                           1             1   February/2020
## 2914             wings torn at the end        -1             1   February/2020
## 2915                                          -1             1   February/2020
## 2916                                          -1             1   February/2020
## 2917                                           1             1   February/2020
## 2918                                          -1             1   February/2020
## 2919                                           1             1   February/2020
## 2920                                           1             1   February/2020
## 2921             wings torn at the end        -1             1   February/2020
## 2922                                          -1             1   February/2020
## 2923                                          -1             1   February/2020
## 2924                                          -1             1   February/2020
## 2925                                          -1             1   February/2020
## 2926                                          -1             1   February/2020
## 2927                                           1             1   February/2020
## 2928                                           1             1   February/2020
## 2929                                          -1             1   February/2020
## 2930             wings torn at the end         1             1   February/2020
## 2931                                          -1             1   February/2020
## 2932                                          -1             1   February/2020
## 2933                                          -1             1   February/2020
## 2934                                          -1            -1   February/2020
## 2935                                          -1            -1   February/2020
## 2936             wings torn at the end        -1            -1   February/2020
## 2937                                          -1            -1   February/2020
## 2938                                           1            -1   February/2020
## 2939                                           1            -1   February/2020
## 2940                                           1            -1   February/2020
## 2941             wings torn at the end        -1            -1   February/2020
## 2942                                           1            -1   February/2020
## 2943                                           1            -1   February/2020
## 2944                                           1            -1   February/2020
## 2945             wings torn at the end         1            -1   February/2020
## 2946                                          -1            -1   February/2020
## 2947                                          -1            -1   February/2020
## 2948                                          -1            -1   February/2020
## 2949                                          -1            -1   February/2020
## 2950                                           1            -1   February/2020
## 2951                                          -1            -1   February/2020
## 2952                                           1            -1   February/2020
## 2953                                           1            -1   February/2020
## 2954                                          -1            -1   February/2020
## 2955                                           1            -1   February/2020
## 2956                                           1            -1   February/2020
## 2957                                          -1            -1   February/2020
## 2958                                          -1            -1   February/2020
## 2959                                          -1            -1   February/2020
## 2960             wings torn at the end        -1            -1   February/2020
## 2961                                          -1            -1   February/2020
## 2962                                          -1            -1   February/2020
## 2963                                          -1            -1   February/2020
## 2964             wings torn at the end         1            -1   February/2020
## 2965                                          -1            -1   February/2020
## 2966                                           1            -1   February/2020
## 2967                                          -1            -1   February/2020
## 2968                                           1            -1   February/2020
## 2969                                           1            -1   February/2020
## 2970                                           1            -1   February/2020
## 2971                                           1            -1   February/2020
## 2972                                          -1            -1   February/2020
## 2973             wings torn at the end        -1            -1   February/2020
## 2974                                          -1            -1   February/2020
## 2975                                           1            -1   February/2020
## 2976                                           1            -1   February/2020
## 2977                                           1            -1   February/2020
## 2978                                          -1            -1   February/2020
## 2979                                          -1            -1   February/2020
## 2980                                          -1            -1   February/2020
## 2981             wings torn at the end        -1            -1   February/2020
## 2982                                           1            -1   February/2020
## 2983                                           1            -1   February/2020
## 2984                                           1            -1   February/2020
## 2985                                          -1            -1   February/2020
## 2986                                          -1            -1   February/2020
## 2987                                          -1            -1   February/2020
## 2988                                           1            -1   February/2020
## 2989                                          -1            -1   February/2020
## 2990                                           1            -1   February/2020
## 2991                                          -1            -1   February/2020
## 2992                                          -1            -1   February/2020
## 2993                                          -1            -1   February/2020
## 2994                                           1            -1   February/2020
## 2995                                           1            -1   February/2020
## 2996                                          -1            -1   February/2020
## 2997           thorax torn on one side        -1            -1   February/2020
## 2998                                           1            -1   February/2020
## 2999             wings torn at the end        -1            -1   February/2020
## 3000                                          -1            -1   February/2020
## 3001                                          -1            -1   February/2020
## 3002                                          -1            -1   February/2020
## 3003                                           1            -1   February/2020
## 3004                                          -1            -1   February/2020
## 3005                                          -1            -1   February/2020
## 3006                                          -1            -1   February/2020
## 3007                                          -1            -1   February/2020
## 3008                                          -1            -1   February/2020
## 3009                                           1            -1   February/2020
## 3010                                           1            -1   February/2020
## 3011                                           1            -1   February/2020
## 3012                                          -1            -1   February/2020
## 3013                                          -1            -1   February/2020
## 3014                                          -1            -1   February/2020
## 3015                                           1            -1   February/2020
## 3016                                           1            -1   February/2020
## 3017                                           1            -1   February/2020
## 3018                                           1            -1   February/2020
## 3019                                           1            -1   February/2020
## 3020                                          -1            -1   February/2020
## 3021                                          -1            -1   February/2020
## 3022                                          -1            -1   February/2020
## 3023                                           1            -1   February/2020
## 3024                                          -1            -1   February/2020
## 3025                                           1            -1   February/2020
## 3026             wings torn at the end        -1            -1   February/2020
## 3027                                           1            -1   February/2020
## 3028                                          -1            -1   February/2020
## 3029                                           1            -1   February/2020
## 3030             wings torn at the end        -1            -1   February/2020
## 3031                                          -1            -1   February/2020
## 3032                                          -1            -1   February/2020
## 3033                                          -1            -1   February/2020
## 3034                                          -1            -1   February/2020
## 3035                                          -1            -1   February/2020
## 3036             wings torn at the end        -1            -1   February/2020
## 3037                                          -1            -1   February/2020
## 3038             wings torn at the end        -1            -1   February/2020
## 3039                                          -1            -1   February/2020
## 3040                                          -1            -1   February/2020
## 3041                                          -1            -1   February/2020
## 3042                                           1            -1   February/2020
## 3043                                          -1            -1   February/2020
## 3044                                          -1            -1   February/2020
## 3045                                          -1            -1   February/2020
## 3046                                          -1            -1   February/2020
## 3047                                          -1            -1   February/2020
## 3048                                          -1            -1   February/2020
## 3049                                          -1            -1   February/2020
## 3050             wings torn at the end        -1            -1   February/2020
## 3051             wings torn at the end         1            -1   February/2020
## 3052                                          -1            -1   February/2020
## 3053                                          -1            -1   February/2020
## 3054                                           1            -1   February/2020
## 3055                                          -1            -1   February/2020
## 3056                                          -1            -1   February/2020
## 3057                                          -1            -1   February/2020
## 3058                                           1            -1   February/2020
## 3059                                           1            -1   February/2020
## 3060                                          -1            -1   February/2020
## 3061                                          -1            -1   February/2020
## 3062             wings torn at the end        -1            -1   February/2020
## 3063                                          -1            -1   February/2020
## 3064                                          -1            -1   February/2020
## 3065                                          -1            -1   February/2020
## 3066                                           1            -1   February/2020
## 3067                                          -1            -1   February/2020
## 3068                                          -1            -1   February/2020
## 3069                                          -1            -1   February/2020
## 3070                                          -1            -1   February/2020
## 3071                                          -1            -1   February/2020
## 3072                                          -1            -1   February/2020
## 3073                                          -1            -1   February/2020
## 3074                                           1            -1   February/2020
## 3075                                           1            -1   February/2020
## 3076                                          -1            -1   February/2020
## 3077                                           1            -1   February/2020
## 3078                                          -1            -1   February/2020
## 3079                                          -1            -1   February/2020
## 3080                                          -1            -1   February/2020
## 3081                                          -1            -1   February/2020
## 3082                                           1            -1   February/2020
## 3083                                          -1            -1   February/2020
## 3084                                           1            -1   February/2020
## 3085                                           1            -1   February/2020
## 3086                                           1            -1   February/2020
## 3087                                           1            -1   February/2020
## 3088                                           1            -1   February/2020
## 3089                                           1            -1   February/2020
## 3090                                          -1            -1   February/2020
## 3091                                          -1            -1   February/2020
## 3092                                           1            -1   February/2020
## 3093                                           1            -1   February/2020
## 3094                                          -1            -1   February/2020
## 3095                                          -1            -1   February/2020
## 3096                                          -1            -1   February/2020
## 3097                                           1            -1   February/2020
## 3098                                          -1            -1   February/2020
## 3099                                          -1            -1   February/2020
## 3100                                           1            -1   February/2020
## 3101             wings torn at the end        -1            -1   February/2020
## 3102                                          -1            -1   February/2020
## 3103                                           1            -1   February/2020
## 3104                                          -1            -1   February/2020
## 3105                                          -1            -1   February/2020
## 3106                                           1            -1   February/2020
## 3107                                           1            -1   February/2020
## 3108                                          -1            -1   February/2020
## 3109                                          -1            -1   February/2020
## 3110                                           1            -1   February/2020
## 3111                                          -1            -1   February/2020
## 3112                                           1            -1   February/2020
## 3113                                          -1            -1   February/2020
## 3114                                           1            -1   February/2020
## 3115                                           1            -1   February/2020
## 3116                                          -1            -1   February/2020
## 3117                                          -1            -1   February/2020
## 3118                                          -1            -1   February/2020
## 3119                                           1            -1   February/2020
## 3120                                          -1            -1   February/2020
## 3121                                          -1            -1   February/2020
## 3122                                          -1            -1   February/2020
## 3123                                           1            -1   February/2020
## 3124                                           1            -1   February/2020
## 3125                                          -1            -1   February/2020
## 3126                                          -1            -1   February/2020
## 3127                                          -1            -1   February/2020
## 3128                                           1            -1   February/2020
## 3129                                           1            -1   February/2020
## 3130                                          -1            -1   February/2020
## 3131                                           1            -1   February/2020
## 3132                                          -1            -1   February/2020
## 3133                                          -1            -1   February/2020
## 3134                                          -1            -1   February/2020
## 3135                                           1            -1   February/2020
## 3136             wings torn at the end         1            -1   February/2020
## 3137                                          -1            -1   February/2020
## 3138                                           1            -1   February/2020
## 3139                                          -1            -1   February/2020
## 3140                                           1            -1   February/2020
## 3141                                          -1            -1   February/2020
## 3142                                          -1            -1   February/2020
## 3143                                           1            -1   February/2020
## 3144                                          -1            -1   February/2020
## 3145                                           1            -1   February/2020
## 3146                                           1            -1   February/2020
## 3147                                           1            -1   February/2020
## 3148                                          -1            -1   February/2020
## 3149                                           1            -1   February/2020
## 3150                                           1            -1   February/2020
## 3151                                           1            -1   February/2020
## 3152                                          -1            -1   February/2020
## 3153                                           1            -1   February/2020
## 3154                                          -1            -1   February/2020
## 3155             wings torn at the end        -1            -1   February/2020
## 3156                                          -1            -1   February/2020
## 3157                                          -1            -1   February/2020
## 3158                                          -1            -1   February/2020
## 3159                                           1            -1   February/2020
## 3160                                          -1            -1   February/2020
## 3161                                           1            -1   February/2020
## 3162                                           1            -1   February/2020
## 3163                                          -1            -1   February/2020
## 3164                                          -1            -1   February/2020
## 3165             wings torn at the end         1            -1   February/2020
## 3166                                          -1            -1   February/2020
## 3167                                           1            -1   February/2020
## 3168             wings torn at the end        -1            -1   February/2020
## 3169             wings torn at the end        -1            -1   February/2020
## 3170                                           1            -1   February/2020
## 3171                                          -1            -1   February/2020
## 3172                                          -1            -1   February/2020
## 3173                                           1            -1   February/2020
## 3174                                          -1            -1   February/2020
## 3175                                          -1            -1   February/2020
## 3176                                          -1            -1   February/2020
## 3177                                          -1            -1   February/2020
## 3178           thorax torn on one side        -1            -1   February/2020
## 3179             wings torn at the end        -1            -1   February/2020
## 3180                                          -1            -1   February/2020
## 3181                                          -1            -1   February/2020
## 3182                                          -1            -1   February/2020
## 3183                                           1            -1   February/2020
## 3184                                          -1            -1   February/2020
## 3185                                          -1            -1   February/2020
## 3186                                          -1            -1   February/2020
## 3187                                          -1            -1   February/2020
## 3188                                          -1            -1   February/2020
## 3189                                           1            -1   February/2020
## 3190                                          -1            -1   February/2020
## 3191                                          -1            -1   February/2020
## 3192                                          -1            -1   February/2020
## 3193                                          -1            -1   February/2020
## 3194                                          -1            -1   February/2020
## 3195                                           1            -1   February/2020
## 3196                                           1            -1   February/2020
## 3197                                          -1            -1   February/2020
## 3198             wings torn at the end         1            -1   February/2020
## 3199                                           1            -1   February/2020
## 3200             wings torn at the end        -1            -1   February/2020
## 3201                                          -1            -1   February/2020
## 3202                                           1            -1   February/2020
## 3203                                          -1            -1   February/2020
## 3204                                          -1            -1   February/2020
## 3205             wings torn at the end         1            -1   February/2020
## 3206                                          -1            -1   February/2020
## 3207                                          -1            -1   February/2020
## 3208                                           1            -1   February/2020
## 3209                                          -1            -1   February/2020
## 3210                                           1            -1   February/2020
## 3211                                           1            -1   February/2020
## 3212                                          -1            -1   February/2020
## 3213                                          -1            -1   February/2020
## 3214                                           1            -1   February/2020
## 3215                                          -1            -1   February/2020
## 3216                                          -1            -1   February/2020
## 3217                                           1            -1   February/2020
## 3218                                           1            -1   February/2020
## 3219                                           1            -1   February/2020
## 3220                                          -1            -1   February/2020
## 3221                                          -1            -1   February/2020
## 3222                                           1            -1   February/2020
## 3223                                           1            -1   February/2020
## 3224             wings torn at the end         1            -1   February/2020
## 3225             wings torn at the end         1            -1   February/2020
## 3226                                          -1            -1    October/2019
## 3227                                           1            -1    October/2019
## 3228                                           1            -1    October/2019
## 3229                                          -1            -1    October/2019
## 3230                                          -1            -1    October/2019
## 3231                                           1            -1    October/2019
## 3232                                           1            -1    October/2019
## 3233                                          -1            -1    October/2019
## 3234                                           1            -1    October/2019
## 3235                                           1            -1    October/2019
## 3236                                          -1            -1    October/2019
## 3237                                          -1            -1    October/2019
## 3238                                          -1            -1    October/2019
## 3239                                          -1            -1    October/2019
## 3240                                           1            -1    October/2019
## 3241                                           1            -1    October/2019
## 3242                                          -1            -1    October/2019
## 3243                                           1            -1    October/2019
## 3244                                           1            -1    October/2019
## 3245                                           1            -1    October/2019
## 3246                                          -1            -1    October/2019
## 3247                                          -1            -1    October/2019
## 3248                                          -1            -1    October/2019
## 3249                                           1            -1    October/2019
## 3250                                           1            -1    October/2019
## 3251                                          -1             1    October/2019
## 3252                                          -1             1    October/2019
## 3253                                           1             1    October/2019
## 3254                                          -1             1    October/2019
## 3255                                           1             1    October/2019
## 3256                                           1             1    October/2019
## 3257                                          -1             1    October/2019
## 3258                                           1             1    October/2019
## 3259                                           1             1    October/2019
## 3260                                           1             1    October/2019
## 3261                                          -1             1    October/2019
## 3262                                           1             1    October/2019
## 3263                                           1            -1    October/2019
## 3264                                           1            -1    October/2019
## 3265                                           1            -1    October/2019
## 3266                                           1            -1    October/2019
## 3267                                          -1            -1    October/2019
## 3268                                           1            -1    October/2019
## 3269                                          -1            -1    October/2019
## 3270                                           1            -1    October/2019
## 3271                                           1            -1    October/2019
## 3272                                           1            -1    October/2019
## 3273                                          -1            -1    October/2019
## 3274                                           1            -1    October/2019
## 3275                                           1            -1    October/2019
## 3276                                          -1            -1    October/2019
## 3277                                           1            -1    October/2019
## 3278                                          -1            -1    October/2019
## 3279                                           1            -1    October/2019
## 3280                                          -1            -1    October/2019
## 3281                                           1            -1    October/2019
## 3282                                          -1            -1    October/2019
## 3283                                           1            -1    October/2019
## 3284                                          -1            -1    October/2019
## 3285                                           1            -1    October/2019
## 3286                                          -1            -1    October/2019
## 3287                                          -1            -1    October/2019
## 3288                                          -1            -1    October/2019
## 3289                                          -1             1    October/2019
## 3290                                           1             1    October/2019
## 3291                                          -1             1    October/2019
## 3292                                          -1             1    October/2019
## 3293                                           1             1    October/2019
## 3294                                           1             1    October/2019
## 3295                                           1             1    October/2019
## 3296                                          -1             1    October/2019
## 3297                                          -1             1    October/2019
## 3298                                           1             1    October/2019
## 3299                                          -1             1    October/2019
## 3300                                           1             1    October/2019
## 3301                                          -1             1    October/2019
## 3302                                           1             1    October/2019
## 3303                                          -1             1    October/2019
## 3304                                           1             1    October/2019
## 3305                                           1             1    October/2019
## 3306                                          -1             1    October/2019
## 3307                                           1             1    October/2019
## 3308                                          -1             1    October/2019
## 3309                                          -1             1    October/2019
## 3310                                          -1            -1    October/2019
## 3311                                           1            -1    October/2019
## 3312                                          -1            -1    October/2019
## 3313                                          -1            -1    October/2019
## 3314                                           1             1   December/2016
## 3315                                          -1             1   December/2016
## 3316                                           1             1   December/2016
## 3317                                          -1             1   December/2016
## 3318                                          -1            -1    October/2019
## 3319                                          -1            -1    October/2019
## 3320                                           1            -1    October/2019
## 3321                                          -1            -1    October/2019
## 3322                                           1            -1    October/2019
## 3323                                           1            -1    October/2019
## 3324                                           1            -1    October/2019
## 3325                                          -1            -1    October/2019
## 3326                                           1            -1    October/2019
## 3327                                           1            -1    October/2019
## 3328                                          -1            -1    October/2019
## 3329                                          -1            -1    October/2019
## 3330                                          -1            -1    October/2019
## 3331                                          -1            -1    October/2019
## 3332                                           1            -1    October/2019
## 3333                                          -1            -1    October/2019
## 3334                                           1            -1    October/2019
## 3335                                           1            -1    October/2019
## 3336                                          -1            -1    October/2019
## 3337                                           1            -1    October/2019
## 3338                                          -1            -1    October/2019
## 3339                                           1            -1    October/2019
## 3340                                           1             1        May/2019
## 3341                                          -1             1        May/2019
## 3342                                           1             1        May/2019
## 3343                                           1             1        May/2019
## 3344                       torn thorax         1             1        May/2019
## 3345                                           1             1        May/2019
## 3346                                           1             1        May/2019
## 3347                                           1             1        May/2019
## 3348                                           1             1        May/2019
## 3349                                          -1             1        May/2019
## 3350                                           1             1        May/2019
## 3351                                          -1             1        May/2019
## 3352                                           1             1        May/2019
## 3353                                           1             1        May/2019
## 3354                                           1             1        May/2019
## 3355                                           1             1        May/2019
## 3356                                           1             1        May/2019
## 3357                                           1             1        May/2019
## 3358                                           1             1        May/2019
## 3359                                           1             1        May/2019
## 3360                                           1             1        May/2019
## 3361                                           1             1        May/2019
## 3362                                          -1             1        May/2019
## 3363                                          -1             1        May/2019
## 3364                                           1             1        May/2019
## 3365                                           1             1        May/2019
## 3366                                           1             1        May/2019
## 3367                                           1             1        May/2019
## 3368                                          -1             1        May/2019
## 3369                                          -1             1        May/2019
## 3370                                           1             1        May/2019
## 3371                                           1             1        May/2019
## 3372                                           1             1        May/2019
## 3373                                          -1             1        May/2019
## 3374                                           1             1        May/2019
## 3375                                          -1             1        May/2019
## 3376                                           1             1        May/2019
## 3377                                           1             1        May/2019
## 3378                                           1             1        May/2019
## 3379                                          -1             1        May/2019
## 3380                                          -1             1        May/2019
## 3381                                           1             1        May/2019
## 3382                                          -1             1        May/2019
## 3383                                           1             1        May/2019
## 3384                                           1             1        May/2019
## 3385                                           1             1        May/2019
## 3386                                          -1             1        May/2019
## 3387                                           1             1        May/2019
## 3388                                          -1             1        May/2019
## 3389                                           1             1        May/2019
## 3390                                           1             1        May/2019
## 3391                                           1             1        May/2019
## 3392                                           1             1        May/2019
## 3393                                          -1             1        May/2019
## 3394                     (8th x Mound)        -1             1        May/2019
## 3395                                           1             1        May/2019
## 3396                                           1             1        May/2019
## 3397                                           1             1        May/2019
## 3398                                           1             1        May/2019
## 3399                                          -1             1        May/2019
## 3400                                           1             1        May/2019
## 3401                                           1             1        May/2019
## 3402                        torn wings         1             1        May/2019
## 3403                                           1             1        May/2019
## 3404                                          -1             1        May/2019
## 3405                        torn wings        -1             1        May/2019
## 3406                                          -1             1        May/2019
## 3407                                           1             1        May/2019
## 3408                                           1             1        May/2019
## 3409                                           1             1        May/2019
## 3410                                           1             1        May/2019
## 3411                                          -1             1        May/2019
## 3412                                           1             1        May/2019
## 3413                                           1             1        May/2019
## 3414                                          -1             1        May/2019
## 3415                                          -1             1        May/2019
## 3416                                           1             1        May/2019
## 3417                                           1             1        May/2019
## 3418                                           1             1        May/2019
## 3419                                           1             1        May/2019
## 3420                                           1             1        May/2019
## 3421                                           1             1        May/2019
## 3422                                           1             1        May/2019
## 3423                                           1             1        May/2019
## 3424                                           1             1        May/2019
## 3425                                           1             1        May/2019
## 3426                                           1             1        May/2019
## 3427                  torn right wings         1             1        May/2019
## 3428                                           1             1        May/2019
## 3429                                           1             1        May/2019
## 3430                                          -1             1        May/2019
## 3431                                           1             1        May/2019
## 3432                                           1             1        May/2019
## 3433                                          -1             1        May/2019
## 3434                                           1             1        May/2019
## 3435                                           1             1        May/2019
## 3436                                           1             1        May/2019
## 3437                                           1             1        May/2019
## 3438                                           1             1        May/2019
## 3439                                          -1             1        May/2019
## 3440                                           1             1        May/2019
## 3441                                           1             1        May/2019
## 3442                                          -1             1        May/2019
## 3443                                           1             1        May/2019
## 3444                                           1             1        May/2019
## 3445                                           1             1        May/2019
## 3446                                          -1             1        May/2019
## 3447                        torn wings         1             1        May/2019
##      datetime      dates month_of_year wing2thorax wing_morph_binom     X.utm
## 1    Apr 2013 2013-04-01             4    2.790210                1 1010037.7
## 2    Apr 2013 2013-04-01             4    2.676375                1 1010037.7
## 3    Apr 2013 2013-04-01             4    2.812903                1 1010037.7
## 4    Apr 2013 2013-04-01             4    2.617530                1 1010037.7
## 5    Apr 2013 2013-04-01             4    2.821549                1 1010037.7
## 6    Apr 2013 2013-04-01             4    2.652027                1 1010037.7
## 7    Apr 2013 2013-04-01             4    2.794425                1 1010037.7
## 8    Apr 2013 2013-04-01             4    2.830769                1 1010037.7
## 9    Apr 2013 2013-04-01             4    2.721254                1 1010037.7
## 10   Apr 2013 2013-04-01             4    2.626984                1 1010037.7
## 11   Apr 2013 2013-04-01             4    2.707463                1 1010037.7
## 12   Apr 2013 2013-04-01             4    2.765125                1 1010037.7
## 13   Apr 2013 2013-04-01             4    2.686520                1 1010037.7
## 14   Apr 2013 2013-04-01             4    2.555556                1 1010037.7
## 15   Apr 2013 2013-04-01             4    1.716172                0 1010037.7
## 16   Apr 2013 2013-04-01             4    2.652459                1 1010037.7
## 17   Apr 2013 2013-04-01             4    2.652459                1 1010037.7
## 18   Apr 2013 2013-04-01             4    2.743316                1 1010037.7
## 19   Apr 2013 2013-04-01             4    2.770492                1 1010037.7
## 20   Apr 2013 2013-04-01             4    2.762658                1 1010037.7
## 21   Apr 2013 2013-04-01             4    2.887608                1 1010037.7
## 22   Apr 2013 2013-04-01             4    2.485246                1 1010037.7
## 23   Apr 2013 2013-04-01             4    2.848138                1 1010037.7
## 24   Apr 2013 2013-04-01             4    2.710247                1 1010037.7
## 25   Apr 2013 2013-04-01             4    2.781250                1 1010037.7
## 26   Apr 2013 2013-04-01             4    2.817857                1 1010037.7
## 27   Apr 2013 2013-04-01             4    2.717877                1 1010037.7
## 28   Apr 2013 2013-04-01             4    2.783626                1 1010037.7
## 29   Apr 2013 2013-04-01             4    1.706122                0 1010037.7
## 30   Apr 2013 2013-04-01             4    1.759036                0 1010037.7
## 31   Apr 2013 2013-04-01             4    2.697674                1 1010037.7
## 32   Apr 2013 2013-04-01             4    2.662295                1 1010037.7
## 33   Apr 2013 2013-04-01             4    2.692547                1 1010037.7
## 34   Apr 2013 2013-04-01             4    2.666667                1 1010037.7
## 35   Apr 2013 2013-04-01             4    2.025830                0 1010037.7
## 36   Apr 2013 2013-04-01             4    2.720137                1 1010037.7
## 37   Apr 2013 2013-04-01             4    2.817073                1 1010037.7
## 38   Apr 2013 2013-04-01             4    2.705263                1 1010037.7
## 39   Apr 2013 2013-04-01             4    2.542254                1 1010037.7
## 40   Apr 2013 2013-04-01             4    2.790625                1 1010037.7
## 41   Apr 2013 2013-04-01             4    2.653199                1 1010037.7
## 42   Apr 2013 2013-04-01             4    2.764085                1 1010037.7
## 43   Apr 2013 2013-04-01             4    2.889968                1 1010037.7
## 44   Apr 2013 2013-04-01             4    2.067797                0 1010037.7
## 45   Apr 2013 2013-04-01             4    2.705674                1 1010037.7
## 46   Apr 2013 2013-04-01             4    2.641509                1 1010037.7
## 47   Apr 2013 2013-04-01             4    2.933798                1 1010037.7
## 48   Apr 2013 2013-04-01             4    1.771429                0 1010037.7
## 49   Apr 2013 2013-04-01             4    2.616022                1 1010037.7
## 50   Apr 2013 2013-04-01             4    2.637037                1 1010037.7
## 51   Apr 2013 2013-04-01             4    2.537415                1 1010037.7
## 52   Apr 2013 2013-04-01             4    2.654952                1 1010037.7
## 53   Apr 2013 2013-04-01             4    2.668770                1 1010037.7
## 54   Apr 2013 2013-04-01             4    2.558583                1 1010037.7
## 55   Apr 2013 2013-04-01             4    2.946996                1 1010037.7
## 56   Apr 2013 2013-04-01             4    2.631737                1 1010037.7
## 57   Apr 2013 2013-04-01             4    2.791209                1 1010037.7
## 58   Apr 2013 2013-04-01             4    2.787986                1 1010037.7
## 59   Apr 2013 2013-04-01             4    2.747423                1 1010037.7
## 60   Apr 2013 2013-04-01             4    2.810345                1 1010037.7
## 61   Apr 2013 2013-04-01             4    2.747801                1 1010037.7
## 62   Apr 2013 2013-04-01             4    2.850318                1 1010037.7
## 63   Apr 2013 2013-04-01             4    2.569801                1 1010037.7
## 64   Apr 2013 2013-04-01             4    2.463668                1 1010037.7
## 65   Apr 2013 2013-04-01             4    2.653846                1 1010037.7
## 66   Apr 2013 2013-04-01             4    2.527851                1 1010037.7
## 67   Apr 2013 2013-04-01             4    2.811881                1 1010037.7
## 68   Apr 2013 2013-04-01             4    2.865269                1 1010037.7
## 69   Apr 2013 2013-04-01             4    2.972973                1 1010037.7
## 70   Apr 2013 2013-04-01             4    2.477816                1 1010037.7
## 71   Apr 2013 2013-04-01             4    2.828652                1 1010037.7
## 72   Apr 2013 2013-04-01             4    2.535316                1 1010037.7
## 73   Apr 2013 2013-04-01             4    2.544959                1 1010037.7
## 74   Apr 2013 2013-04-01             4    2.705882                1 1010037.7
## 75   Apr 2013 2013-04-01             4    2.639175                1 1010037.7
## 76   Apr 2013 2013-04-01             4    1.704918                0 1155594.4
## 77   Apr 2013 2013-04-01             4    2.942529                1 1155594.4
## 78   Apr 2013 2013-04-01             4    2.829060                1 1155594.4
## 79   Apr 2013 2013-04-01             4    2.712230                1 1155594.4
## 80   Apr 2013 2013-04-01             4    1.707547                0 1155594.4
## 81   Apr 2013 2013-04-01             4    2.520000                1 1155594.4
## 82   Apr 2013 2013-04-01             4    1.827004                0 1155594.4
## 83   Apr 2013 2013-04-01             4    1.639405                0 1155594.4
## 84   Apr 2013 2013-04-01             4    2.504587                1 1155594.4
## 85   Apr 2013 2013-04-01             4    1.918644                0 1155594.4
## 86   Apr 2013 2013-04-01             4    1.571984                0 1155594.4
## 87   Apr 2013 2013-04-01             4    1.728070                0 1155594.4
## 88   Apr 2013 2013-04-01             4    1.798419                0 1155594.4
## 89   Apr 2013 2013-04-01             4    1.762295                0 1155594.4
## 90   Apr 2013 2013-04-01             4    1.771863                0 1155594.4
## 91   Apr 2013 2013-04-01             4    1.670543                0 1155594.4
## 92   Apr 2013 2013-04-01             4    1.914397                0 1155594.4
## 93   Apr 2013 2013-04-01             4    2.685714                1 1155594.4
## 94   Apr 2013 2013-04-01             4    2.846154                1 1155594.4
## 95   Apr 2013 2013-04-01             4    1.638462                0 1155594.4
## 96   Apr 2013 2013-04-01             4    2.527027                1 1155594.4
## 97   Apr 2013 2013-04-01             4    2.604457                1 1155594.4
## 98   Apr 2013 2013-04-01             4    2.419825                1 1155594.4
## 99   Apr 2013 2013-04-01             4    2.513021                1 1155594.4
## 100  Apr 2013 2013-04-01             4    1.666667                0 1155594.4
## 101  Apr 2013 2013-04-01             4    2.594675                1 1155594.4
## 102  Apr 2013 2013-04-01             4    2.535088                1 1155594.4
## 103  Apr 2013 2013-04-01             4    2.120301                1 1155594.4
## 104  Apr 2013 2013-04-01             4    2.693548                1 1155594.4
## 105  Apr 2013 2013-04-01             4    2.727829                1 1155594.4
## 106  Apr 2013 2013-04-01             4    2.713396                1 1155594.4
## 107  Apr 2013 2013-04-01             4    1.417857                0 1155594.4
## 108  Apr 2013 2013-04-01             4    2.851266                1 1155594.4
## 109  Apr 2013 2013-04-01             4    2.667702                1 1155594.4
## 110  Apr 2013 2013-04-01             4    2.803448                1 1155594.4
## 111  Apr 2013 2013-04-01             4    2.746082                1 1155594.4
## 112  Apr 2013 2013-04-01             4    1.875969                0 1155594.4
## 113  Apr 2013 2013-04-01             4    2.449275                1 1155594.4
## 114  Apr 2013 2013-04-01             4    2.497396                1 1155594.4
## 115  Apr 2013 2013-04-01             4    2.506925                1 1155594.4
## 116  Apr 2013 2013-04-01             4    3.081633                1 1155594.4
## 117  Apr 2013 2013-04-01             4    2.823362                1 1155594.4
## 118  Apr 2013 2013-04-01             4    2.629747                1 1155594.4
## 119  Apr 2013 2013-04-01             4    2.787791                1 1155594.4
## 120  Apr 2013 2013-04-01             4    2.745283                1 1155594.4
## 121  Apr 2013 2013-04-01             4    2.664879                1 1155594.4
## 122  Apr 2013 2013-04-01             4    2.631429                1 1155594.4
## 123  Apr 2013 2013-04-01             4    2.652174                1 1155594.4
## 124  Apr 2013 2013-04-01             4    2.675362                1 1155594.4
## 125  Apr 2013 2013-04-01             4    2.620000                1 1155594.4
## 126  Apr 2013 2013-04-01             4    2.630573                1 1155594.4
## 127  Apr 2013 2013-04-01             4    2.794702                1 1155594.4
## 128  Apr 2013 2013-04-01             4    2.711538                1 1155594.4
## 129  Apr 2013 2013-04-01             4    2.686520                1 1155594.4
## 130  Apr 2013 2013-04-01             4    2.813609                1 1155594.4
## 131  Apr 2013 2013-04-01             4    2.691030                1 1155594.4
## 132  Apr 2013 2013-04-01             4    2.763333                1 1155594.4
## 133  Apr 2013 2013-04-01             4    2.722826                1 1155594.4
## 134  Apr 2013 2013-04-01             4    2.728000                1 1155594.4
## 135  Apr 2013 2013-04-01             4    3.003226                1 1155594.4
## 136  Apr 2013 2013-04-01             4    2.900344                1 1155594.4
## 137  Apr 2013 2013-04-01             4    2.765363                1 1155594.4
## 138  Apr 2013 2013-04-01             4    2.763077                1 1155594.4
## 139  Apr 2013 2013-04-01             4    2.956667                1 1155594.4
## 140  Apr 2013 2013-04-01             4    2.813380                1 1164740.8
## 141  Apr 2013 2013-04-01             4    2.678344                1 1164740.8
## 142  Apr 2013 2013-04-01             4    2.529114                1 1164740.8
## 143  Apr 2013 2013-04-01             4    2.707547                1 1164740.8
## 144  Apr 2013 2013-04-01             4    1.826087                0 1164740.8
## 145  Apr 2013 2013-04-01             4    2.551320                1 1164740.8
## 146  Apr 2013 2013-04-01             4    2.657609                1 1164740.8
## 147  Apr 2013 2013-04-01             4    2.974684                1 1164740.8
## 148  Apr 2013 2013-04-01             4    2.773649                1 1164740.8
## 149  Apr 2013 2013-04-01             4    2.689231                1 1164740.8
## 150  Apr 2013 2013-04-01             4    1.823276                0 1164740.8
## 151  Apr 2013 2013-04-01             4    2.799228                1 1164740.8
## 152  Apr 2013 2013-04-01             4    2.698413                1 1164740.8
## 153  Apr 2013 2013-04-01             4    2.665605                1 1164740.8
## 154  Apr 2013 2013-04-01             4    2.532353                1 1164740.8
## 155  Apr 2013 2013-04-01             4    2.708455                1 1164740.8
## 156  Apr 2013 2013-04-01             4    2.812883                1 1164740.8
## 157  Apr 2013 2013-04-01             4    2.508861                1 1164740.8
## 158  Apr 2013 2013-04-01             4    2.758389                1 1164740.8
## 159  Apr 2013 2013-04-01             4    1.986486                0 1164740.8
## 160  Apr 2013 2013-04-01             4    2.653251                1 1164740.8
## 161  Apr 2013 2013-04-01             4    1.573944                0 1164740.8
## 162  Apr 2013 2013-04-01             4    2.607046                1 1164740.8
## 163  Apr 2013 2013-04-01             4    2.689223                1 1164740.8
## 164  Apr 2013 2013-04-01             4    2.560914                1 1164740.8
## 165  Apr 2013 2013-04-01             4    2.690476                1 1164740.8
## 166  Apr 2013 2013-04-01             4    2.722741                1 1164740.8
## 167  Apr 2013 2013-04-01             4    2.649068                1 1164740.8
## 168  Apr 2013 2013-04-01             4    2.555838                1 1164740.8
## 169  Apr 2013 2013-04-01             4    2.634675                1 1164740.8
## 170  Apr 2013 2013-04-01             4    2.801242                1 1164740.8
## 171  Apr 2013 2013-04-01             4    2.684066                1 1164740.8
## 172  Apr 2013 2013-04-01             4    2.737542                1 1164740.8
## 173  Apr 2013 2013-04-01             4    2.619938                1 1164740.8
## 174  Apr 2013 2013-04-01             4    2.715753                1 1164740.8
## 175  Apr 2013 2013-04-01             4    1.679443                0 1164740.8
## 176  Apr 2013 2013-04-01             4    2.685714                1 1164740.8
## 177  Apr 2013 2013-04-01             4    2.653409                1 1164740.8
## 178  Apr 2013 2013-04-01             4    2.485294                1 1164740.8
## 179  Apr 2013 2013-04-01             4    2.595588                1 1164740.8
## 180  Apr 2013 2013-04-01             4    2.790698                1 1164740.8
## 181  Apr 2013 2013-04-01             4    2.758730                1 1164740.8
## 182  Apr 2013 2013-04-01             4    1.732510                0 1164740.8
## 183  Apr 2013 2013-04-01             4    2.637462                1 1164740.8
## 184  Apr 2013 2013-04-01             4    2.037657                0 1164740.8
## 185  Apr 2013 2013-04-01             4    2.575198                1 1164740.8
## 186  Apr 2013 2013-04-01             4    2.740061                1 1164740.8
## 187  Apr 2013 2013-04-01             4    2.668622                1 1164740.8
## 188  Apr 2013 2013-04-01             4    2.581871                1 1164740.8
## 189  Apr 2013 2013-04-01             4    1.610738                0 1164740.8
## 190  Apr 2013 2013-04-01             4    1.625000                0 1164740.8
## 191  Apr 2013 2013-04-01             4    2.873199                1 1164740.8
## 192  Apr 2013 2013-04-01             4    2.697987                1 1164740.8
## 193  Apr 2013 2013-04-01             4    1.801262                0 1164740.8
## 194  Apr 2013 2013-04-01             4    1.974729                0 1164740.8
## 195  Apr 2013 2013-04-01             4    2.530899                1 1164740.8
## 196  Apr 2013 2013-04-01             4    2.798780                1 1164740.8
## 197  Apr 2013 2013-04-01             4    2.729730                1 1164740.8
## 198  Apr 2013 2013-04-01             4    2.597633                1 1164740.8
## 199  Apr 2013 2013-04-01             4    2.653439                1 1164740.8
## 200  Apr 2013 2013-04-01             4    2.580645                1 1164740.8
## 201  Apr 2013 2013-04-01             4    2.559486                1 1032899.8
## 202  Apr 2013 2013-04-01             4    2.422481                1 1032899.8
## 203  Apr 2013 2013-04-01             4    2.635783                1 1032899.8
## 204  Apr 2013 2013-04-01             4    2.964744                1 1032899.8
## 205  Apr 2013 2013-04-01             4    2.826568                1 1032899.8
## 206  Apr 2013 2013-04-01             4    2.827309                1 1032899.8
## 207  Apr 2013 2013-04-01             4    2.722388                1 1032899.8
## 208  Apr 2013 2013-04-01             4    2.989130                1 1032899.8
## 209  Apr 2013 2013-04-01             4    2.482072                1 1032899.8
## 210  Apr 2013 2013-04-01             4    2.532680                1 1032899.8
## 211  Apr 2013 2013-04-01             4    2.796562                1 1032899.8
## 212  Apr 2013 2013-04-01             4    2.596429                1 1032899.8
## 213  Apr 2013 2013-04-01             4    2.521875                1 1032899.8
## 214  Apr 2013 2013-04-01             4    1.885932                0 1032899.8
## 215  Apr 2013 2013-04-01             4    2.396104                1 1032899.8
## 216  Apr 2013 2013-04-01             4    1.970213                0 1032899.8
## 217  Apr 2013 2013-04-01             4    2.670103                1 1032899.8
## 218  Apr 2013 2013-04-01             4    1.905797                0 1032899.8
## 219  Apr 2013 2013-04-01             4    2.744275                1 1032899.8
## 220  Apr 2013 2013-04-01             4    2.655914                1 1032899.8
## 221  Apr 2013 2013-04-01             4    2.602410                1 1032899.8
## 222  Apr 2013 2013-04-01             4    2.738255                1 1032899.8
## 223  Apr 2013 2013-04-01             4    2.858657                1 1032899.8
## 224  Apr 2013 2013-04-01             4    2.649007                1 1032899.8
## 225  Apr 2013 2013-04-01             4    1.935223                0 1032899.8
## 226  Apr 2013 2013-04-01             4    2.738170                1 1032899.8
## 227  Apr 2013 2013-04-01             4    2.608280                1 1032899.8
## 228  Apr 2013 2013-04-01             4    2.647651                1 1032899.8
## 229  Apr 2013 2013-04-01             4    1.664234                0 1032899.8
## 230  Apr 2013 2013-04-01             4    2.780769                1 1032899.8
## 231  Apr 2013 2013-04-01             4    2.727273                1 1032899.8
## 232  Apr 2013 2013-04-01             4    2.725552                1 1032899.8
## 233  Apr 2013 2013-04-01             4    2.807339                1 1032899.8
## 234  Apr 2013 2013-04-01             4    2.855596                1 1032899.8
## 235  Apr 2013 2013-04-01             4    2.809028                1 1032899.8
## 236  Apr 2013 2013-04-01             4    2.622159                1 1032899.8
## 237  Apr 2013 2013-04-01             4    2.730303                1 1032899.8
## 238  Apr 2013 2013-04-01             4    2.948718                1 1032899.8
## 239  Apr 2013 2013-04-01             4    2.762069                1 1032899.8
## 240  Apr 2013 2013-04-01             4    2.812500                1 1032899.8
## 241  Apr 2013 2013-04-01             4    2.623134                1 1032899.8
## 242  Apr 2013 2013-04-01             4    1.725191                0 1032899.8
## 243  Apr 2013 2013-04-01             4    2.569801                1 1032899.8
## 244  Apr 2013 2013-04-01             4    2.675159                1 1032899.8
## 245  Apr 2013 2013-04-01             4    2.951368                1 1032899.8
## 246  Apr 2013 2013-04-01             4    2.984848                1 1032899.8
## 247  Apr 2013 2013-04-01             4    2.969283                1 1032899.8
## 248  Apr 2013 2013-04-01             4    2.708609                1 1032899.8
## 249  Apr 2013 2013-04-01             4    2.734375                1 1032899.8
## 250  Apr 2013 2013-04-01             4    2.789474                1 1032899.8
## 251  Apr 2013 2013-04-01             4    2.703947                1 1032899.8
## 252  Apr 2013 2013-04-01             4    2.661710                1 1032899.8
## 253  Apr 2013 2013-04-01             4    2.707237                1 1032899.8
## 254  Apr 2013 2013-04-01             4    2.643411                1 1032899.8
## 255  Apr 2013 2013-04-01             4    2.935484                1 1032899.8
## 256  Apr 2013 2013-04-01             4    2.840304                1 1032899.8
## 257  Apr 2013 2013-04-01             4    2.849858                1 1032899.8
## 258  Apr 2013 2013-04-01             4    2.041985                0 1032899.8
## 259  Apr 2013 2013-04-01             4    2.670270                1 1032899.8
## 260  Apr 2013 2013-04-01             4    2.976744                1 1032899.8
## 261  Apr 2013 2013-04-01             4    2.085938                0 1000240.8
## 262  Apr 2013 2013-04-01             4    1.930502                0 1000240.8
## 263  Apr 2013 2013-04-01             4    2.455263                1 1000240.8
## 264  Apr 2013 2013-04-01             4    1.753788                0 1000240.8
## 265  Apr 2013 2013-04-01             4    2.424242                1 1000240.8
## 266  Apr 2013 2013-04-01             4    1.918182                0 1000240.8
## 267  Apr 2013 2013-04-01             4    2.739777                1 1000240.8
## 268  Apr 2013 2013-04-01             4    2.688312                1 1000240.8
## 269  Apr 2013 2013-04-01             4    2.894737                1 1000240.8
## 270  Apr 2013 2013-04-01             4    3.046099                1 1000240.8
## 271  Apr 2013 2013-04-01             4    2.666667                1 1000240.8
## 272  Apr 2013 2013-04-01             4    2.932660                1 1000240.8
## 273  Apr 2013 2013-04-01             4    2.615854                1 1000240.8
## 274  Apr 2013 2013-04-01             4    1.918149                0 1000240.8
## 275  Apr 2013 2013-04-01             4    2.904959                1 1000240.8
## 276  Apr 2013 2013-04-01             4    2.707831                1 1000240.8
## 277  Apr 2013 2013-04-01             4    2.668966                1 1000240.8
## 278  Apr 2013 2013-04-01             4    2.821549                1 1000240.8
## 279  Apr 2013 2013-04-01             4    2.678571                1 1000240.8
## 280  Apr 2013 2013-04-01             4    2.654206                1 1000240.8
## 281  Apr 2013 2013-04-01             4    1.783439                0 1000240.8
## 282  Apr 2013 2013-04-01             4    2.623824                1 1000240.8
## 283  Apr 2013 2013-04-01             4    2.597668                1 1000240.8
## 284  Apr 2013 2013-04-01             4    1.884477                0 1000240.8
## 285  Apr 2013 2013-04-01             4    2.514706                1 1000240.8
## 286  Apr 2013 2013-04-01             4    2.715655                1 1150184.3
## 287  Apr 2013 2013-04-01             4    1.722045                0 1150184.3
## 288  Apr 2013 2013-04-01             4    2.854839                1 1150184.3
## 289  Apr 2013 2013-04-01             4    2.806452                1 1150184.3
## 290  Apr 2013 2013-04-01             4    2.819048                1 1150184.3
## 291  Apr 2013 2013-04-01             4    2.856688                1 1150184.3
## 292  Apr 2013 2013-04-01             4    2.882550                1 1150184.3
## 293  Apr 2013 2013-04-01             4    1.761538                0 1150184.3
## 294  Apr 2013 2013-04-01             4    2.684211                1 1150184.3
## 295  Apr 2013 2013-04-01             4    2.100977                0 1150184.3
## 296  Apr 2013 2013-04-01             4    1.572438                0 1150184.3
## 297  Apr 2013 2013-04-01             4    1.623077                0 1150184.3
## 298  Apr 2013 2013-04-01             4    2.472119                1 1150184.3
## 299  Apr 2013 2013-04-01             4    1.725753                0 1150184.3
## 300  Apr 2013 2013-04-01             4    2.743827                1 1150184.3
## 301  Apr 2013 2013-04-01             4    2.655556                1 1150184.3
## 302  Apr 2013 2013-04-01             4    2.469965                1 1150184.3
## 303  Apr 2013 2013-04-01             4    2.585034                1 1150184.3
## 304  Apr 2013 2013-04-01             4    1.952381                0 1150184.3
## 305  Apr 2013 2013-04-01             4    2.688172                1 1150184.3
## 306  Apr 2013 2013-04-01             4    2.648208                1 1150184.3
## 307  Apr 2013 2013-04-01             4    1.830450                0 1150184.3
## 308  Apr 2013 2013-04-01             4    1.616279                0 1150184.3
## 309  Apr 2013 2013-04-01             4    2.622356                1 1150184.3
## 310  Apr 2013 2013-04-01             4    1.969605                0 1150184.3
## 311  Apr 2013 2013-04-01             4    2.091255                0 1150184.3
## 312  Apr 2013 2013-04-01             4    1.965625                0 1150184.3
## 313  Apr 2013 2013-04-01             4    2.522807                1 1150184.3
## 314  Apr 2013 2013-04-01             4    2.665635                1 1150184.3
## 315  Apr 2013 2013-04-01             4    2.495327                1 1150184.3
## 316  Apr 2013 2013-04-01             4    2.528902                1 1150184.3
## 317  Apr 2013 2013-04-01             4    1.969789                0 1150184.3
## 318  Apr 2013 2013-04-01             4    1.954984                0 1150184.3
## 319  Apr 2013 2013-04-01             4    2.781145                1 1150184.3
## 320  Apr 2013 2013-04-01             4    1.632836                0 1150184.3
## 321  Apr 2013 2013-04-01             4    2.650685                1 1150184.3
## 322  Dec 2013 2013-12-01            12    2.510703                1 1010037.7
## 323  Dec 2013 2013-12-01            12    2.753247                1 1010037.7
## 324  Dec 2013 2013-12-01            12    2.493639                1 1010037.7
## 325  Dec 2013 2013-12-01            12    2.603774                1 1010037.7
## 326  Dec 2013 2013-12-01            12    2.720109                1 1010037.7
## 327  Dec 2013 2013-12-01            12    2.598746                1 1010037.7
## 328  Dec 2013 2013-12-01            12    2.538667                1 1010037.7
## 329  Dec 2013 2013-12-01            12    2.671196                1 1010037.7
## 330  Dec 2013 2013-12-01            12    2.706806                1 1010037.7
## 331  Dec 2013 2013-12-01            12    2.700906                1 1010037.7
## 332  Dec 2013 2013-12-01            12    2.787356                1 1010037.7
## 333  Dec 2013 2013-12-01            12    1.811558                0 1010037.7
## 334  Dec 2013 2013-12-01            12    2.609687                1 1010037.7
## 335  Dec 2013 2013-12-01            12    2.732759                1 1010037.7
## 336  Dec 2013 2013-12-01            12    2.704735                1 1010037.7
## 337  Dec 2013 2013-12-01            12    2.729231                1 1010037.7
## 338  Dec 2013 2013-12-01            12    2.571429                1 1010037.7
## 339  Dec 2013 2013-12-01            12    2.661891                1 1010037.7
## 340  Dec 2013 2013-12-01            12    2.505102                1 1010037.7
## 341  Dec 2013 2013-12-01            12    2.670213                1 1010037.7
## 342  Dec 2013 2013-12-01            12    2.582210                1 1010037.7
## 343  Dec 2013 2013-12-01            12    2.735294                1 1010037.7
## 344  Dec 2013 2013-12-01            12    2.396594                1 1010037.7
## 345  Dec 2013 2013-12-01            12    2.836565                1 1010037.7
## 346  Dec 2013 2013-12-01            12    2.897611                1 1010037.7
## 347  Dec 2013 2013-12-01            12    2.495726                1 1010037.7
## 348  Dec 2013 2013-12-01            12    2.561453                1 1010037.7
## 349  Dec 2013 2013-12-01            12    2.753463                1 1010037.7
## 350  Dec 2013 2013-12-01            12    2.702918                1 1010037.7
## 351  Dec 2013 2013-12-01            12    2.883853                1 1010037.7
## 352  Dec 2013 2013-12-01            12    2.684971                1 1010037.7
## 353  Dec 2013 2013-12-01            12    2.751429                1 1010037.7
## 354  Dec 2013 2013-12-01            12    2.693767                1 1010037.7
## 355  Dec 2013 2013-12-01            12    2.548052                1 1010037.7
## 356  Dec 2013 2013-12-01            12    2.747604                1 1010037.7
## 357  Dec 2013 2013-12-01            12    2.740634                1 1010037.7
## 358  Dec 2013 2013-12-01            12    2.822742                1 1010037.7
## 359  Dec 2013 2013-12-01            12    2.586592                1 1010037.7
## 360  Dec 2013 2013-12-01            12    2.916667                1 1010037.7
## 361  Dec 2013 2013-12-01            12    2.602210                1 1010037.7
## 362  Dec 2013 2013-12-01            12    2.646113                1 1010037.7
## 363  Dec 2013 2013-12-01            12    2.829545                1 1010037.7
## 364  Dec 2013 2013-12-01            12    2.676630                1 1010037.7
## 365  Dec 2013 2013-12-01            12    2.655440                1 1010037.7
## 366  Dec 2013 2013-12-01            12    2.722930                1 1010037.7
## 367  Dec 2013 2013-12-01            12    2.640306                1 1010037.7
## 368  Dec 2013 2013-12-01            12    2.865320                1 1010037.7
## 369  Dec 2013 2013-12-01            12    2.679558                1 1010037.7
## 370  Dec 2013 2013-12-01            12    2.893617                1 1010037.7
## 371  Dec 2013 2013-12-01            12    2.948980                1 1010037.7
## 372  Dec 2013 2013-12-01            12    2.696049                1 1010037.7
## 373  Dec 2013 2013-12-01            12    2.842254                1 1010037.7
## 374  Dec 2013 2013-12-01            12    2.660057                1 1010037.7
## 375  Dec 2013 2013-12-01            12    2.675900                1 1010037.7
## 376  Dec 2013 2013-12-01            12    2.771875                1 1010037.7
## 377  Dec 2013 2013-12-01            12    2.739837                1 1010037.7
## 378  Dec 2013 2013-12-01            12    2.900826                1 1010037.7
## 379  Dec 2013 2013-12-01            12    2.706704                1 1010037.7
## 380  Dec 2013 2013-12-01            12    2.662420                1 1010037.7
## 381  Dec 2013 2013-12-01            12    2.765957                1 1010037.7
## 382  Dec 2013 2013-12-01            12    2.684211                1 1010037.7
## 383  Dec 2013 2013-12-01            12    2.831956                1 1010037.7
## 384  Dec 2013 2013-12-01            12    2.638243                1 1010037.7
## 385  Dec 2013 2013-12-01            12    2.857558                1 1010037.7
## 386  Dec 2013 2013-12-01            12    2.653951                1 1010037.7
## 387  Dec 2013 2013-12-01            12    2.689373                1 1010037.7
## 388  Dec 2013 2013-12-01            12    2.813869                1 1010037.7
## 389  Dec 2013 2013-12-01            12    2.660256                1 1010037.7
## 390  Dec 2013 2013-12-01            12    2.803763                1 1010037.7
## 391  Dec 2013 2013-12-01            12    2.721311                1 1010037.7
## 392  Dec 2013 2013-12-01            12    2.628895                1 1010037.7
## 393  Dec 2013 2013-12-01            12    2.664042                1 1010037.7
## 394  Dec 2013 2013-12-01            12    2.690476                1 1010037.7
## 395  Dec 2013 2013-12-01            12    2.923077                1 1010037.7
## 396  Dec 2013 2013-12-01            12    2.552000                1 1010037.7
## 397  Dec 2013 2013-12-01            12    2.727869                1  949182.1
## 398  Dec 2013 2013-12-01            12    2.729814                1  949182.1
## 399  Dec 2013 2013-12-01            12    2.724234                1  949182.1
## 400  Dec 2013 2013-12-01            12    2.600000                1  949182.1
## 401  Dec 2013 2013-12-01            12    2.777027                1  949182.1
## 402  Dec 2013 2013-12-01            12    2.660256                1  949182.1
## 403  Dec 2013 2013-12-01            12    2.568182                1  949182.1
## 404  Dec 2013 2013-12-01            12    2.739927                1  949182.1
## 405  Dec 2013 2013-12-01            12    2.622581                1  949182.1
## 406  Dec 2013 2013-12-01            12    2.794702                1  949182.1
## 407  Dec 2013 2013-12-01            12    2.704348                1  949182.1
## 408  Dec 2013 2013-12-01            12    2.918919                1  949182.1
## 409  Dec 2013 2013-12-01            12    2.654971                1  949182.1
## 410  Dec 2013 2013-12-01            12    2.701183                1  949182.1
## 411  Dec 2013 2013-12-01            12    1.822823                0 1155594.4
## 412  Dec 2013 2013-12-01            12    1.829412                0 1155594.4
## 413  Dec 2013 2013-12-01            12    2.416000                1 1155594.4
## 414  Dec 2013 2013-12-01            12    2.454545                1 1155594.4
## 415  Dec 2013 2013-12-01            12    1.985915                0 1155594.4
## 416  Dec 2013 2013-12-01            12    1.782609                0 1155594.4
## 417  Dec 2013 2013-12-01            12    2.858025                1 1155594.4
## 418  Dec 2013 2013-12-01            12    2.542700                1 1155594.4
## 419  Dec 2013 2013-12-01            12    1.645833                0 1155594.4
## 420  Dec 2013 2013-12-01            12    2.489583                1 1155594.4
## 421  Dec 2013 2013-12-01            12    2.140110                0 1155594.4
## 422  Dec 2013 2013-12-01            12    2.424149                1 1155594.4
## 423  Dec 2013 2013-12-01            12    1.964179                0 1155594.4
## 424  Dec 2013 2013-12-01            12    1.629518                0 1155594.4
## 425  Dec 2013 2013-12-01            12    2.785047                1 1155594.4
## 426  Dec 2013 2013-12-01            12    2.610028                1 1155594.4
## 427  Dec 2013 2013-12-01            12    1.736994                0 1155594.4
## 428  Dec 2013 2013-12-01            12    1.700704                0 1155594.4
## 429  Dec 2013 2013-12-01            12    1.787356                0 1155594.4
## 430  Dec 2013 2013-12-01            12    2.526154                1 1155594.4
## 431  Dec 2013 2013-12-01            12    2.691803                1 1155594.4
## 432  Dec 2013 2013-12-01            12    2.765886                1 1155594.4
## 433  Dec 2013 2013-12-01            12    2.457071                1 1155594.4
## 434  Dec 2013 2013-12-01            12    2.409556                1 1155594.4
## 435  Dec 2013 2013-12-01            12    1.696429                0 1155594.4
## 436  Dec 2013 2013-12-01            12    2.634483                1 1155594.4
## 437  Dec 2013 2013-12-01            12    2.096096                0 1155594.4
## 438  Dec 2013 2013-12-01            12    2.011494                0 1155594.4
## 439  Dec 2013 2013-12-01            12    2.825397                1 1155594.4
## 440  Dec 2013 2013-12-01            12    2.438692                1 1155594.4
## 441  Dec 2013 2013-12-01            12    2.522013                1 1155594.4
## 442  Dec 2013 2013-12-01            12    2.576923                1 1155594.4
## 443  Dec 2013 2013-12-01            12    2.450617                1 1155594.4
## 444  Dec 2013 2013-12-01            12    1.962500                0 1155594.4
## 445  Dec 2013 2013-12-01            12    2.650131                1 1155594.4
## 446  Dec 2013 2013-12-01            12    2.710448                1 1155594.4
## 447  Dec 2013 2013-12-01            12    2.649351                1 1155594.4
## 448  Dec 2013 2013-12-01            12    1.911864                0 1155594.4
## 449  Dec 2013 2013-12-01            12    2.022222                0 1155594.4
## 450  Dec 2013 2013-12-01            12    2.777090                1 1155594.4
## 451  Dec 2013 2013-12-01            12    1.783699                0 1155594.4
## 452  Dec 2013 2013-12-01            12    2.027397                0 1155594.4
## 453  Dec 2013 2013-12-01            12    2.808176                1 1155594.4
## 454  Dec 2013 2013-12-01            12    2.557545                1 1155594.4
## 455  Dec 2013 2013-12-01            12    2.177419                0 1155594.4
## 456  Dec 2013 2013-12-01            12    2.489933                1 1155594.4
## 457  Dec 2013 2013-12-01            12    2.529255                1 1155594.4
## 458  Dec 2013 2013-12-01            12    1.708709                0 1155594.4
## 459  Dec 2013 2013-12-01            12    2.654639                1 1155594.4
## 460  Dec 2013 2013-12-01            12    2.790634                1 1155594.4
## 461  Dec 2013 2013-12-01            12    2.622024                1 1155594.4
## 462  Dec 2013 2013-12-01            12    2.716088                1 1155594.4
## 463  Dec 2013 2013-12-01            12    2.671010                1 1164740.8
## 464  Dec 2013 2013-12-01            12    2.608466                1 1164740.8
## 465  Dec 2013 2013-12-01            12    1.575000                0 1164740.8
## 466  Dec 2013 2013-12-01            12    2.710714                1 1164740.8
## 467  Dec 2013 2013-12-01            12    2.583333                1 1164740.8
## 468  Dec 2013 2013-12-01            12    2.558642                1 1164740.8
## 469  Dec 2013 2013-12-01            12    2.760000                1 1164740.8
## 470  Dec 2013 2013-12-01            12    1.746479                0 1164740.8
## 471  Dec 2013 2013-12-01            12    2.574413                1 1164740.8
## 472  Dec 2013 2013-12-01            12    1.714286                0 1164740.8
## 473  Dec 2013 2013-12-01            12    2.646865                1 1164740.8
## 474  Dec 2013 2013-12-01            12    2.641711                1 1164740.8
## 475  Dec 2013 2013-12-01            12    2.414474                1 1164740.8
## 476  Dec 2013 2013-12-01            12    2.624585                1 1164740.8
## 477  Dec 2013 2013-12-01            12    2.622222                1 1164740.8
## 478  Dec 2013 2013-12-01            12    1.688525                0 1164740.8
## 479  Dec 2013 2013-12-01            12    1.893238                0 1164740.8
## 480  Dec 2013 2013-12-01            12    2.507042                1 1164740.8
## 481  Dec 2013 2013-12-01            12    2.457944                1 1164740.8
## 482  Dec 2013 2013-12-01            12    2.570997                1 1164740.8
## 483  Dec 2013 2013-12-01            12    2.701538                1 1164740.8
## 484  Dec 2013 2013-12-01            12    2.712375                1 1164740.8
## 485  Dec 2013 2013-12-01            12    2.592262                1 1164740.8
## 486  Dec 2013 2013-12-01            12    2.626140                1 1164740.8
## 487  Dec 2013 2013-12-01            12    2.651282                1 1164740.8
## 488  Dec 2013 2013-12-01            12    2.749311                1 1164740.8
## 489  Dec 2013 2013-12-01            12    2.799410                1 1164740.8
## 490  Dec 2013 2013-12-01            12    2.856230                1 1164740.8
## 491  Dec 2013 2013-12-01            12    2.536193                1 1164740.8
## 492  Dec 2013 2013-12-01            12    2.622419                1 1164740.8
## 493  Dec 2013 2013-12-01            12    1.634058                0 1164740.8
## 494  Dec 2013 2013-12-01            12    2.597884                1 1164740.8
## 495  Dec 2013 2013-12-01            12    2.793651                1 1032899.8
## 496  Dec 2013 2013-12-01            12    2.880137                1 1032899.8
## 497  Dec 2013 2013-12-01            12    2.778816                1 1032899.8
## 498  Dec 2013 2013-12-01            12    2.718182                1 1032899.8
## 499  Dec 2013 2013-12-01            12    2.565460                1 1032899.8
## 500  Dec 2013 2013-12-01            12    2.733108                1 1032899.8
## 501  Dec 2013 2013-12-01            12    2.826705                1 1032899.8
## 502  Dec 2013 2013-12-01            12    2.625418                1 1032899.8
## 503  Dec 2013 2013-12-01            12    2.652174                1 1032899.8
## 504  Dec 2013 2013-12-01            12    2.607345                1 1032899.8
## 505  Dec 2013 2013-12-01            12    2.562092                1 1032899.8
## 506  Dec 2013 2013-12-01            12    2.741538                1 1032899.8
## 507  Dec 2013 2013-12-01            12    2.705329                1 1032899.8
## 508  Dec 2013 2013-12-01            12    2.906433                1 1032899.8
## 509  Dec 2013 2013-12-01            12    2.959410                1 1032899.8
## 510  Dec 2013 2013-12-01            12    2.558360                1 1032899.8
## 511  Dec 2013 2013-12-01            12    2.585443                1 1032899.8
## 512  Dec 2013 2013-12-01            12    2.664835                1 1032899.8
## 513  Dec 2013 2013-12-01            12    2.821918                1 1032899.8
## 514  Dec 2013 2013-12-01            12    2.758842                1 1032899.8
## 515  Dec 2013 2013-12-01            12    2.895470                1 1032899.8
## 516  Dec 2013 2013-12-01            12    2.917808                1 1032899.8
## 517  Dec 2013 2013-12-01            12    2.733696                1 1032899.8
## 518  Dec 2013 2013-12-01            12    2.746356                1 1032899.8
## 519  Dec 2013 2013-12-01            12    2.657051                1 1032899.8
## 520  Dec 2013 2013-12-01            12    2.579125                1 1032899.8
## 521  Dec 2013 2013-12-01            12    2.870748                1 1032899.8
## 522  Dec 2013 2013-12-01            12    2.771987                1 1032899.8
## 523  Dec 2013 2013-12-01            12    2.579288                1 1032899.8
## 524  Dec 2013 2013-12-01            12    2.697674                1 1032899.8
## 525  Dec 2013 2013-12-01            12    2.735294                1 1032899.8
## 526  Dec 2013 2013-12-01            12    2.915441                1 1032899.8
## 527  Dec 2013 2013-12-01            12    2.663934                1 1032899.8
## 528  Dec 2013 2013-12-01            12    2.774648                1 1032899.8
## 529  Dec 2013 2013-12-01            12    2.919732                1 1032899.8
## 530  Dec 2013 2013-12-01            12    2.902027                1 1032899.8
## 531  Dec 2013 2013-12-01            12    2.752613                1 1032899.8
## 532  Dec 2013 2013-12-01            12    2.730263                1 1032899.8
## 533  Dec 2013 2013-12-01            12    2.735119                1 1032899.8
## 534  Dec 2013 2013-12-01            12    2.835766                1 1032899.8
## 535  Dec 2013 2013-12-01            12    2.655977                1 1032899.8
## 536  Dec 2013 2013-12-01            12    2.722222                1 1032899.8
## 537  Dec 2013 2013-12-01            12    2.563218                1 1032899.8
## 538  Dec 2013 2013-12-01            12    2.688623                1 1032899.8
## 539  Dec 2013 2013-12-01            12    2.537313                1 1032899.8
## 540  Dec 2013 2013-12-01            12    2.607143                1 1032899.8
## 541  Dec 2013 2013-12-01            12    2.542484                1 1032899.8
## 542  Dec 2013 2013-12-01            12    2.408602                1 1032899.8
## 543  Dec 2013 2013-12-01            12    2.768025                1 1032899.8
## 544  Dec 2013 2013-12-01            12    2.843206                1 1032899.8
## 545  Dec 2013 2013-12-01            12    2.672783                1 1032899.8
## 546  Dec 2013 2013-12-01            12    2.763636                1 1032899.8
## 547  Dec 2013 2013-12-01            12    3.316456                1 1032899.8
## 548  Dec 2013 2013-12-01            12    2.403955                1 1032899.8
## 549  Dec 2013 2013-12-01            12    2.426702                1 1032899.8
## 550  Dec 2013 2013-12-01            12    2.558219                1 1032899.8
## 551  Dec 2013 2013-12-01            12    2.488599                1 1032899.8
## 552  Dec 2013 2013-12-01            12    2.584270                1 1032899.8
## 553  Dec 2013 2013-12-01            12    2.828571                1 1032899.8
## 554  Dec 2013 2013-12-01            12    2.731959                1 1032899.8
## 555  Dec 2013 2013-12-01            12    2.642202                1 1032899.8
## 556  Dec 2013 2013-12-01            12    2.916667                1 1032899.8
## 557  Dec 2013 2013-12-01            12    2.373832                1 1032899.8
## 558  Dec 2013 2013-12-01            12    2.532258                1 1032899.8
## 559  Dec 2013 2013-12-01            12    2.768519                1 1032899.8
## 560  Dec 2013 2013-12-01            12    2.548476                1 1032899.8
## 561  Dec 2013 2013-12-01            12    2.847518                1 1032899.8
## 562  Dec 2013 2013-12-01            12    2.665574                1 1032899.8
## 563  Dec 2013 2013-12-01            12    2.397626                1 1032899.8
## 564  Dec 2013 2013-12-01            12    2.632867                1 1032899.8
## 565  Dec 2013 2013-12-01            12    2.568807                1 1032899.8
## 566  Dec 2013 2013-12-01            12    2.691589                1 1032899.8
## 567  Dec 2013 2013-12-01            12    2.494737                1 1032899.8
## 568  Dec 2013 2013-12-01            12    2.887755                1 1032899.8
## 569  Dec 2013 2013-12-01            12    2.564356                1 1032899.8
## 570  Dec 2013 2013-12-01            12    2.479224                1 1032899.8
## 571  Dec 2013 2013-12-01            12    2.697509                1 1032899.8
## 572  Dec 2013 2013-12-01            12    2.479310                1 1032899.8
## 573  Dec 2013 2013-12-01            12    2.797101                1 1032899.8
## 574  Dec 2013 2013-12-01            12    2.774603                1 1032899.8
## 575  Dec 2013 2013-12-01            12    2.542373                1 1032899.8
## 576  Dec 2013 2013-12-01            12    2.430199                1 1032899.8
## 577  Dec 2013 2013-12-01            12    2.636364                1 1032899.8
## 578  Dec 2013 2013-12-01            12    2.605442                1 1032899.8
## 579  Dec 2013 2013-12-01            12    2.511696                1 1000240.8
## 580  Dec 2013 2013-12-01            12    2.445355                1 1000240.8
## 581  Dec 2013 2013-12-01            12    2.395349                1 1000240.8
## 582  Dec 2013 2013-12-01            12    2.549296                1 1000240.8
## 583  Dec 2013 2013-12-01            12    2.762058                1 1000240.8
## 584  Dec 2013 2013-12-01            12    2.639731                1 1000240.8
## 585  Dec 2013 2013-12-01            12    2.550955                1 1000240.8
## 586  Dec 2013 2013-12-01            12    2.431694                1 1000240.8
## 587  Dec 2013 2013-12-01            12    2.675497                1 1000240.8
## 588  Dec 2013 2013-12-01            12    2.405488                1 1000240.8
## 589  Dec 2013 2013-12-01            12    2.584527                1 1000240.8
## 590  Dec 2013 2013-12-01            12    2.446108                1 1000240.8
## 591  Dec 2013 2013-12-01            12    2.848138                1 1000240.8
## 592  Dec 2013 2013-12-01            12    2.761194                1 1000240.8
## 593  Dec 2013 2013-12-01            12    2.662651                1 1000240.8
## 594  Dec 2013 2013-12-01            12    3.078947                1 1000240.8
## 595  Dec 2013 2013-12-01            12    2.394203                1 1000240.8
## 596  Dec 2013 2013-12-01            12    2.916667                1 1000240.8
## 597  Dec 2013 2013-12-01            12    2.670330                1 1000240.8
## 598  Dec 2013 2013-12-01            12    2.385075                1 1000240.8
## 599  Dec 2013 2013-12-01            12    2.546392                1 1000240.8
## 600  Dec 2013 2013-12-01            12    2.377465                1 1000240.8
## 601  Dec 2013 2013-12-01            12    3.013559                1 1000240.8
## 602  Dec 2013 2013-12-01            12    2.425414                1 1000240.8
## 603  Dec 2013 2013-12-01            12    2.474576                1 1000240.8
## 604  Dec 2013 2013-12-01            12    2.539432                1 1000240.8
## 605  Dec 2013 2013-12-01            12    2.562701                1 1000240.8
## 606  Dec 2013 2013-12-01            12    2.539735                1 1000240.8
## 607  Dec 2013 2013-12-01            12    2.805732                1 1000240.8
## 608  Dec 2013 2013-12-01            12    2.627451                1 1000240.8
## 609  Dec 2013 2013-12-01            12    2.473520                1 1000240.8
## 610  Dec 2013 2013-12-01            12    2.743506                1 1000240.8
## 611  Dec 2013 2013-12-01            12    2.660969                1 1000240.8
## 612  Dec 2013 2013-12-01            12    2.431884                1 1000240.8
## 613  Dec 2013 2013-12-01            12    2.926174                1 1000240.8
## 614  Dec 2013 2013-12-01            12    2.829132                1 1000240.8
## 615  Dec 2013 2013-12-01            12    2.386819                1 1000240.8
## 616  Dec 2013 2013-12-01            12    2.647059                1 1000240.8
## 617  Dec 2013 2013-12-01            12    2.748227                1 1000240.8
## 618  Dec 2013 2013-12-01            12    2.543253                1 1000240.8
## 619  Dec 2013 2013-12-01            12    2.583090                1 1000240.8
## 620  Dec 2013 2013-12-01            12    2.917431                1 1000240.8
## 621  Dec 2013 2013-12-01            12    2.629758                1 1000240.8
## 622  Dec 2013 2013-12-01            12    2.870000                1 1000240.8
## 623  Dec 2013 2013-12-01            12    2.430723                1 1000240.8
## 624  Dec 2013 2013-12-01            12    2.581994                1 1000240.8
## 625  Dec 2013 2013-12-01            12    2.480836                1 1000240.8
## 626  Dec 2013 2013-12-01            12    2.895105                1 1000240.8
## 627  Dec 2013 2013-12-01            12    2.137931                0 1000240.8
## 628  Dec 2013 2013-12-01            12    2.476190                1 1000240.8
## 629  Dec 2013 2013-12-01            12    2.504587                1 1000240.8
## 630  Dec 2013 2013-12-01            12    2.580838                1 1000240.8
## 631  Dec 2013 2013-12-01            12    3.034364                1 1000240.8
## 632  Dec 2013 2013-12-01            12    2.512968                1 1000240.8
## 633  Dec 2013 2013-12-01            12    2.810811                1 1000240.8
## 634  Dec 2013 2013-12-01            12    2.639344                1 1000240.8
## 635  Dec 2013 2013-12-01            12    2.750751                1 1000240.8
## 636  Dec 2013 2013-12-01            12    2.728707                1 1000240.8
## 637  Dec 2013 2013-12-01            12    2.597403                1 1000240.8
## 638  Dec 2013 2013-12-01            12    2.679868                1 1000240.8
## 639  Dec 2013 2013-12-01            12    2.869159                1 1000240.8
## 640  Dec 2013 2013-12-01            12    2.663194                1 1000240.8
## 641  Dec 2013 2013-12-01            12    2.508242                1 1000240.8
## 642  Dec 2013 2013-12-01            12    2.792388                1 1000240.8
## 643  Dec 2013 2013-12-01            12    2.523490                1 1000240.8
## 644  Dec 2013 2013-12-01            12    2.663082                1 1000240.8
## 645  Dec 2013 2013-12-01            12    2.589404                1 1000240.8
## 646  Dec 2013 2013-12-01            12    2.906040                1 1000240.8
## 647  Dec 2013 2013-12-01            12    2.719298                1 1000240.8
## 648  Dec 2013 2013-12-01            12    2.548495                1 1000240.8
## 649  Dec 2013 2013-12-01            12    2.702797                1 1000240.8
## 650  Dec 2013 2013-12-01            12    2.480114                1 1000240.8
## 651  Dec 2013 2013-12-01            12    2.369697                1 1000240.8
## 652  Dec 2013 2013-12-01            12    2.908012                1 1000240.8
## 653  Dec 2013 2013-12-01            12    2.654237                1 1000240.8
## 654  Dec 2013 2013-12-01            12    2.466238                1 1000240.8
## 655  Dec 2013 2013-12-01            12    2.473684                1 1000240.8
## 656  Dec 2013 2013-12-01            12    2.676768                1 1000240.8
## 657  Dec 2013 2013-12-01            12    2.836879                1 1000240.8
## 658  Dec 2013 2013-12-01            12    2.611650                1 1000240.8
## 659  Dec 2013 2013-12-01            12    2.640569                1 1000240.8
## 660  Dec 2013 2013-12-01            12    2.841509                1 1000240.8
## 661  Dec 2013 2013-12-01            12    2.817891                1 1000240.8
## 662  Dec 2013 2013-12-01            12    2.400000                1 1000240.8
## 663  Dec 2013 2013-12-01            12    2.577844                1 1000240.8
## 664  Dec 2013 2013-12-01            12    2.642458                1 1000240.8
## 665  Dec 2013 2013-12-01            12    1.961538                0 1000240.8
## 666  Dec 2013 2013-12-01            12    2.551237                1 1000240.8
## 667  Dec 2013 2013-12-01            12    2.514667                1 1000240.8
## 668  Dec 2013 2013-12-01            12    2.722045                1 1000240.8
## 669  Dec 2013 2013-12-01            12    2.642105                1 1000240.8
## 670  Dec 2013 2013-12-01            12    2.566563                1 1150184.3
## 671  Dec 2013 2013-12-01            12    2.679012                1 1150184.3
## 672  Dec 2013 2013-12-01            12    2.711974                1 1150184.3
## 673  Dec 2013 2013-12-01            12    2.741259                1 1150184.3
## 674  Dec 2013 2013-12-01            12    2.877551                1 1150184.3
## 675  Dec 2013 2013-12-01            12    2.534884                1 1150184.3
## 676  Dec 2013 2013-12-01            12    2.693069                1 1150184.3
## 677  Dec 2013 2013-12-01            12    2.828986                1 1150184.3
## 678  Dec 2013 2013-12-01            12    2.618234                1 1150184.3
## 679  Dec 2013 2013-12-01            12    2.018519                0 1150184.3
## 680  Dec 2013 2013-12-01            12    2.714754                1 1150184.3
## 681  Dec 2013 2013-12-01            12    2.648094                1 1150184.3
## 682  Dec 2013 2013-12-01            12    2.627976                1 1150184.3
## 683  Dec 2013 2013-12-01            12    2.985765                1 1150184.3
## 684  Dec 2013 2013-12-01            12    2.855634                1 1150184.3
## 685  Dec 2013 2013-12-01            12    2.703072                1 1150184.3
## 686  Dec 2013 2013-12-01            12    2.661850                1 1150184.3
## 687  Dec 2013 2013-12-01            12    2.672269                1 1150184.3
## 688  Dec 2013 2013-12-01            12    2.769634                1 1150184.3
## 689  Dec 2013 2013-12-01            12    2.633690                1 1150184.3
## 690  Dec 2013 2013-12-01            12    2.744417                1 1150184.3
## 691  Dec 2013 2013-12-01            12    2.787546                1 1150184.3
## 692  Dec 2013 2013-12-01            12    2.653125                1 1150184.3
## 693  Dec 2013 2013-12-01            12    2.911565                1 1150184.3
## 694  Dec 2013 2013-12-01            12    2.729814                1 1150184.3
## 695  Dec 2013 2013-12-01            12    2.647436                1 1150184.3
## 696  Dec 2013 2013-12-01            12    1.680934                0 1150184.3
## 697  Dec 2013 2013-12-01            12    2.759777                1 1150184.3
## 698  Dec 2013 2013-12-01            12    3.163043                1 1150184.3
## 699  Dec 2013 2013-12-01            12    2.751656                1 1150184.3
## 700  Dec 2013 2013-12-01            12    2.649231                1 1150184.3
## 701  Dec 2013 2013-12-01            12    1.982639                0 1150184.3
## 702  Dec 2013 2013-12-01            12    2.955172                1 1150184.3
## 703  Dec 2013 2013-12-01            12    1.860759                0 1150184.3
## 704  Dec 2013 2013-12-01            12    3.005865                1 1150184.3
## 705  Apr 2014 2014-04-01             4    2.594118                1  949182.1
## 706  Apr 2014 2014-04-01             4    2.665468                1  949182.1
## 707  Apr 2014 2014-04-01             4    2.680921                1  949182.1
## 708  Apr 2014 2014-04-01             4    2.652459                1  949182.1
## 709  Apr 2014 2014-04-01             4    2.796296                1  949182.1
## 710  Apr 2014 2014-04-01             4    2.606557                1  949182.1
## 711  Apr 2014 2014-04-01             4    2.780980                1  949182.1
## 712  Apr 2014 2014-04-01             4    2.599448                1  949182.1
## 713  Apr 2014 2014-04-01             4    2.944056                1  949182.1
## 714  Apr 2014 2014-04-01             4    2.833846                1  949182.1
## 715  Apr 2014 2014-04-01             4    2.729167                1  949182.1
## 716  Apr 2014 2014-04-01             4    2.754545                1  949182.1
## 717  Apr 2014 2014-04-01             4    2.664516                1  949182.1
## 718  Apr 2014 2014-04-01             4    2.508361                1  949182.1
## 719  Apr 2014 2014-04-01             4    2.699405                1  949182.1
## 720  Apr 2014 2014-04-01             4    2.802083                1  949182.1
## 721  Apr 2014 2014-04-01             4    2.643564                1  949182.1
## 722  Apr 2014 2014-04-01             4    2.564784                1  949182.1
## 723  Apr 2014 2014-04-01             4    2.638365                1  949182.1
## 724  Apr 2014 2014-04-01             4    2.603399                1  949182.1
## 725  Apr 2014 2014-04-01             4    2.672794                1  949182.1
## 726  Apr 2014 2014-04-01             4    1.830040                0  949182.1
## 727  Apr 2014 2014-04-01             4    2.611940                1  949182.1
## 728  Apr 2014 2014-04-01             4    2.521866                1  949182.1
## 729  Apr 2014 2014-04-01             4    2.795918                1  949182.1
## 730  Apr 2014 2014-04-01             4    2.707006                1  949182.1
## 731  Apr 2014 2014-04-01             4    2.663842                1  949182.1
## 732  Apr 2014 2014-04-01             4    1.806647                0  949182.1
## 733  Apr 2014 2014-04-01             4    2.570175                1  949182.1
## 734  Apr 2014 2014-04-01             4    2.947735                1  949182.1
## 735  Apr 2014 2014-04-01             4    2.636888                1  949182.1
## 736  Apr 2014 2014-04-01             4    2.766467                1  949182.1
## 737  Apr 2014 2014-04-01             4    2.800000                1  949182.1
## 738  Apr 2014 2014-04-01             4    2.694737                1  949182.1
## 739  Apr 2014 2014-04-01             4    2.693548                1  949182.1
## 740  Apr 2014 2014-04-01             4    2.771605                1  949182.1
## 741  Apr 2014 2014-04-01             4    2.713805                1  949182.1
## 742  Apr 2014 2014-04-01             4    2.699324                1  949182.1
## 743  Apr 2014 2014-04-01             4    2.639053                1  949182.1
## 744  Apr 2014 2014-04-01             4    2.870175                1  949182.1
## 745  Apr 2014 2014-04-01             4    2.581315                1  949182.1
## 746  Apr 2014 2014-04-01             4    2.699405                1  949182.1
## 747  Apr 2014 2014-04-01             4    2.720395                1  949182.1
## 748  Apr 2014 2014-04-01             4    2.754045                1  949182.1
## 749  Apr 2014 2014-04-01             4    2.631034                1  949182.1
## 750  Apr 2014 2014-04-01             4    2.589443                1  949182.1
## 751  Apr 2014 2014-04-01             4    2.595318                1  949182.1
## 752  Apr 2014 2014-04-01             4    2.795367                1  949182.1
## 753  Apr 2014 2014-04-01             4    2.808874                1 1155594.4
## 754  Apr 2014 2014-04-01             4    2.534535                1 1155594.4
## 755  Apr 2014 2014-04-01             4    2.686335                1 1155594.4
## 756  Apr 2014 2014-04-01             4    2.531088                1 1155594.4
## 757  Apr 2014 2014-04-01             4    2.923567                1 1155594.4
## 758  Apr 2014 2014-04-01             4    1.727545                0 1155594.4
## 759  Apr 2014 2014-04-01             4    1.753968                0 1155594.4
## 760  Apr 2014 2014-04-01             4    1.610738                0 1155594.4
## 761  Apr 2014 2014-04-01             4    2.043353                0 1155594.4
## 762  Apr 2014 2014-04-01             4    1.653430                0 1155594.4
## 763  Apr 2014 2014-04-01             4    1.525547                0 1155594.4
## 764  Apr 2014 2014-04-01             4    1.933908                0 1155594.4
## 765  Apr 2014 2014-04-01             4    2.655518                1 1155594.4
## 766  Apr 2014 2014-04-01             4    2.629412                1 1155594.4
## 767  Apr 2014 2014-04-01             4    2.793814                1 1155594.4
## 768  Apr 2014 2014-04-01             4    2.572755                1 1155594.4
## 769  Apr 2014 2014-04-01             4    1.541958                0 1155594.4
## 770  Apr 2014 2014-04-01             4    1.623269                0 1164740.8
## 771  Apr 2014 2014-04-01             4    1.598513                0 1164740.8
## 772  Apr 2014 2014-04-01             4    1.771930                0 1164740.8
## 773  Apr 2014 2014-04-01             4    2.501348                1 1164740.8
## 774  Apr 2014 2014-04-01             4    1.566092                0 1164740.8
## 775  Apr 2014 2014-04-01             4    1.685619                0 1164740.8
## 776  Apr 2014 2014-04-01             4    2.454006                1 1164740.8
## 777  Apr 2014 2014-04-01             4    1.887417                0 1164740.8
## 778  Apr 2014 2014-04-01             4    2.501348                1 1164740.8
## 779  Apr 2014 2014-04-01             4    1.635135                0 1164740.8
## 780  Apr 2014 2014-04-01             4    1.429054                0 1164740.8
## 781  Apr 2014 2014-04-01             4    2.442822                1 1164740.8
## 782  Apr 2014 2014-04-01             4    1.525000                0 1164740.8
## 783  Apr 2014 2014-04-01             4    2.478142                1 1164740.8
## 784  Apr 2014 2014-04-01             4    2.473988                1 1164740.8
## 785  Apr 2014 2014-04-01             4    1.542857                0 1164740.8
## 786  Apr 2014 2014-04-01             4    1.498233                0 1164740.8
## 787  Apr 2014 2014-04-01             4    1.421053                0 1164740.8
## 788  Apr 2014 2014-04-01             4    2.552941                1 1164740.8
## 789  Apr 2014 2014-04-01             4    2.597938                1 1164740.8
## 790  Apr 2014 2014-04-01             4    1.709459                0 1164740.8
## 791  Apr 2014 2014-04-01             4    2.494505                1 1164740.8
## 792  Apr 2014 2014-04-01             4    2.622807                1 1164740.8
## 793  Apr 2014 2014-04-01             4    1.561514                0 1164740.8
## 794  Apr 2014 2014-04-01             4    2.086053                0 1164740.8
## 795  Apr 2014 2014-04-01             4    1.520446                0 1164740.8
## 796  Apr 2014 2014-04-01             4    2.393782                1 1164740.8
## 797  Apr 2014 2014-04-01             4    1.479624                0 1164740.8
## 798  Apr 2014 2014-04-01             4    2.359649                1 1164740.8
## 799  Apr 2014 2014-04-01             4    1.779935                0 1164740.8
## 800  Apr 2014 2014-04-01             4    1.724739                0 1164740.8
## 801  Apr 2014 2014-04-01             4    2.667722                1 1164740.8
## 802  Apr 2014 2014-04-01             4    1.567766                0 1164740.8
## 803  Apr 2014 2014-04-01             4    2.680272                1 1164740.8
## 804  Apr 2014 2014-04-01             4    2.629820                1 1164740.8
## 805  Apr 2014 2014-04-01             4    2.749319                1 1164740.8
## 806  Apr 2014 2014-04-01             4    1.714286                0 1164740.8
## 807  Apr 2014 2014-04-01             4    1.667845                0 1164740.8
## 808  Apr 2014 2014-04-01             4    2.785965                1 1164740.8
## 809  Apr 2014 2014-04-01             4    2.619565                1 1164740.8
## 810  Apr 2014 2014-04-01             4    1.842975                0 1032899.8
## 811  Apr 2014 2014-04-01             4    2.782090                1 1032899.8
## 812  Apr 2014 2014-04-01             4    2.674740                1 1032899.8
## 813  Apr 2014 2014-04-01             4    2.824138                1 1032899.8
## 814  Apr 2014 2014-04-01             4    2.693498                1 1032899.8
## 815  Apr 2014 2014-04-01             4    2.726727                1 1032899.8
## 816  Apr 2014 2014-04-01             4    2.648387                1 1032899.8
## 817  Apr 2014 2014-04-01             4    2.686649                1 1032899.8
## 818  Apr 2014 2014-04-01             4    2.555215                1 1032899.8
## 819  Apr 2014 2014-04-01             4    2.706667                1 1032899.8
## 820  Apr 2014 2014-04-01             4    2.840391                1 1032899.8
## 821  Apr 2014 2014-04-01             4    2.637771                1 1032899.8
## 822  Apr 2014 2014-04-01             4    2.525641                1 1032899.8
## 823  Apr 2014 2014-04-01             4    2.730887                1 1032899.8
## 824  Apr 2014 2014-04-01             4    2.863481                1 1032899.8
## 825  Apr 2014 2014-04-01             4    2.827839                1 1032899.8
## 826  Apr 2014 2014-04-01             4    2.711246                1 1032899.8
## 827  Apr 2014 2014-04-01             4    1.743056                0 1032899.8
## 828  Apr 2014 2014-04-01             4    2.621993                1 1032899.8
## 829  Apr 2014 2014-04-01             4    2.598160                1 1032899.8
## 830  Apr 2014 2014-04-01             4    2.752475                1 1032899.8
## 831  Apr 2014 2014-04-01             4    2.630682                1 1032899.8
## 832  Apr 2014 2014-04-01             4    1.840000                0 1032899.8
## 833  Apr 2014 2014-04-01             4    2.665653                1 1032899.8
## 834  Apr 2014 2014-04-01             4    2.934211                1 1032899.8
## 835  Apr 2014 2014-04-01             4    2.456338                1 1032899.8
## 836  Apr 2014 2014-04-01             4    2.722071                1 1032899.8
## 837  Apr 2014 2014-04-01             4    2.523810                1 1032899.8
## 838  Apr 2014 2014-04-01             4    2.747720                1 1032899.8
## 839  Apr 2014 2014-04-01             4    1.581940                0 1032899.8
## 840  Apr 2014 2014-04-01             4    2.727586                1 1032899.8
## 841  Apr 2014 2014-04-01             4    2.772109                1 1032899.8
## 842  Apr 2014 2014-04-01             4    2.756579                1 1032899.8
## 843  Apr 2014 2014-04-01             4    2.770227                1 1032899.8
## 844  Apr 2014 2014-04-01             4    2.803175                1 1032899.8
## 845  Apr 2014 2014-04-01             4    2.472789                1 1032899.8
## 846  Apr 2014 2014-04-01             4    2.428571                1 1032899.8
## 847  Apr 2014 2014-04-01             4    2.598662                1 1032899.8
## 848  Apr 2014 2014-04-01             4    1.750000                0 1032899.8
## 849  Apr 2014 2014-04-01             4    2.727829                1 1032899.8
## 850  Apr 2014 2014-04-01             4    2.944444                1 1032899.8
## 851  Apr 2014 2014-04-01             4    2.727575                1 1032899.8
## 852  Apr 2014 2014-04-01             4    2.723810                1 1032899.8
## 853  Apr 2014 2014-04-01             4    2.631250                1 1032899.8
## 854  Apr 2014 2014-04-01             4    2.806916                1 1000240.8
## 855  Apr 2014 2014-04-01             4    2.870629                1 1000240.8
## 856  Apr 2014 2014-04-01             4    2.648387                1 1000240.8
## 857  Apr 2014 2014-04-01             4    2.727829                1 1000240.8
## 858  Apr 2014 2014-04-01             4    2.785467                1 1000240.8
## 859  Apr 2014 2014-04-01             4    2.642623                1 1000240.8
## 860  Apr 2014 2014-04-01             4    2.725948                1 1000240.8
## 861  Apr 2014 2014-04-01             4    2.710914                1 1000240.8
## 862  Apr 2014 2014-04-01             4    2.913495                1 1000240.8
## 863  Apr 2014 2014-04-01             4    2.830000                1 1000240.8
## 864  Apr 2014 2014-04-01             4    2.640669                1 1000240.8
## 865  Apr 2014 2014-04-01             4    2.741742                1 1000240.8
## 866  Apr 2014 2014-04-01             4    2.567308                1 1000240.8
## 867  Apr 2014 2014-04-01             4    2.916667                1 1000240.8
## 868  Apr 2014 2014-04-01             4    2.788690                1 1150184.3
## 869  Apr 2014 2014-04-01             4    1.882812                0 1150184.3
## 870  Apr 2014 2014-04-01             4    2.729167                1 1150184.3
## 871  Apr 2014 2014-04-01             4    1.947195                0 1150184.3
## 872  Apr 2014 2014-04-01             4    2.046610                0 1150184.3
## 873  Apr 2014 2014-04-01             4    1.876000                0 1150184.3
## 874  Apr 2014 2014-04-01             4    2.696594                1 1150184.3
## 875  Apr 2014 2014-04-01             4    2.608414                1 1150184.3
## 876  Apr 2014 2014-04-01             4    1.840989                0 1150184.3
## 877  Apr 2014 2014-04-01             4    2.116279                0 1150184.3
## 878  Apr 2014 2014-04-01             4    2.826667                1 1150184.3
## 879  Apr 2014 2014-04-01             4    2.182143                0 1150184.3
## 880  Apr 2014 2014-04-01             4    2.625749                1 1150184.3
## 881  Apr 2014 2014-04-01             4    2.792388                1 1150184.3
## 882  Apr 2014 2014-04-01             4    1.651341                0 1150184.3
## 883  Apr 2014 2014-04-01             4    2.712375                1 1150184.3
## 884  Apr 2014 2014-04-01             4    2.620787                1 1150184.3
## 885  Apr 2014 2014-04-01             4    1.678112                0 1150184.3
## 886  Apr 2014 2014-04-01             4    2.870307                1 1150184.3
## 887  Apr 2014 2014-04-01             4    2.766234                1 1150184.3
## 888  Apr 2014 2014-04-01             4    2.041199                0 1150184.3
## 889  Apr 2014 2014-04-01             4    2.518293                1 1150184.3
## 890  Apr 2014 2014-04-01             4    2.674121                1 1150184.3
## 891  Apr 2014 2014-04-01             4    2.492260                1 1150184.3
## 892  Apr 2014 2014-04-01             4    2.778157                1 1150184.3
## 893  Apr 2014 2014-04-01             4    1.585284                0 1150184.3
## 894  Apr 2014 2014-04-01             4    2.617329                1 1150184.3
## 895  Apr 2014 2014-04-01             4    1.838346                0 1150184.3
## 896  Apr 2014 2014-04-01             4    2.735395                1 1150184.3
## 897  Apr 2014 2014-04-01             4    2.584665                1 1150184.3
## 898  Apr 2014 2014-04-01             4    2.174074                0 1150184.3
## 899  Apr 2014 2014-04-01             4    1.769759                0 1150184.3
## 900  Apr 2014 2014-04-01             4    1.680162                0 1150184.3
## 901  Apr 2014 2014-04-01             4    1.900709                0 1150184.3
## 902  Apr 2014 2014-04-01             4    1.608553                0 1150184.3
## 903  Apr 2014 2014-04-01             4    2.631250                1 1150184.3
## 904  Apr 2014 2014-04-01             4    2.763473                1 1150184.3
## 905  Apr 2014 2014-04-01             4    1.742537                0 1150184.3
## 906  Apr 2014 2014-04-01             4    2.671480                1 1150184.3
## 907  Apr 2014 2014-04-01             4    2.649718                1 1150184.3
## 908  Apr 2014 2014-04-01             4    2.603604                1 1150184.3
## 909  Apr 2014 2014-04-01             4    1.599174                0 1150184.3
## 910  Apr 2014 2014-04-01             4    2.679365                1 1150184.3
## 911  Apr 2014 2014-04-01             4    2.439560                1 1150184.3
## 912  Apr 2015 2015-04-01             4    1.553191                0 1164740.8
## 913  Apr 2015 2015-04-01             4    1.794574                0 1164740.8
## 914  Apr 2015 2015-04-01             4    1.683398                0 1164740.8
## 915  Apr 2015 2015-04-01             4    2.583554                1 1164740.8
## 916  Apr 2015 2015-04-01             4    1.864151                0 1164740.8
## 917  Apr 2015 2015-04-01             4    1.619377                0 1164740.8
## 918  Apr 2015 2015-04-01             4    2.812903                1 1164740.8
## 919  Apr 2015 2015-04-01             4    2.130597                0 1164740.8
## 920  Apr 2015 2015-04-01             4    1.698690                0 1164740.8
## 921  Apr 2015 2015-04-01             4    1.692790                0 1164740.8
## 922  Apr 2015 2015-04-01             4    1.761404                0 1164740.8
## 923  Apr 2015 2015-04-01             4    1.712166                0 1164740.8
## 924  Apr 2015 2015-04-01             4    1.775701                0 1164740.8
## 925  Apr 2015 2015-04-01             4    1.655844                0 1164740.8
## 926  Apr 2015 2015-04-01             4    2.705502                1 1164740.8
## 927  Apr 2015 2015-04-01             4    1.735593                0 1164740.8
## 928  Apr 2015 2015-04-01             4    1.697211                0 1164740.8
## 929  Apr 2015 2015-04-01             4    1.606272                0 1164740.8
## 930  Apr 2015 2015-04-01             4    2.675585                1 1164740.8
## 931  Apr 2015 2015-04-01             4    1.841270                0 1164740.8
## 932  Apr 2015 2015-04-01             4    1.714801                0 1164740.8
## 933  Apr 2015 2015-04-01             4    2.615917                1 1164740.8
## 934  Apr 2015 2015-04-01             4    1.547368                0 1164740.8
## 935  Apr 2015 2015-04-01             4    2.511628                1 1164740.8
## 936  Apr 2015 2015-04-01             4    2.575221                1 1164740.8
## 937  Apr 2015 2015-04-01             4    2.644295                1 1164740.8
## 938  Apr 2015 2015-04-01             4    1.711111                0 1164740.8
## 939  Apr 2015 2015-04-01             4    1.730612                0 1164740.8
## 940  Apr 2015 2015-04-01             4    1.858209                0 1164740.8
## 941  Apr 2015 2015-04-01             4    2.596774                1 1164740.8
## 942  Apr 2015 2015-04-01             4    1.678233                0 1164740.8
## 943  Apr 2015 2015-04-01             4    1.764259                0 1164740.8
## 944  Apr 2015 2015-04-01             4    1.819923                0 1164740.8
## 945  Apr 2015 2015-04-01             4    1.733333                0 1164740.8
## 946  Apr 2015 2015-04-01             4    1.646865                0 1164740.8
## 947  Apr 2015 2015-04-01             4    1.707317                0 1164740.8
## 948  Apr 2015 2015-04-01             4    1.809524                0 1164740.8
## 949  Apr 2015 2015-04-01             4    1.809129                0 1164740.8
## 950  Apr 2015 2015-04-01             4    1.630705                0 1164740.8
## 951  Apr 2015 2015-04-01             4    1.800000                0 1164740.8
## 952  Apr 2015 2015-04-01             4    2.653595                1 1164740.8
## 953  Apr 2015 2015-04-01             4    1.898551                0 1164740.8
## 954  Apr 2015 2015-04-01             4    2.561562                0 1164740.8
## 955  Apr 2015 2015-04-01             4    1.871795                0 1164740.8
## 956  Apr 2015 2015-04-01             4    1.603077                0 1164740.8
## 957  Apr 2015 2015-04-01             4    2.721854                1 1164740.8
## 958  Apr 2015 2015-04-01             4    2.614379                0 1164740.8
## 959  Apr 2015 2015-04-01             4    1.778195                0 1164740.8
## 960  Apr 2015 2015-04-01             4    1.829365                0 1164740.8
## 961  Apr 2015 2015-04-01             4    1.767025                0 1164740.8
## 962  Apr 2015 2015-04-01             4    1.811502                0 1164740.8
## 963  Apr 2015 2015-04-01             4    2.663551                1 1032899.8
## 964  Apr 2015 2015-04-01             4    2.703583                1 1032899.8
## 965  Apr 2015 2015-04-01             4    2.881720                1 1032899.8
## 966  Apr 2015 2015-04-01             4    2.731392                1 1032899.8
## 967  Apr 2015 2015-04-01             4    2.571429                1 1032899.8
## 968  Apr 2015 2015-04-01             4    2.547401                1 1032899.8
## 969  Apr 2015 2015-04-01             4    2.674051                1 1032899.8
## 970  Apr 2015 2015-04-01             4    2.574307                1 1032899.8
## 971  Apr 2015 2015-04-01             4    2.690554                1 1032899.8
## 972  Apr 2015 2015-04-01             4    2.636628                1 1032899.8
## 973  Apr 2015 2015-04-01             4    2.550152                1 1032899.8
## 974  Apr 2015 2015-04-01             4    2.934708                1 1032899.8
## 975  Apr 2015 2015-04-01             4    2.639394                1 1032899.8
## 976  Apr 2015 2015-04-01             4    2.433584                1 1032899.8
## 977  Apr 2015 2015-04-01             4    2.636667                1 1032899.8
## 978  Apr 2015 2015-04-01             4    2.668449                1 1032899.8
## 979  Apr 2015 2015-04-01             4    2.737430                1 1032899.8
## 980  Apr 2015 2015-04-01             4    2.689944                1 1032899.8
## 981  Apr 2015 2015-04-01             4    2.467456                1 1032899.8
## 982  Apr 2015 2015-04-01             4    2.681063                1 1032899.8
## 983  Apr 2015 2015-04-01             4    2.571429                1 1032899.8
## 984  Apr 2015 2015-04-01             4    2.573427                1 1032899.8
## 985  Apr 2015 2015-04-01             4    2.620130                1 1032899.8
## 986  Apr 2015 2015-04-01             4    2.705015                1 1032899.8
## 987  Apr 2015 2015-04-01             4    2.755556                1 1032899.8
## 988  Apr 2015 2015-04-01             4    2.946023                1 1032899.8
## 989  Apr 2015 2015-04-01             4    2.664634                1 1032899.8
## 990  Apr 2015 2015-04-01             4    2.616438                1 1032899.8
## 991  Apr 2015 2015-04-01             4    2.704762                1 1032899.8
## 992  Apr 2015 2015-04-01             4    2.731629                1 1032899.8
## 993  Apr 2015 2015-04-01             4    2.731861                1 1032899.8
## 994  Apr 2015 2015-04-01             4    2.667732                1 1032899.8
## 995  Apr 2015 2015-04-01             4    2.604222                1 1032899.8
## 996  Apr 2015 2015-04-01             4    2.664894                1 1032899.8
## 997  Apr 2015 2015-04-01             4    2.693151                1 1032899.8
## 998  Apr 2015 2015-04-01             4    2.656338                1 1032899.8
## 999  Apr 2015 2015-04-01             4    2.656250                1 1032899.8
## 1000 Apr 2015 2015-04-01             4    2.666667                1 1032899.8
## 1001 Apr 2015 2015-04-01             4    2.552910                1 1032899.8
## 1002 Apr 2015 2015-04-01             4    2.661442                1 1032899.8
## 1003 Apr 2015 2015-04-01             4    2.659375                1 1032899.8
## 1004 Apr 2015 2015-04-01             4    2.736842                1 1032899.8
## 1005 Apr 2015 2015-04-01             4    2.638418                1 1032899.8
## 1006 Apr 2015 2015-04-01             4    2.717105                1 1032899.8
## 1007 Apr 2015 2015-04-01             4    2.645604                1 1032899.8
## 1008 Apr 2015 2015-04-01             4    2.788690                1 1032899.8
## 1009 Apr 2015 2015-04-01             4    2.541796                1 1032899.8
## 1010 Apr 2015 2015-04-01             4    2.605333                1 1032899.8
## 1011 Apr 2015 2015-04-01             4    2.746835                1 1032899.8
## 1012 Apr 2015 2015-04-01             4    2.661376                1 1032899.8
## 1013 Apr 2015 2015-04-01             4    2.730061                1 1032899.8
## 1014 Apr 2015 2015-04-01             4    2.753247                1 1032899.8
## 1015 Apr 2015 2015-04-01             4    2.887052                1 1032899.8
## 1016 Apr 2015 2015-04-01             4    2.516575                1 1000240.8
## 1017 Apr 2015 2015-04-01             4    2.796825                1 1000240.8
## 1018 Apr 2015 2015-04-01             4    2.737003                1 1000240.8
## 1019 Apr 2015 2015-04-01             4    2.763231                1 1000240.8
## 1020 Apr 2015 2015-04-01             4    3.021148                1 1000240.8
## 1021 Apr 2015 2015-04-01             4    2.567657                1 1000240.8
## 1022 Apr 2015 2015-04-01             4    2.728395                1 1000240.8
## 1023 Apr 2015 2015-04-01             4    2.841935                1 1000240.8
## 1024 Apr 2015 2015-04-01             4    2.926421                1 1000240.8
## 1025 Apr 2015 2015-04-01             4    2.556410                1 1000240.8
## 1026 Apr 2015 2015-04-01             4    1.821538                0 1000240.8
## 1027 Apr 2015 2015-04-01             4    2.914089                1 1000240.8
## 1028 Apr 2015 2015-04-01             4    2.798658                1 1000240.8
## 1029 Apr 2015 2015-04-01             4    2.813725                1 1000240.8
## 1030 Apr 2015 2015-04-01             4    2.693182                1 1000240.8
## 1031 Apr 2015 2015-04-01             4    2.874214                1 1000240.8
## 1032 Apr 2015 2015-04-01             4    2.828070                1 1000240.8
## 1033 Apr 2015 2015-04-01             4    2.755486                1 1000240.8
## 1034 Apr 2015 2015-04-01             4    2.764120                1 1000240.8
## 1035 Apr 2015 2015-04-01             4    2.563187                1 1000240.8
## 1036 Apr 2015 2015-04-01             4    2.581921                1 1000240.8
## 1037 Apr 2015 2015-04-01             4    2.813253                1 1000240.8
## 1038 Apr 2015 2015-04-01             4    2.781538                1 1000240.8
## 1039 Apr 2015 2015-04-01             4    2.651297                1 1000240.8
## 1040 Apr 2015 2015-04-01             4    2.723776                1 1000240.8
## 1041 Apr 2015 2015-04-01             4    2.027778                0 1000240.8
## 1042 Apr 2015 2015-04-01             4    2.736232                1 1000240.8
## 1043 Apr 2015 2015-04-01             4    2.581267                1 1000240.8
## 1044 Apr 2015 2015-04-01             4    2.250689                1 1000240.8
## 1045 Apr 2015 2015-04-01             4    2.750000                1 1000240.8
## 1046 Apr 2015 2015-04-01             4    2.660714                1 1000240.8
## 1047 Apr 2015 2015-04-01             4    2.818815                1 1000240.8
## 1048 Apr 2015 2015-04-01             4    1.715328                0 1000240.8
## 1049 Apr 2015 2015-04-01             4    3.048544                1 1000240.8
## 1050 Apr 2015 2015-04-01             4    2.744262                1 1000240.8
## 1051 Apr 2015 2015-04-01             4    2.594771                1 1000240.8
## 1052 Apr 2015 2015-04-01             4    1.689320                0 1150184.3
## 1053 Apr 2015 2015-04-01             4    2.682635                1 1150184.3
## 1054 Apr 2015 2015-04-01             4    1.601974                0 1150184.3
## 1055 Apr 2015 2015-04-01             4    1.732143                0 1150184.3
## 1056 Apr 2015 2015-04-01             4    2.544262                1 1150184.3
## 1057 Apr 2015 2015-04-01             4    2.509485                1 1150184.3
## 1058 Apr 2015 2015-04-01             4    2.679894                1 1150184.3
## 1059 Apr 2015 2015-04-01             4    1.631769                0 1150184.3
## 1060 Apr 2015 2015-04-01             4    2.600575                1 1150184.3
## 1061 Apr 2015 2015-04-01             4    2.591592                1 1150184.3
## 1062 Apr 2015 2015-04-01             4    1.474048                0 1150184.3
## 1063 Apr 2015 2015-04-01             4    2.589888                1 1150184.3
## 1064 Dec 2016 2016-12-01            12    2.564417                1  949182.1
## 1065 Dec 2016 2016-12-01            12    2.743516                1  949182.1
## 1066 Dec 2016 2016-12-01            12    3.006472                1  949182.1
## 1067 Dec 2016 2016-12-01            12    2.691030                1  949182.1
## 1068 Dec 2016 2016-12-01            12    2.844444                1  949182.1
## 1069 Dec 2016 2016-12-01            12    2.539846                1  949182.1
## 1070 Dec 2016 2016-12-01            12    2.575198                1  949182.1
## 1071 Dec 2016 2016-12-01            12    2.654494                1  949182.1
## 1072 Dec 2016 2016-12-01            12    2.626741                1  949182.1
## 1073 Dec 2016 2016-12-01            12    2.635097                1  949182.1
## 1074 Dec 2016 2016-12-01            12    2.662207                1  949182.1
## 1075 Dec 2016 2016-12-01            12    2.742297                1  949182.1
## 1076 Dec 2016 2016-12-01            12    2.728395                1  949182.1
## 1077 Dec 2016 2016-12-01            12    2.710692                1  949182.1
## 1078 Dec 2016 2016-12-01            12    2.726994                1  949182.1
## 1079 Dec 2016 2016-12-01            12    2.808451                1  949182.1
## 1080 Dec 2016 2016-12-01            12    2.672535                1  949182.1
## 1081 Dec 2016 2016-12-01            12    2.609290                1  949182.1
## 1082 Dec 2016 2016-12-01            12    2.587432                1  949182.1
## 1083 Dec 2016 2016-12-01            12    2.699659                1  949182.1
## 1084 Dec 2016 2016-12-01            12    2.756545                1  949182.1
## 1085 Dec 2016 2016-12-01            12    2.749296                1  949182.1
## 1086 Dec 2016 2016-12-01            12    2.716463                1  949182.1
## 1087 Dec 2016 2016-12-01            12    2.673653                1  949182.1
## 1088 Dec 2016 2016-12-01            12    2.604502                1  949182.1
## 1089 Dec 2016 2016-12-01            12    2.528024                1  949182.1
## 1090 Dec 2016 2016-12-01            12    2.694006                1  949182.1
## 1091 Dec 2016 2016-12-01            12    2.722380                1  949182.1
## 1092 Dec 2016 2016-12-01            12    2.584615                1  949182.1
## 1093 Dec 2016 2016-12-01            12    2.687117                1  949182.1
## 1094 Dec 2016 2016-12-01            12    2.648936                1  949182.1
## 1095 Dec 2016 2016-12-01            12    2.677419                1  949182.1
## 1096 Dec 2016 2016-12-01            12    2.487261                1  949182.1
## 1097 Dec 2016 2016-12-01            12    2.639205                1  949182.1
## 1098 Dec 2016 2016-12-01            12    2.108911                0  949182.1
## 1099 Dec 2016 2016-12-01            12    2.600000                1  949182.1
## 1100 Dec 2016 2016-12-01            12    2.657343                1  949182.1
## 1101 Dec 2016 2016-12-01            12    2.632708                1  949182.1
## 1102 Dec 2016 2016-12-01            12    2.811502                1  949182.1
## 1103 Dec 2016 2016-12-01            12    2.605714                1  949182.1
## 1104 Dec 2016 2016-12-01            12    2.786408                1  949182.1
## 1105 Dec 2016 2016-12-01            12    2.640483                1  949182.1
## 1106 Dec 2016 2016-12-01            12    2.669697                1  949182.1
## 1107 Dec 2016 2016-12-01            12    1.603279                0  949182.1
## 1108 Dec 2016 2016-12-01            12    2.785340                1  949182.1
## 1109 Dec 2016 2016-12-01            12    2.794872                1  949182.1
## 1110 Dec 2016 2016-12-01            12    2.299611                0  949182.1
## 1111 Dec 2016 2016-12-01            12    2.700326                1  949182.1
## 1112 Dec 2016 2016-12-01            12    2.719444                1  949182.1
## 1113 Dec 2016 2016-12-01            12    2.573099                1  949182.1
## 1114 Dec 2016 2016-12-01            12    2.530405                0  949182.1
## 1115 Dec 2016 2016-12-01            12    3.076412                1  949182.1
## 1116 Dec 2016 2016-12-01            12    2.856688                1  949182.1
## 1117 Dec 2016 2016-12-01            12    2.886667                1  949182.1
## 1118 Dec 2016 2016-12-01            12    2.721739                1  949182.1
## 1119 Dec 2016 2016-12-01            12    2.726496                1  949182.1
## 1120 Dec 2016 2016-12-01            12    2.743056                1  949182.1
## 1121 Dec 2016 2016-12-01            12    2.800000                1 1155594.4
## 1122 Dec 2016 2016-12-01            12    1.616725                0 1155594.4
## 1123 Dec 2016 2016-12-01            12    1.702422                0 1155594.4
## 1124 Dec 2016 2016-12-01            12    2.661585                1 1155594.4
## 1125 Dec 2016 2016-12-01            12    2.750760                1 1155594.4
## 1126 Dec 2016 2016-12-01            12    1.666667                0 1155594.4
## 1127 Dec 2016 2016-12-01            12    2.789617                1 1155594.4
## 1128 Dec 2016 2016-12-01            12    2.752542                1 1155594.4
## 1129 Dec 2016 2016-12-01            12    1.663158                0 1155594.4
## 1130 Dec 2016 2016-12-01            12    2.729299                1 1155594.4
## 1131 Dec 2016 2016-12-01            12    2.889241                1 1155594.4
## 1132 Dec 2016 2016-12-01            12    2.818750                1 1155594.4
## 1133 Dec 2016 2016-12-01            12    2.733746                1 1155594.4
## 1134 Dec 2016 2016-12-01            12    2.641096                1 1174715.3
## 1135 Dec 2016 2016-12-01            12    2.601719                1 1174715.3
## 1136 Dec 2016 2016-12-01            12    2.660969                1 1174715.3
## 1137 Dec 2016 2016-12-01            12    1.731884                0 1174715.3
## 1138 Dec 2016 2016-12-01            12    2.787162                1 1174715.3
## 1139 Dec 2016 2016-12-01            12    1.850000                0 1174715.3
## 1140 Dec 2016 2016-12-01            12    2.780405                1 1174715.3
## 1141 Dec 2016 2016-12-01            12    2.550409                1 1174715.3
## 1142 Dec 2016 2016-12-01            12    2.721264                1 1174715.3
## 1143 Dec 2016 2016-12-01            12    2.410494                1 1174715.3
## 1144 Dec 2016 2016-12-01            12    2.571066                1 1174715.3
## 1145 Dec 2016 2016-12-01            12    1.847973                0 1174715.3
## 1146 Dec 2016 2016-12-01            12    2.262774                0 1174715.3
## 1147 Dec 2016 2016-12-01            12    2.814286                1 1174715.3
## 1148 Dec 2016 2016-12-01            12    2.527950                1 1174715.3
## 1149 Dec 2016 2016-12-01            12    2.610778                1 1174715.3
## 1150 Dec 2016 2016-12-01            12    2.713826                1 1174715.3
## 1151 Dec 2016 2016-12-01            12    2.580000                1 1174715.3
## 1152 Dec 2016 2016-12-01            12    2.662921                1 1174715.3
## 1153 Dec 2016 2016-12-01            12    2.539735                1 1174715.3
## 1154 Dec 2016 2016-12-01            12    2.716511                1 1174715.3
## 1155 Dec 2016 2016-12-01            12    1.653846                0 1174715.3
## 1156 Dec 2016 2016-12-01            12    2.370370                1 1174715.3
## 1157 Dec 2016 2016-12-01            12    1.694006                0 1174715.3
## 1158 Dec 2016 2016-12-01            12    2.665706                1 1174715.3
## 1159 Dec 2016 2016-12-01            12    2.014286                0 1174715.3
## 1160 Dec 2016 2016-12-01            12    2.473545                1 1174715.3
## 1161 Dec 2016 2016-12-01            12    2.557065                1 1174715.3
## 1162 Dec 2016 2016-12-01            12    2.678808                1 1174715.3
## 1163 Dec 2016 2016-12-01            12    2.638889                1 1174715.3
## 1164 Dec 2016 2016-12-01            12    2.495601                1 1174715.3
## 1165 Dec 2016 2016-12-01            12    2.510511                1 1174715.3
## 1166 Dec 2016 2016-12-01            12    2.539326                1 1174715.3
## 1167 Dec 2016 2016-12-01            12    2.652778                1 1174715.3
## 1168 Dec 2016 2016-12-01            12    1.706320                0 1174715.3
## 1169 Dec 2016 2016-12-01            12    2.787781                1 1174715.3
## 1170 Dec 2016 2016-12-01            12    1.702422                0 1174715.3
## 1171 Dec 2016 2016-12-01            12    2.232558                0 1174715.3
## 1172 Dec 2016 2016-12-01            12    1.682692                0 1174715.3
## 1173 Dec 2016 2016-12-01            12    2.584098                1 1174715.3
## 1174 Dec 2016 2016-12-01            12    2.593315                1 1174715.3
## 1175 Dec 2016 2016-12-01            12    2.187879                0 1174715.3
## 1176 Dec 2016 2016-12-01            12    2.638806                1 1174715.3
## 1177 Dec 2016 2016-12-01            12    2.484419                1 1174715.3
## 1178 Dec 2016 2016-12-01            12    2.652308                1 1174715.3
## 1179 Dec 2016 2016-12-01            12    1.693662                0 1174715.3
## 1180 Dec 2016 2016-12-01            12    2.790123                1 1174715.3
## 1181 Dec 2016 2016-12-01            12    2.195122                0 1174715.3
## 1182 Dec 2016 2016-12-01            12    2.481928                1 1174715.3
## 1183 Dec 2016 2016-12-01            12    2.688581                1 1174715.3
## 1184 Dec 2016 2016-12-01            12    2.665595                1 1174715.3
## 1185 Dec 2016 2016-12-01            12    2.703571                1 1174715.3
## 1186 Dec 2016 2016-12-01            12    2.607717                1 1174715.3
## 1187 Dec 2016 2016-12-01            12    2.368564                1 1164740.8
## 1188 Dec 2016 2016-12-01            12    2.776271                1 1164740.8
## 1189 Dec 2016 2016-12-01            12    2.613333                1 1164740.8
## 1190 Dec 2016 2016-12-01            12    2.036424                0 1164740.8
## 1191 Dec 2016 2016-12-01            12    2.460568                1 1164740.8
## 1192 Dec 2016 2016-12-01            12    2.615836                1 1164740.8
## 1193 Dec 2016 2016-12-01            12    2.161376                0 1164740.8
## 1194 Dec 2016 2016-12-01            12    2.660870                1 1164740.8
## 1195 Dec 2016 2016-12-01            12    2.140541                0 1164740.8
## 1196 Dec 2016 2016-12-01            12    2.545455                1 1164740.8
## 1197 Dec 2016 2016-12-01            12    2.682243                1 1164740.8
## 1198 Dec 2016 2016-12-01            12    2.718182                1 1034251.3
## 1199 Dec 2016 2016-12-01            12    2.581818                1 1034251.3
## 1200 Dec 2016 2016-12-01            12    2.777385                1 1034251.3
## 1201 Dec 2016 2016-12-01            12    2.850932                1 1034251.3
## 1202 Dec 2016 2016-12-01            12    2.882143                1 1034251.3
## 1203 Dec 2016 2016-12-01            12    2.688103                1 1034251.3
## 1204 Dec 2016 2016-12-01            12    2.742029                1 1034251.3
## 1205 Dec 2016 2016-12-01            12    1.873199                0 1034251.3
## 1206 Dec 2016 2016-12-01            12    2.744479                1 1034251.3
## 1207 Dec 2016 2016-12-01            12    2.833333                1 1034251.3
## 1208 Dec 2016 2016-12-01            12    2.651376                1 1034251.3
## 1209 Dec 2016 2016-12-01            12    2.786232                1 1034251.3
## 1210 Dec 2016 2016-12-01            12    2.807309                1 1034251.3
## 1211 Dec 2016 2016-12-01            12    2.821053                1 1034251.3
## 1212 Dec 2016 2016-12-01            12    2.755172                1 1034251.3
## 1213 Dec 2016 2016-12-01            12    2.761610                1  999804.3
## 1214 Dec 2016 2016-12-01            12    2.893175                1  999804.3
## 1215 Dec 2016 2016-12-01            12    2.675676                1  999804.3
## 1216 Dec 2016 2016-12-01            12    2.914894                1  999804.3
## 1217 Dec 2016 2016-12-01            12    2.766272                1  999804.3
## 1218 Dec 2016 2016-12-01            12    2.790698                1  999804.3
## 1219 Dec 2016 2016-12-01            12    3.007407                1  999804.3
## 1220 Dec 2016 2016-12-01            12    2.840116                1  999804.3
## 1221 Dec 2016 2016-12-01            12    2.909408                1  999804.3
## 1222 Dec 2016 2016-12-01            12    2.959707                1  999804.3
## 1223 Dec 2016 2016-12-01            12    2.837748                1  999804.3
## 1224 Dec 2016 2016-12-01            12    2.809689                1  999804.3
## 1225 Dec 2016 2016-12-01            12    2.833333                1  999804.3
## 1226 Dec 2016 2016-12-01            12    3.000000                1  999804.3
## 1227 Dec 2016 2016-12-01            12    2.919614                1  999804.3
## 1228 Dec 2016 2016-12-01            12    3.127907                1  999804.3
## 1229 Dec 2016 2016-12-01            12    2.866450                1  999804.3
## 1230 Dec 2016 2016-12-01            12    2.710843                1  999804.3
## 1231 Dec 2016 2016-12-01            12    2.729373                1  999804.3
## 1232 Dec 2016 2016-12-01            12    3.000000                1  999804.3
## 1233 Dec 2016 2016-12-01            12    2.466667                1 1000240.8
## 1234 Dec 2016 2016-12-01            12    2.776836                1 1000240.8
## 1235 Dec 2016 2016-12-01            12    2.611594                1 1000240.8
## 1236 Dec 2016 2016-12-01            12    2.530055                1 1000240.8
## 1237 Dec 2016 2016-12-01            12    2.603352                1 1000240.8
## 1238 Dec 2016 2016-12-01            12    2.797101                1 1000240.8
## 1239 Dec 2016 2016-12-01            12    2.744792                1 1000240.8
## 1240 Dec 2016 2016-12-01            12    2.895082                1 1000240.8
## 1241 Dec 2016 2016-12-01            12    2.718841                1 1000240.8
## 1242 Dec 2016 2016-12-01            12    2.845455                1 1000240.8
## 1243 Dec 2016 2016-12-01            12    2.702941                1 1000240.8
## 1244 Dec 2016 2016-12-01            12    1.792049                0 1000240.8
## 1245 Dec 2016 2016-12-01            12    2.533537                1 1000240.8
## 1246 Dec 2016 2016-12-01            12    2.832168                1 1000240.8
## 1247 Dec 2016 2016-12-01            12    2.760736                1 1000240.8
## 1248 Dec 2016 2016-12-01            12    2.766892                1 1000240.8
## 1249 Dec 2016 2016-12-01            12    2.558065                1 1000240.8
## 1250 Dec 2016 2016-12-01            12    2.672414                1 1000240.8
## 1251 Dec 2016 2016-12-01            12    2.674931                1 1000240.8
## 1252 Dec 2016 2016-12-01            12    2.974843                1 1000240.8
## 1253 Dec 2016 2016-12-01            12          NA                1 1000240.8
## 1254 Dec 2016 2016-12-01            12    2.501538                1 1000240.8
## 1255 Dec 2016 2016-12-01            12    2.822485                1 1000240.8
## 1256 Dec 2016 2016-12-01            12    2.656642                1 1000240.8
## 1257 Dec 2016 2016-12-01            12    2.693662                1 1000240.8
## 1258 Dec 2016 2016-12-01            12    2.518519                1 1000240.8
## 1259 Dec 2016 2016-12-01            12    2.678161                1 1000240.8
## 1260 Dec 2016 2016-12-01            12    2.821326                1 1000240.8
## 1261 Dec 2016 2016-12-01            12    2.629179                1 1000240.8
## 1262 Dec 2016 2016-12-01            12    2.535897                1 1000240.8
## 1263 Dec 2016 2016-12-01            12    2.595679                1 1000240.8
## 1264 Dec 2016 2016-12-01            12    2.737542                1 1000240.8
## 1265 Dec 2016 2016-12-01            12    2.739255                1 1000240.8
## 1266 Dec 2016 2016-12-01            12    2.729032                1 1000240.8
## 1267 Dec 2016 2016-12-01            12    2.686007                1 1000240.8
## 1268 Dec 2016 2016-12-01            12    2.738889                1 1000240.8
## 1269 Dec 2016 2016-12-01            12    2.632312                1 1000240.8
## 1270 Dec 2016 2016-12-01            12    2.779264                1 1000240.8
## 1271 Dec 2016 2016-12-01            12    2.689024                1 1000240.8
## 1272 Dec 2016 2016-12-01            12    2.678808                1 1000240.8
## 1273 Dec 2016 2016-12-01            12    2.781350                1 1000240.8
## 1274 Dec 2016 2016-12-01            12    2.888179                1 1000240.8
## 1275 Dec 2016 2016-12-01            12    2.642405                1 1000240.8
## 1276 Dec 2016 2016-12-01            12    2.731629                1 1000240.8
## 1277 Dec 2016 2016-12-01            12    2.710963                1 1000240.8
## 1278 Dec 2016 2016-12-01            12    2.027778                0 1152004.7
## 1279 Dec 2016 2016-12-01            12    2.716612                1 1152004.7
## 1280 Dec 2016 2016-12-01            12    2.931271                1 1152004.7
## 1281 Dec 2016 2016-12-01            12    1.671587                0 1152004.7
## 1282 Dec 2016 2016-12-01            12    2.699422                1 1152004.7
## 1283 Dec 2016 2016-12-01            12    2.739550                1 1152004.7
## 1284 Dec 2016 2016-12-01            12    1.798635                0 1152004.7
## 1285 Dec 2016 2016-12-01            12    2.790036                1 1152004.7
## 1286 Dec 2016 2016-12-01            12    2.607843                1 1152004.7
## 1287 Dec 2016 2016-12-01            12    1.745704                0 1152004.7
## 1288 Dec 2016 2016-12-01            12    2.733974                1 1152004.7
## 1289 Dec 2016 2016-12-01            12    1.828947                0 1152004.7
## 1290 Dec 2016 2016-12-01            12    1.579505                0 1152004.7
## 1291 Dec 2016 2016-12-01            12    1.807692                0 1152004.7
## 1292 Dec 2016 2016-12-01            12    1.827476                0 1152004.7
## 1293 Dec 2016 2016-12-01            12    2.663580                1 1152004.7
## 1294 Dec 2016 2016-12-01            12    2.389439                1 1152004.7
## 1295 Dec 2016 2016-12-01            12    2.694215                1 1152004.7
## 1296 Dec 2016 2016-12-01            12    2.922360                1 1152004.7
## 1297 Dec 2016 2016-12-01            12    2.792244                1 1152004.7
## 1298 Dec 2016 2016-12-01            12    1.532915                0 1152004.7
## 1299 Dec 2016 2016-12-01            12    1.740614                0 1152004.7
## 1300 Dec 2016 2016-12-01            12    2.900709                1 1152004.7
## 1301 Dec 2016 2016-12-01            12    2.184375                0 1152004.7
## 1302 Dec 2016 2016-12-01            12    1.716912                0 1152004.7
## 1303 Dec 2016 2016-12-01            12    2.728302                1 1152004.7
## 1304 Dec 2016 2016-12-01            12    2.580858                1 1152004.7
## 1305 Dec 2016 2016-12-01            12    2.071429                0 1152004.7
## 1306 Dec 2016 2016-12-01            12    2.678788                1 1152004.7
## 1307 Dec 2016 2016-12-01            12    2.635452                1 1152004.7
## 1308 Dec 2016 2016-12-01            12    2.605797                1 1152004.7
## 1309 Dec 2016 2016-12-01            12    2.613383                1 1152004.7
## 1310 Dec 2016 2016-12-01            12    2.722222                1 1152004.7
## 1311 Dec 2016 2016-12-01            12    2.646465                1 1152004.7
## 1312 Dec 2016 2016-12-01            12    1.655022                0 1152004.7
## 1313 Dec 2016 2016-12-01            12    1.635762                0 1152004.7
## 1314 Dec 2016 2016-12-01            12    2.619377                1 1152004.7
## 1315 Aug 2017 2017-08-01             8    2.769481                1  949670.6
## 1316 Aug 2017 2017-08-01             8    2.755034                1  949670.6
## 1317 Aug 2017 2017-08-01             8    2.607843                1  949670.6
## 1318 Aug 2017 2017-08-01             8    2.299663                0  949670.6
## 1319 Aug 2017 2017-08-01             8    2.816129                1  949670.6
## 1320 Aug 2017 2017-08-01             8    2.779026                1  949670.6
## 1321 Aug 2017 2017-08-01             8    2.225806                0  949670.6
## 1322 Aug 2017 2017-08-01             8    2.645963                1  949670.6
## 1323 Aug 2017 2017-08-01             8    2.675900                1  949670.6
## 1324 Aug 2017 2017-08-01             8    2.757862                1  949670.6
## 1325 Aug 2017 2017-08-01             8    2.685246                1  949670.6
## 1326 Aug 2017 2017-08-01             8    2.732143                1  949670.6
## 1327 Aug 2017 2017-08-01             8    2.609610                1  949670.6
## 1328 Aug 2017 2017-08-01             8    2.663818                1  949670.6
## 1329 Aug 2017 2017-08-01             8    2.857143                1  949670.6
## 1330 Aug 2017 2017-08-01             8    2.672297                1  949670.6
## 1331 Aug 2017 2017-08-01             8    2.090301                0  949670.6
## 1332 Aug 2017 2017-08-01             8    2.578348                1  949670.6
## 1333 Aug 2017 2017-08-01             8    2.525373                1  949670.6
## 1334 Aug 2017 2017-08-01             8    2.721519                1  949670.6
## 1335 Aug 2017 2017-08-01             8    2.815789                1  949670.6
## 1336 Aug 2017 2017-08-01             8    2.631737                1  949670.6
## 1337 Aug 2017 2017-08-01             8    2.807829                1  949670.6
## 1338 Aug 2017 2017-08-01             8    2.674658                1  949670.6
## 1339 Aug 2017 2017-08-01             8    2.728188                1  949670.6
## 1340 Aug 2017 2017-08-01             8    2.144876                0  949670.6
## 1341 Aug 2017 2017-08-01             8    2.702312                1  949670.6
## 1342 Aug 2017 2017-08-01             8    2.443425                1  949670.6
## 1343 Aug 2017 2017-08-01             8    2.713805                1  949670.6
## 1344 Aug 2017 2017-08-01             8    2.680251                1  949670.6
## 1345 Aug 2017 2017-08-01             8    2.681818                1  949670.6
## 1346 Aug 2017 2017-08-01             8    2.574648                1  949670.6
## 1347 Aug 2017 2017-08-01             8    2.548896                1  949670.6
## 1348 Aug 2017 2017-08-01             8    2.789474                1  949670.6
## 1349 Aug 2017 2017-08-01             8    2.737003                1  949670.6
## 1350 Aug 2017 2017-08-01             8    2.700000                1  949670.6
## 1351 Aug 2017 2017-08-01             8    2.740223                1  949670.6
## 1352 Aug 2017 2017-08-01             8    2.730435                1  949670.6
## 1353 Aug 2017 2017-08-01             8    2.762376                1  949670.6
## 1354 Aug 2017 2017-08-01             8    2.676976                1  949670.6
## 1355 Aug 2017 2017-08-01             8    2.726761                1  949670.6
## 1356 Aug 2017 2017-08-01             8    2.712991                1  949670.6
## 1357 Aug 2017 2017-08-01             8    2.725989                1  949670.6
## 1358 Aug 2017 2017-08-01             8    1.697183                0  949670.6
## 1359 Aug 2017 2017-08-01             8    2.785479                1  949670.6
## 1360 Aug 2017 2017-08-01             8    2.752778                1  949670.6
## 1361 Aug 2017 2017-08-01             8    2.818182                1  949670.6
## 1362 Aug 2017 2017-08-01             8    2.791809                1  949670.6
## 1363 Aug 2017 2017-08-01             8    2.657658                1  949670.6
## 1364 Aug 2017 2017-08-01             8    2.517483                1  949670.6
## 1365 Aug 2017 2017-08-01             8    2.735669                1  949670.6
## 1366 Aug 2017 2017-08-01             8    2.808023                1  949670.6
## 1367 Aug 2017 2017-08-01             8    2.730519                1  949670.6
## 1368 Aug 2017 2017-08-01             8    2.740845                1  949670.6
## 1369 Aug 2017 2017-08-01             8    2.601744                1  949670.6
## 1370 Aug 2017 2017-08-01             8    2.728223                1  949670.6
## 1371 Aug 2017 2017-08-01             8    2.616959                1  949670.6
## 1372 Aug 2017 2017-08-01             8    2.649573                1  949670.6
## 1373 Aug 2017 2017-08-01             8    2.873134                1  949670.6
## 1374 Aug 2017 2017-08-01             8    2.223881                0  949670.6
## 1375 Aug 2017 2017-08-01             8    2.635514                1 1153133.5
## 1376 Aug 2017 2017-08-01             8    2.072368                0 1153133.5
## 1377 Aug 2017 2017-08-01             8    2.627168                1 1153133.5
## 1378 Aug 2017 2017-08-01             8    2.638889                1 1153133.5
## 1379 Aug 2017 2017-08-01             8    1.665541                0 1153133.5
## 1380 Aug 2017 2017-08-01             8    2.696793                1 1153133.5
## 1381 Aug 2017 2017-08-01             8    2.561538                1 1153133.5
## 1382 Aug 2017 2017-08-01             8    2.511173                1 1153133.5
## 1383 Aug 2017 2017-08-01             8    2.693333                1 1153133.5
## 1384 Aug 2017 2017-08-01             8    2.860215                1 1153133.5
## 1385 Aug 2017 2017-08-01             8    2.749164                1 1153133.5
## 1386 Aug 2017 2017-08-01             8    2.695187                1 1153133.5
## 1387 Aug 2017 2017-08-01             8    2.572327                1 1153133.5
## 1388 Aug 2017 2017-08-01             8    2.601156                1 1153133.5
## 1389 Aug 2017 2017-08-01             8    2.543478                1 1153133.5
## 1390 Aug 2017 2017-08-01             8    2.710191                1 1153133.5
## 1391 Aug 2017 2017-08-01             8    2.552817                1 1153133.5
## 1392 Aug 2017 2017-08-01             8    2.701695                1 1153133.5
## 1393 Aug 2017 2017-08-01             8    1.756757                0 1153133.5
## 1394 Aug 2017 2017-08-01             8    2.590625                1 1153133.5
## 1395 Aug 2017 2017-08-01             8    2.722054                1 1153133.5
## 1396 Aug 2017 2017-08-01             8    2.722930                1 1153133.5
## 1397 Aug 2017 2017-08-01             8    2.646341                1 1153133.5
## 1398 Aug 2017 2017-08-01             8    2.714286                1 1153133.5
## 1399 Aug 2017 2017-08-01             8    2.621469                1 1153133.5
## 1400 Aug 2017 2017-08-01             8    2.583815                1 1153133.5
## 1401 Aug 2017 2017-08-01             8    2.581662                1 1153133.5
## 1402 Aug 2017 2017-08-01             8    2.554839                1 1153133.5
## 1403 Aug 2017 2017-08-01             8    1.708487                0 1153133.5
## 1404 Aug 2017 2017-08-01             8    2.820755                1 1153133.5
## 1405 Aug 2017 2017-08-01             8    2.787356                1 1153133.5
## 1406 Aug 2017 2017-08-01             8    2.397059                1 1153133.5
## 1407 Aug 2017 2017-08-01             8    2.369863                1 1153133.5
## 1408 Aug 2017 2017-08-01             8    2.098540                0 1153133.5
## 1409 Aug 2017 2017-08-01             8    2.681347                1 1153133.5
## 1410 Aug 2017 2017-08-01             8    2.680233                1 1153133.5
## 1411 Aug 2017 2017-08-01             8    2.674912                1 1153133.5
## 1412 Aug 2017 2017-08-01             8    2.758410                1 1153133.5
## 1413 Aug 2017 2017-08-01             8    2.631902                1 1153133.5
## 1414 Aug 2017 2017-08-01             8    2.679083                1 1153133.5
## 1415 Aug 2017 2017-08-01             8    2.692042                1 1153133.5
## 1416 Aug 2017 2017-08-01             8    2.600515                1 1153133.5
## 1417 Aug 2017 2017-08-01             8    2.465054                1 1153133.5
## 1418 Aug 2017 2017-08-01             8    1.588652                0 1153133.5
## 1419 Aug 2017 2017-08-01             8    2.725979                1 1153133.5
## 1420 Aug 2017 2017-08-01             8    2.790909                1 1153133.5
## 1421 Aug 2017 2017-08-01             8    2.628169                1 1153133.5
## 1422 Aug 2017 2017-08-01             8    2.549488                1 1153133.5
## 1423 Aug 2017 2017-08-01             8    2.748588                1 1153133.5
## 1424 Aug 2017 2017-08-01             8    2.686275                1 1153133.5
## 1425 Aug 2017 2017-08-01             8    2.757764                1 1153133.5
## 1426 Aug 2017 2017-08-01             8    2.837758                1 1153133.5
## 1427 Aug 2017 2017-08-01             8    2.706070                1 1153133.5
## 1428 Aug 2017 2017-08-01             8    2.661808                1 1153133.5
## 1429 Aug 2017 2017-08-01             8    2.648101                1 1153133.5
## 1430 Aug 2017 2017-08-01             8    2.549575                1 1153133.5
## 1431 Aug 2017 2017-08-01             8    2.707831                1 1153133.5
## 1432 Aug 2017 2017-08-01             8    2.766026                1 1153133.5
## 1433 Aug 2017 2017-08-01             8    2.784264                1 1153133.5
## 1434 Aug 2017 2017-08-01             8    2.602041                1 1153133.5
## 1435 Aug 2017 2017-08-01             8    2.713924                1 1153133.5
## 1436 Aug 2017 2017-08-01             8    2.750000                1 1153133.5
## 1437 Aug 2017 2017-08-01             8    2.649852                1 1153133.5
## 1438 Aug 2017 2017-08-01             8    2.621891                1 1153133.5
## 1439 Aug 2017 2017-08-01             8    2.754839                1 1153133.5
## 1440 Aug 2017 2017-08-01             8    2.742331                1 1153133.5
## 1441 Aug 2017 2017-08-01             8    2.763077                1 1153133.5
## 1442 Aug 2017 2017-08-01             8    2.598784                1 1153133.5
## 1443 Aug 2017 2017-08-01             8    2.825243                1 1153133.5
## 1444 Aug 2017 2017-08-01             8    2.762058                1 1153133.5
## 1445 Aug 2017 2017-08-01             8    2.544794                1 1153133.5
## 1446 Aug 2017 2017-08-01             8    2.745407                1 1153133.5
## 1447 Aug 2017 2017-08-01             8    2.617162                1 1153133.5
## 1448 Aug 2017 2017-08-01             8    2.763407                1 1153133.5
## 1449 Aug 2017 2017-08-01             8    2.693671                1 1153133.5
## 1450 Aug 2017 2017-08-01             8    2.757009                1 1153133.5
## 1451 Aug 2017 2017-08-01             8    2.932394                1 1153133.5
## 1452 Aug 2017 2017-08-01             8    2.712121                1 1153133.5
## 1453 Aug 2017 2017-08-01             8    2.659459                1 1153133.5
## 1454 Aug 2017 2017-08-01             8    2.857143                1 1153133.5
## 1455 Aug 2017 2017-08-01             8    2.651376                1 1153133.5
## 1456 Aug 2017 2017-08-01             8    2.739247                1 1153133.5
## 1457 Aug 2017 2017-08-01             8    2.671779                1 1153133.5
## 1458 Aug 2017 2017-08-01             8    2.694268                1 1153133.5
## 1459 Aug 2017 2017-08-01             8    2.559113                1 1153133.5
## 1460 Aug 2017 2017-08-01             8    2.729050                1 1153133.5
## 1461 Aug 2017 2017-08-01             8    2.698361                1 1153133.5
## 1462 Aug 2017 2017-08-01             8    2.688347                1 1153133.5
## 1463 Aug 2017 2017-08-01             8    2.707602                1 1153133.5
## 1464 Aug 2017 2017-08-01             8    2.666667                1 1153133.5
## 1465 Aug 2017 2017-08-01             8    2.652893                1 1153133.5
## 1466 Aug 2017 2017-08-01             8    2.711688                1 1153133.5
## 1467 Aug 2017 2017-08-01             8    2.814404                1 1153133.5
## 1468 Aug 2017 2017-08-01             8    2.704969                1 1153133.5
## 1469 Aug 2017 2017-08-01             8    2.692090                1 1153133.5
## 1470 Aug 2017 2017-08-01             8    2.803175                1 1153133.5
## 1471 Aug 2017 2017-08-01             8    2.820144                1 1153133.5
## 1472 Aug 2017 2017-08-01             8    2.753846                1 1153133.5
## 1473 Aug 2017 2017-08-01             8    2.506112                1 1153133.5
## 1474 Aug 2017 2017-08-01             8    2.653333                1 1153133.5
## 1475 Aug 2017 2017-08-01             8    2.577259                1 1153133.5
## 1476 Aug 2017 2017-08-01             8    2.669492                1 1153133.5
## 1477 Aug 2017 2017-08-01             8    2.672872                1 1153133.5
## 1478 Aug 2017 2017-08-01             8    2.582210                1 1153133.5
## 1479 Aug 2017 2017-08-01             8    2.622283                1 1153133.5
## 1480 Aug 2017 2017-08-01             8    2.615183                1 1153133.5
## 1481 Aug 2017 2017-08-01             8    2.645963                1 1153133.5
## 1482 Aug 2017 2017-08-01             8    2.663317                1 1153133.5
## 1483 Aug 2017 2017-08-01             8    2.597884                1 1153133.5
## 1484 Aug 2017 2017-08-01             8    2.806548                1 1153133.5
## 1485 Aug 2017 2017-08-01             8    2.721180                1 1153133.5
## 1486 Aug 2017 2017-08-01             8    2.664935                1 1153133.5
## 1487 Aug 2017 2017-08-01             8    2.784247                1 1153133.5
## 1488 Aug 2017 2017-08-01             8    2.752294                1 1153133.5
## 1489 Aug 2017 2017-08-01             8    2.761610                1 1153133.5
## 1490 Aug 2017 2017-08-01             8    2.768730                1 1153133.5
## 1491 Aug 2017 2017-08-01             8    2.691131                1 1153133.5
## 1492 Aug 2017 2017-08-01             8    2.711656                1 1153133.5
## 1493 Aug 2017 2017-08-01             8    2.726519                1 1153133.5
## 1494 Aug 2017 2017-08-01             8    2.698413                1 1153133.5
## 1495 Aug 2017 2017-08-01             8    2.815013                1 1153133.5
## 1496 Aug 2017 2017-08-01             8    2.835484                1 1153133.5
## 1497 Aug 2017 2017-08-01             8    2.726727                1 1153133.5
## 1498 Aug 2017 2017-08-01             8    2.624339                1 1153133.5
## 1499 Aug 2017 2017-08-01             8    2.728435                1 1153133.5
## 1500 Aug 2017 2017-08-01             8    2.803681                1 1153133.5
## 1501 Aug 2017 2017-08-01             8    2.969697                1 1153133.5
## 1502 Aug 2017 2017-08-01             8    2.580110                1 1165445.0
## 1503 Aug 2017 2017-08-01             8    2.757475                1 1165445.0
## 1504 Aug 2017 2017-08-01             8    2.882759                1 1165445.0
## 1505 Aug 2017 2017-08-01             8    1.789474                0 1165445.0
## 1506 Aug 2017 2017-08-01             8    2.769231                1 1165445.0
## 1507 Aug 2017 2017-08-01             8    2.600000                1 1165445.0
## 1508 Aug 2017 2017-08-01             8    2.748175                1 1165445.0
## 1509 Aug 2017 2017-08-01             8    2.687273                1 1165445.0
## 1510 Aug 2017 2017-08-01             8    2.691643                1 1165445.0
## 1511 Aug 2017 2017-08-01             8    2.598639                1 1165445.0
## 1512 Aug 2017 2017-08-01             8    2.754491                1 1165445.0
## 1513 Aug 2017 2017-08-01             8    1.756458                0 1165445.0
## 1514 Aug 2017 2017-08-01             8    2.651466                1 1165445.0
## 1515 Aug 2017 2017-08-01             8    2.596721                1 1165445.0
## 1516 Aug 2017 2017-08-01             8    2.813149                1 1165445.0
## 1517 Aug 2017 2017-08-01             8    2.481928                1 1165445.0
## 1518 Aug 2017 2017-08-01             8    2.577419                1 1165445.0
## 1519 Aug 2017 2017-08-01             8    2.785714                1 1165442.5
## 1520 Aug 2017 2017-08-01             8    2.630814                1 1165442.5
## 1521 Aug 2017 2017-08-01             8    2.540541                1 1165442.5
## 1522 Aug 2017 2017-08-01             8    2.618076                1 1165442.5
## 1523 Aug 2017 2017-08-01             8    2.593923                1 1165442.5
## 1524 Aug 2017 2017-08-01             8    1.810811                0 1165442.5
## 1525 Aug 2017 2017-08-01             8    1.785714                0 1165442.5
## 1526 Aug 2017 2017-08-01             8    2.894737                1 1165442.5
## 1527 Aug 2017 2017-08-01             8    2.768392                1 1165442.5
## 1528 Aug 2017 2017-08-01             8    2.588785                1 1165442.5
## 1529 Aug 2017 2017-08-01             8    2.581749                1 1165442.5
## 1530 Aug 2017 2017-08-01             8    2.713896                1 1165442.5
## 1531 Aug 2017 2017-08-01             8    2.697740                1 1165442.5
## 1532 Aug 2017 2017-08-01             8    2.631068                1 1165442.5
## 1533 Aug 2017 2017-08-01             8    2.695971                1 1165442.5
## 1534 Aug 2017 2017-08-01             8    2.741135                1 1165442.5
## 1535 Aug 2017 2017-08-01             8    1.948718                0 1165442.5
## 1536 Aug 2017 2017-08-01             8    2.743056                1 1165442.5
## 1537 Aug 2017 2017-08-01             8    2.700000                1 1165438.4
## 1538 Aug 2017 2017-08-01             8    2.614943                1 1165438.4
## 1539 Aug 2017 2017-08-01             8    2.646865                1 1165438.4
## 1540 Aug 2017 2017-08-01             8    2.642651                1 1165438.4
## 1541 Aug 2017 2017-08-01             8    1.815094                0 1165438.4
## 1542 Aug 2017 2017-08-01             8    2.751534                1 1165438.4
## 1543 Aug 2017 2017-08-01             8    2.698413                1 1165438.4
## 1544 Aug 2017 2017-08-01             8    2.678344                1 1165438.4
## 1545 Aug 2017 2017-08-01             8    1.745520                0 1165438.4
## 1546 Aug 2017 2017-08-01             8    1.693103                0 1165438.4
## 1547 Aug 2017 2017-08-01             8    2.492401                1 1165438.4
## 1548 Aug 2017 2017-08-01             8    2.663793                1 1165438.4
## 1549 Aug 2017 2017-08-01             8    1.734982                0 1165438.4
## 1550 Aug 2017 2017-08-01             8    2.792763                1 1165438.4
## 1551 Aug 2017 2017-08-01             8    1.893701                0 1165438.4
## 1552 Aug 2017 2017-08-01             8    1.894737                0 1165438.4
## 1553 Aug 2017 2017-08-01             8    2.673973                1 1165438.4
## 1554 Aug 2017 2017-08-01             8    2.924342                1 1165438.4
## 1555 Aug 2017 2017-08-01             8    1.699659                0 1165438.4
## 1556 Aug 2017 2017-08-01             8    2.622074                1 1165438.4
## 1557 Aug 2017 2017-08-01             8    2.720430                1 1165438.4
## 1558 Aug 2017 2017-08-01             8    2.588972                1 1165438.4
## 1559 Aug 2017 2017-08-01             8    2.796667                1 1165438.4
## 1560 Aug 2017 2017-08-01             8    1.757679                0 1165438.4
## 1561 Aug 2017 2017-08-01             8    2.766871                1 1165438.4
## 1562 Aug 2017 2017-08-01             8    1.866412                0 1165438.4
## 1563 Aug 2017 2017-08-01             8    1.715517                0 1165438.4
## 1564 Aug 2017 2017-08-01             8    1.858369                0 1165438.4
## 1565 Aug 2017 2017-08-01             8    1.750000                0 1165438.4
## 1566 Aug 2017 2017-08-01             8    1.690196                0 1165438.4
## 1567 Aug 2017 2017-08-01             8    1.937888                0 1165438.4
## 1568 Aug 2017 2017-08-01             8    2.814394                1 1165438.4
## 1569 Aug 2017 2017-08-01             8    1.704380                0 1165438.4
## 1570 Aug 2017 2017-08-01             8    2.749129                1 1165438.4
## 1571 Aug 2017 2017-08-01             8    2.271605                0 1165438.4
## 1572 Aug 2017 2017-08-01             8    1.824561                0 1165438.4
## 1573 Aug 2017 2017-08-01             8    2.737542                1 1165438.4
## 1574 Aug 2017 2017-08-01             8    2.444744                1 1174719.0
## 1575 Aug 2017 2017-08-01             8    2.763736                1 1174719.0
## 1576 Aug 2017 2017-08-01             8    2.674699                1 1174719.0
## 1577 Aug 2017 2017-08-01             8    2.968858                1 1174719.0
## 1578 Aug 2017 2017-08-01             8    2.748485                1 1174719.0
## 1579 Aug 2017 2017-08-01             8    2.770308                1 1174719.0
## 1580 Aug 2017 2017-08-01             8    2.707006                1 1174719.0
## 1581 Aug 2017 2017-08-01             8    2.649547                1 1174719.0
## 1582 Aug 2017 2017-08-01             8    2.541219                1 1174719.0
## 1583 Aug 2017 2017-08-01             8    2.776536                1 1174719.0
## 1584 Aug 2017 2017-08-01             8    3.048860                1 1174719.0
## 1585 Aug 2017 2017-08-01             8    2.679310                1 1174719.0
## 1586 Aug 2017 2017-08-01             8    1.787149                0 1174719.0
## 1587 Aug 2017 2017-08-01             8    2.806584                1 1174719.0
## 1588 Aug 2017 2017-08-01             8    1.778656                0 1174719.0
## 1589 Aug 2017 2017-08-01             8    2.601852                1 1174719.0
## 1590 Aug 2017 2017-08-01             8    2.741818                1 1174719.0
## 1591 Aug 2017 2017-08-01             8    2.839879                1 1174719.0
## 1592 Aug 2017 2017-08-01             8    2.660000                1 1174719.0
## 1593 Aug 2017 2017-08-01             8    1.854839                0 1174719.0
## 1594 Aug 2017 2017-08-01             8    2.831715                1 1034256.3
## 1595 Aug 2017 2017-08-01             8    2.596306                1 1034256.3
## 1596 Aug 2017 2017-08-01             8    2.702703                1 1034256.3
## 1597 Aug 2017 2017-08-01             8    2.647841                1 1034256.3
## 1598 Aug 2017 2017-08-01             8    2.663690                1 1034256.3
## 1599 Aug 2017 2017-08-01             8    2.664516                1 1034256.3
## 1600 Aug 2017 2017-08-01             8    2.779070                1 1034256.3
## 1601 Aug 2017 2017-08-01             8    2.696078                1 1034256.3
## 1602 Aug 2017 2017-08-01             8    2.650273                1 1034256.3
## 1603 Aug 2017 2017-08-01             8    2.850365                1 1034256.3
## 1604 Aug 2017 2017-08-01             8    2.766551                1 1034256.3
## 1605 Aug 2017 2017-08-01             8    2.779605                1 1034256.3
## 1606 Aug 2017 2017-08-01             8    2.678571                1 1034256.3
## 1607 Aug 2017 2017-08-01             8    2.660057                1 1034256.3
## 1608 Aug 2017 2017-08-01             8    2.612069                1 1034256.3
## 1609 Aug 2017 2017-08-01             8    1.834586                0 1034256.3
## 1610 Aug 2017 2017-08-01             8    2.644699                1 1034256.3
## 1611 Aug 2017 2017-08-01             8    1.775801                0 1034256.3
## 1612 Aug 2017 2017-08-01             8    2.546980                1 1034256.3
## 1613 Aug 2017 2017-08-01             8    2.731988                1 1034256.3
## 1614 Aug 2017 2017-08-01             8    2.645963                1 1034256.3
## 1615 Aug 2017 2017-08-01             8    2.630573                1 1034256.3
## 1616 Aug 2017 2017-08-01             8    2.724359                1 1034256.3
## 1617 Aug 2017 2017-08-01             8    2.553719                1 1034256.3
## 1618 Aug 2017 2017-08-01             8    2.604294                1 1034256.3
## 1619 Aug 2017 2017-08-01             8    2.179577                0 1034256.3
## 1620 Aug 2017 2017-08-01             8    2.603878                1 1034256.3
## 1621 Aug 2017 2017-08-01             8    2.711806                1 1034256.3
## 1622 Aug 2017 2017-08-01             8    2.567485                1 1034256.3
## 1623 Aug 2017 2017-08-01             8    2.787986                1 1034256.3
## 1624 Aug 2017 2017-08-01             8    2.737160                1 1034256.3
## 1625 Aug 2017 2017-08-01             8    2.675758                1 1034256.3
## 1626 Aug 2017 2017-08-01             8    2.716216                1 1034256.4
## 1627 Aug 2017 2017-08-01             8    2.728188                1 1034256.4
## 1628 Aug 2017 2017-08-01             8    2.126761                0 1034256.4
## 1629 Aug 2017 2017-08-01             8    2.223301                0 1034256.4
## 1630 Aug 2017 2017-08-01             8    2.813291                1 1034256.4
## 1631 Aug 2017 2017-08-01             8    2.584046                1 1034256.4
## 1632 Aug 2017 2017-08-01             8          NA                1 1034256.4
## 1633 Aug 2017 2017-08-01             8    2.030189                0 1034256.4
## 1634 Aug 2017 2017-08-01             8    1.725275                0 1034256.4
## 1635 Aug 2017 2017-08-01             8    2.812500                1 1034256.4
## 1636 Aug 2017 2017-08-01             8    2.676101                1 1034256.4
## 1637 Aug 2017 2017-08-01             8    2.027875                0 1034256.4
## 1638 Aug 2017 2017-08-01             8    1.934483                0 1034256.4
## 1639 Aug 2017 2017-08-01             8    2.828383                1 1034256.4
## 1640 Aug 2017 2017-08-01             8    1.892000                0 1034256.4
## 1641 Aug 2017 2017-08-01             8    2.119691                0 1034256.4
## 1642 Aug 2017 2017-08-01             8    2.715762                1 1034256.4
## 1643 Aug 2017 2017-08-01             8    2.151125                0 1034256.4
## 1644 Aug 2017 2017-08-01             8    2.755700                1 1034256.4
## 1645 Aug 2017 2017-08-01             8    1.939623                0 1034256.4
## 1646 Aug 2017 2017-08-01             8    2.582418                1 1034256.4
## 1647 Aug 2017 2017-08-01             8    2.879870                1 1034256.4
## 1648 Aug 2017 2017-08-01             8    2.114907                0 1034256.4
## 1649 Aug 2017 2017-08-01             8    2.841317                1 1034256.4
## 1650 Aug 2017 2017-08-01             8    2.755486                1 1034256.4
## 1651 Aug 2017 2017-08-01             8    1.880952                0 1034256.4
## 1652 Aug 2017 2017-08-01             8    2.879880                1 1034256.4
## 1653 Aug 2017 2017-08-01             8    2.413174                1 1034256.4
## 1654 Aug 2017 2017-08-01             8    1.814961                0 1034256.4
## 1655 Aug 2017 2017-08-01             8    2.527132                1 1034256.4
## 1656 Aug 2017 2017-08-01             8    2.091667                0 1034256.4
## 1657 Aug 2017 2017-08-01             8    1.727915                0 1034256.4
## 1658 Aug 2017 2017-08-01             8    1.966667                0 1034256.4
## 1659 Aug 2017 2017-08-01             8    2.144231                0 1034256.4
## 1660 Aug 2017 2017-08-01             8    2.694915                1 1034256.4
## 1661 Aug 2017 2017-08-01             8    2.198758                0 1034256.4
## 1662 Aug 2017 2017-08-01             8    2.854305                1 1034256.4
## 1663 Aug 2017 2017-08-01             8    2.735294                1 1034256.4
## 1664 Aug 2017 2017-08-01             8    2.624138                1 1034256.4
## 1665 Aug 2017 2017-08-01             8    2.714286                1 1034256.4
## 1666 Aug 2017 2017-08-01             8    2.714744                1 1034256.4
## 1667 Aug 2017 2017-08-01             8    1.986301                0 1034256.4
## 1668 Aug 2017 2017-08-01             8    1.816327                0 1034256.4
## 1669 Aug 2017 2017-08-01             8    2.668675                1 1034256.4
## 1670 Aug 2017 2017-08-01             8    1.956989                0 1034256.4
## 1671 Aug 2017 2017-08-01             8    1.694737                0 1034256.4
## 1672 Aug 2017 2017-08-01             8    1.793358                0 1034256.4
## 1673 Aug 2017 2017-08-01             8          NA                1 1034256.4
## 1674 Aug 2017 2017-08-01             8    1.826389                0 1034256.4
## 1675 Aug 2017 2017-08-01             8    2.684015                1 1034256.4
## 1676 Aug 2017 2017-08-01             8    1.978571                0 1034256.4
## 1677 Aug 2017 2017-08-01             8    2.307971                0 1034256.4
## 1678 Aug 2017 2017-08-01             8    2.292776                0 1034256.4
## 1679 Aug 2017 2017-08-01             8    1.937269                0 1034256.4
## 1680 Aug 2017 2017-08-01             8    2.603960                1 1034256.4
## 1681 Aug 2017 2017-08-01             8    1.795380                0 1034256.4
## 1682 Aug 2017 2017-08-01             8    2.811912                1 1034256.4
## 1683 Aug 2017 2017-08-01             8    2.429134                1 1034256.4
## 1684 Aug 2017 2017-08-01             8    2.193277                0 1034256.4
## 1685 Aug 2017 2017-08-01             8    2.868852                1  999797.9
## 1686 Aug 2017 2017-08-01             8    2.750760                1  999797.9
## 1687 Aug 2017 2017-08-01             8    1.785256                0  999797.9
## 1688 Aug 2017 2017-08-01             8    1.754098                0  999797.9
## 1689 Aug 2017 2017-08-01             8    1.721190                0  999797.9
## 1690 Aug 2017 2017-08-01             8    2.641104                1  999797.9
## 1691 Aug 2017 2017-08-01             8    2.853125                1  999797.9
## 1692 Aug 2017 2017-08-01             8    2.853147                1  999797.9
## 1693 Aug 2017 2017-08-01             8    2.730104                1  999797.9
## 1694 Aug 2017 2017-08-01             8    1.843373                0  999797.9
## 1695 Aug 2017 2017-08-01             8    2.753571                1  999797.9
## 1696 Aug 2017 2017-08-01             8    2.675393                1  999797.9
## 1697 Aug 2017 2017-08-01             8    2.685792                1  999797.9
## 1698 Aug 2017 2017-08-01             8    2.799242                1  999797.9
## 1699 Aug 2017 2017-08-01             8    1.964539                0  999797.9
## 1700 Aug 2017 2017-08-01             8    2.189474                0  999797.9
## 1701 Aug 2017 2017-08-01             8    2.787356                1  999797.9
## 1702 Aug 2017 2017-08-01             8    1.916350                0  999797.9
## 1703 Aug 2017 2017-08-01             8    2.643243                1  999797.9
## 1704 Aug 2017 2017-08-01             8    2.837838                1  999797.9
## 1705 Aug 2017 2017-08-01             8    2.726667                1  999797.9
## 1706 Aug 2017 2017-08-01             8    2.729537                1  999797.9
## 1707 Aug 2017 2017-08-01             8    2.738971                1  999797.9
## 1708 Aug 2017 2017-08-01             8    2.173516                0  999797.9
## 1709 Aug 2017 2017-08-01             8    2.854545                1  999797.9
## 1710 Aug 2017 2017-08-01             8    2.732938                1  999797.9
## 1711 Aug 2017 2017-08-01             8    1.903346                0  999797.9
## 1712 Aug 2017 2017-08-01             8    2.957295                1  999797.9
## 1713 Aug 2017 2017-08-01             8    2.704762                1  999797.9
## 1714 Aug 2017 2017-08-01             8    2.777027                1  999797.9
## 1715 Aug 2017 2017-08-01             8    2.733333                1  999797.9
## 1716 Aug 2017 2017-08-01             8    2.690544                1  999797.9
## 1717 Aug 2017 2017-08-01             8    2.778502                1  999797.9
## 1718 Aug 2017 2017-08-01             8    1.966667                0  999797.9
## 1719 Aug 2017 2017-08-01             8    2.126712                0  999797.9
## 1720 Aug 2017 2017-08-01             8    2.886792                1  999797.9
## 1721 Aug 2017 2017-08-01             8    2.815331                1  999797.9
## 1722 Aug 2017 2017-08-01             8    2.015873                0  999797.9
## 1723 Aug 2017 2017-08-01             8    2.612676                1  999797.9
## 1724 Aug 2017 2017-08-01             8    2.824926                1  999797.9
## 1725 Aug 2017 2017-08-01             8    2.118577                0  999797.9
## 1726 Aug 2017 2017-08-01             8    2.850174                1  999797.9
## 1727 Aug 2017 2017-08-01             8    2.775510                1  999797.9
## 1728 Aug 2017 2017-08-01             8    2.720497                1  999797.9
## 1729 Aug 2017 2017-08-01             8    1.761905                0  999797.9
## 1730 Aug 2017 2017-08-01             8    1.649123                0  999797.9
## 1731 Aug 2017 2017-08-01             8    2.883212                1  999797.9
## 1732 Aug 2017 2017-08-01             8    2.764479                1  999797.9
## 1733 Aug 2017 2017-08-01             8    2.559871                1  999797.9
## 1734 Aug 2017 2017-08-01             8    2.209125                0  999797.9
## 1735 Aug 2017 2017-08-01             8    1.820225                0  999797.9
## 1736 Aug 2017 2017-08-01             8    1.824427                0  999797.9
## 1737 Aug 2017 2017-08-01             8    2.317647                0  999797.9
## 1738 Aug 2017 2017-08-01             8    1.792157                0  999797.9
## 1739 Aug 2017 2017-08-01             8    1.811715                0  999797.9
## 1740 Aug 2017 2017-08-01             8    1.832685                0  999797.9
## 1741 Aug 2017 2017-08-01             8    2.708197                1  999797.9
## 1742 Aug 2017 2017-08-01             8    1.680556                0  999797.9
## 1743 Sep 2018 2018-09-01             9    2.779783                1  949529.7
## 1744 Sep 2018 2018-09-01             9    2.916955                1  949529.7
## 1745 Sep 2018 2018-09-01             9    2.907285                1  949529.7
## 1746 Sep 2018 2018-09-01             9    2.664935                1  949529.7
## 1747 Sep 2018 2018-09-01             9    2.666667                1  949529.7
## 1748 Sep 2018 2018-09-01             9    2.770677                1  949529.7
## 1749 Sep 2018 2018-09-01             9    2.859873                1  949529.7
## 1750 Sep 2018 2018-09-01             9    2.760606                1  949529.7
## 1751 Sep 2018 2018-09-01             9    2.747059                1  949529.7
## 1752 Sep 2018 2018-09-01             9    2.849315                1  949529.7
## 1753 Sep 2018 2018-09-01             9    2.735385                1  949529.7
## 1754 Sep 2018 2018-09-01             9    2.740845                1  949529.7
## 1755 Sep 2018 2018-09-01             9    2.857143                1  949529.7
## 1756 Sep 2018 2018-09-01             9    2.813754                1  949529.7
## 1757 Sep 2018 2018-09-01             9    2.894410                1  949529.7
## 1758 Sep 2018 2018-09-01             9    2.691429                1  949529.7
## 1759 Sep 2018 2018-09-01             9    1.728571                0  949529.7
## 1760 Sep 2018 2018-09-01             9    2.874150                1  949529.7
## 1761 Sep 2018 2018-09-01             9    2.828947                1  949529.7
## 1762 Sep 2018 2018-09-01             9    2.911864                1  949529.7
## 1763 Sep 2018 2018-09-01             9    2.758503                1  949529.7
## 1764 Sep 2018 2018-09-01             9    2.622150                1  949529.7
## 1765 Sep 2018 2018-09-01             9    2.650307                1  949529.7
## 1766 Sep 2018 2018-09-01             9    2.881533                1  949529.7
## 1767 Sep 2018 2018-09-01             9    2.668588                1  949529.7
## 1768 Sep 2018 2018-09-01             9    2.717868                1  949529.7
## 1769 Sep 2018 2018-09-01             9    2.892593                1  949529.7
## 1770 Sep 2018 2018-09-01             9    2.855219                1  949529.7
## 1771 Sep 2018 2018-09-01             9    2.723183                1  949529.7
## 1772 Sep 2018 2018-09-01             9    2.594595                1  949529.7
## 1773 Sep 2018 2018-09-01             9    2.846386                1  949529.7
## 1774 Sep 2018 2018-09-01             9    2.630058                1  949529.7
## 1775 Sep 2018 2018-09-01             9    2.596257                1  949529.7
## 1776 Sep 2018 2018-09-01             9    2.989247                1  949529.7
## 1777 Sep 2018 2018-09-01             9    2.694444                1  949529.7
## 1778 Sep 2018 2018-09-01             9    2.841424                1  949529.7
## 1779 Sep 2018 2018-09-01             9    2.790769                1  949529.7
## 1780 Sep 2018 2018-09-01             9    2.822581                1  949529.7
## 1781 Sep 2018 2018-09-01             9    2.677054                1  949529.7
## 1782 Sep 2018 2018-09-01             9    2.785978                1  949529.7
## 1783 Sep 2018 2018-09-01             9    2.743590                1  949529.7
## 1784 Sep 2018 2018-09-01             9    2.725543                1  949529.7
## 1785 Sep 2018 2018-09-01             9    2.766129                1  949529.7
## 1786 Sep 2018 2018-09-01             9    2.905797                1  949529.7
## 1787 Sep 2018 2018-09-01             9    2.741611                1  949529.7
## 1788 Sep 2018 2018-09-01             9    2.778098                1  949529.7
## 1789 Sep 2018 2018-09-01             9    2.849462                1  949529.7
## 1790 Sep 2018 2018-09-01             9    2.698305                1  949529.7
## 1791 Sep 2018 2018-09-01             9    2.767442                1  949529.7
## 1792 Sep 2018 2018-09-01             9    2.797059                1  949529.7
## 1793 Sep 2018 2018-09-01             9    2.921136                1  949529.7
## 1794 Sep 2018 2018-09-01             9    2.928144                1  949529.7
## 1795 Sep 2018 2018-09-01             9    2.825083                1  949529.7
## 1796 Sep 2018 2018-09-01             9    2.761194                1  949529.7
## 1797 Sep 2018 2018-09-01             9    2.678063                1  949529.7
## 1798 Sep 2018 2018-09-01             9    1.760456                0  949529.7
## 1799 Sep 2018 2018-09-01             9    2.649390                1  949529.7
## 1800 Sep 2018 2018-09-01             9    2.679412                1  949529.7
## 1801 Sep 2018 2018-09-01             9    2.782918                1  949529.7
## 1802 Sep 2018 2018-09-01             9    2.910299                1  949529.7
## 1803 Sep 2018 2018-09-01             9    1.719844                0  949529.7
## 1804 Sep 2018 2018-09-01             9    2.739726                1  949529.7
## 1805 Sep 2018 2018-09-01             9    2.593220                1  949529.7
## 1806 Sep 2018 2018-09-01             9    2.867797                1  949529.7
## 1807 Sep 2018 2018-09-01             9    2.796774                1 1171362.4
## 1808 Sep 2018 2018-09-01             9    2.655172                1 1171362.4
## 1809 Sep 2018 2018-09-01             9    2.822695                1 1171362.4
## 1810 Sep 2018 2018-09-01             9    2.598007                1 1171362.4
## 1811 Sep 2018 2018-09-01             9    1.747573                0 1171362.4
## 1812 Sep 2018 2018-09-01             9    1.921642                0 1171362.4
## 1813 Sep 2018 2018-09-01             9    2.041176                0 1171362.4
## 1814 Sep 2018 2018-09-01             9    2.102167                0 1171362.4
## 1815 Sep 2018 2018-09-01             9    2.576316                1 1171362.4
## 1816 Sep 2018 2018-09-01             9    1.747036                0 1171362.4
## 1817 Sep 2018 2018-09-01             9    1.773810                0 1171362.4
## 1818 Sep 2018 2018-09-01             9    2.754448                1 1171362.4
## 1819 Sep 2018 2018-09-01             9    1.672662                0 1171362.4
## 1820 Sep 2018 2018-09-01             9    1.589286                0 1171362.4
## 1821 Sep 2018 2018-09-01             9    2.717857                1 1171362.4
## 1822 Sep 2018 2018-09-01             9    1.875969                0 1171362.4
## 1823 Sep 2018 2018-09-01             9    2.715100                1 1171362.4
## 1824 Sep 2018 2018-09-01             9    2.065476                0 1171362.4
## 1825 Sep 2018 2018-09-01             9    2.449367                1 1171362.4
## 1826 Sep 2018 2018-09-01             9    2.730159                1 1171362.4
## 1827 Sep 2018 2018-09-01             9    2.785016                1 1171362.4
## 1828 Sep 2018 2018-09-01             9    1.644269                0 1171362.4
## 1829 Sep 2018 2018-09-01             9    1.783439                0 1171362.4
## 1830 Sep 2018 2018-09-01             9    2.601719                1 1171362.4
## 1831 Sep 2018 2018-09-01             9    1.863158                0 1171362.4
## 1832 Sep 2018 2018-09-01             9    2.711111                1 1171362.4
## 1833 Sep 2018 2018-09-01             9    2.677019                1 1171362.4
## 1834 Sep 2018 2018-09-01             9    1.661654                0 1171362.4
## 1835 Sep 2018 2018-09-01             9    1.753799                0 1171362.4
## 1836 Sep 2018 2018-09-01             9    2.007380                0 1171362.4
## 1837 Sep 2018 2018-09-01             9    2.816901                1 1171362.4
## 1838 Sep 2018 2018-09-01             9    1.690554                0 1171362.4
## 1839 Sep 2018 2018-09-01             9    2.732852                1 1171362.4
## 1840 Sep 2018 2018-09-01             9    2.520408                1 1171362.4
## 1841 Sep 2018 2018-09-01             9    2.493197                1 1171362.4
## 1842 Sep 2018 2018-09-01             9    1.682848                0 1171362.4
## 1843 Sep 2018 2018-09-01             9    1.722846                0 1171362.4
## 1844 Sep 2018 2018-09-01             9    1.900901                0 1171362.4
## 1845 Sep 2018 2018-09-01             9    1.710801                0 1171362.4
## 1846 Sep 2018 2018-09-01             9    1.686508                0 1171362.4
## 1847 Sep 2018 2018-09-01             9    2.661972                1 1171362.4
## 1848 Sep 2018 2018-09-01             9    1.649254                0 1171362.4
## 1849 Sep 2018 2018-09-01             9    2.641566                1 1171362.4
## 1850 Sep 2018 2018-09-01             9    2.650794                1 1171362.4
## 1851 Sep 2018 2018-09-01             9    2.543956                1 1171362.4
## 1852 Sep 2018 2018-09-01             9    1.915663                0 1171362.4
## 1853 Sep 2018 2018-09-01             9    2.758730                1 1171362.4
## 1854 Sep 2018 2018-09-01             9    2.750000                1 1171362.4
## 1855 Sep 2018 2018-09-01             9    2.735202                1 1171362.4
## 1856 Sep 2018 2018-09-01             9    2.850610                1 1171362.4
## 1857 Sep 2018 2018-09-01             9    1.585106                0 1171362.4
## 1858 Sep 2018 2018-09-01             9    1.985294                0 1171362.4
## 1859 Sep 2018 2018-09-01             9    2.567901                1 1171362.4
## 1860 Sep 2018 2018-09-01             9    2.152263                0 1171362.4
## 1861 Sep 2018 2018-09-01             9    1.755776                0 1171362.4
## 1862 Sep 2018 2018-09-01             9    2.828897                1 1171362.4
## 1863 Sep 2018 2018-09-01             9    2.675362                1 1171362.4
## 1864 Sep 2018 2018-09-01             9    1.859873                0 1171362.4
## 1865 Sep 2018 2018-09-01             9    2.968652                1 1171362.4
## 1866 Sep 2018 2018-09-01             9    1.879479                0 1171362.4
## 1867 Sep 2018 2018-09-01             9    2.858182                1 1171362.4
## 1868 Sep 2018 2018-09-01             9    1.841060                0 1171362.4
## 1869 Sep 2018 2018-09-01             9    2.633028                1 1171362.4
## 1870 Sep 2018 2018-09-01             9    1.886364                0 1171362.4
## 1871 Sep 2018 2018-09-01             9    2.903780                1 1171362.4
## 1872 Sep 2018 2018-09-01             9    1.859107                0 1171362.4
## 1873 Sep 2018 2018-09-01             9    1.850394                0 1171362.4
## 1874 Sep 2018 2018-09-01             9    1.746939                0 1171362.4
## 1875 Sep 2018 2018-09-01             9    2.778116                1 1034253.2
## 1876 Sep 2018 2018-09-01             9    2.696486                1 1034253.2
## 1877 Sep 2018 2018-09-01             9    2.684058                1 1034253.2
## 1878 Sep 2018 2018-09-01             9    2.698361                1 1034253.2
## 1879 Sep 2018 2018-09-01             9    2.884758                1 1034253.2
## 1880 Sep 2018 2018-09-01             9    2.874598                1 1034253.2
## 1881 Sep 2018 2018-09-01             9    2.907348                1 1034253.2
## 1882 Sep 2018 2018-09-01             9    1.890295                0 1034253.2
## 1883 Sep 2018 2018-09-01             9    2.705502                1 1034253.2
## 1884 Sep 2018 2018-09-01             9    2.693333                1 1034253.2
## 1885 Sep 2018 2018-09-01             9    3.016026                1 1034253.2
## 1886 Sep 2018 2018-09-01             9    2.985380                1 1034253.2
## 1887 Sep 2018 2018-09-01             9    2.779935                1 1034253.2
## 1888 Sep 2018 2018-09-01             9    2.720548                1 1034253.2
## 1889 Sep 2018 2018-09-01             9    2.795918                1 1034253.2
## 1890 Sep 2018 2018-09-01             9    2.861963                1 1034253.2
## 1891 Sep 2018 2018-09-01             9    2.677914                1 1034253.2
## 1892 Sep 2018 2018-09-01             9    2.827362                1 1034253.2
## 1893 Sep 2018 2018-09-01             9    2.766484                1 1034253.2
## 1894 Sep 2018 2018-09-01             9    2.846369                1 1034253.2
## 1895 Sep 2018 2018-09-01             9    2.733333                1 1034253.2
## 1896 Sep 2018 2018-09-01             9    2.852830                1 1034253.2
## 1897 Sep 2018 2018-09-01             9    2.661538                1 1034253.2
## 1898 Sep 2018 2018-09-01             9    2.642857                1 1034253.2
## 1899 Sep 2018 2018-09-01             9    2.758741                1 1034253.2
## 1900 Sep 2018 2018-09-01             9    1.818462                0 1034253.2
## 1901 Sep 2018 2018-09-01             9    2.856631                1 1034253.2
## 1902 Sep 2018 2018-09-01             9    2.774603                1 1034253.2
## 1903 Sep 2018 2018-09-01             9    1.914062                0 1034253.2
## 1904 Sep 2018 2018-09-01             9    2.704787                1 1034253.2
## 1905 Sep 2018 2018-09-01             9    2.769231                1 1034253.2
## 1906 Sep 2018 2018-09-01             9    2.662857                1 1034253.2
## 1907 Sep 2018 2018-09-01             9    2.834320                1 1034253.2
## 1908 Sep 2018 2018-09-01             9    2.691667                1 1034253.2
## 1909 Sep 2018 2018-09-01             9    2.771014                1 1034253.2
## 1910 Sep 2018 2018-09-01             9    2.854489                1 1034253.2
## 1911 Sep 2018 2018-09-01             9    2.696721                1 1034253.2
## 1912 Sep 2018 2018-09-01             9    2.709677                1 1034253.2
## 1913 Sep 2018 2018-09-01             9    2.638298                1 1034253.2
## 1914 Sep 2018 2018-09-01             9    2.763636                1 1034253.2
## 1915 Sep 2018 2018-09-01             9    2.724832                1  999718.1
## 1916 May 2019 2019-05-01             5    2.651163                1  949488.6
## 1917 May 2019 2019-05-01             5    2.776536                1  949488.6
## 1918 May 2019 2019-05-01             5    2.855513                1  949488.6
## 1919 May 2019 2019-05-01             5    2.715818                1  949488.6
## 1920 May 2019 2019-05-01             5    2.667674                1  949488.6
## 1921 May 2019 2019-05-01             5    1.815436                0  949488.6
## 1922 May 2019 2019-05-01             5    2.648000                1  949488.6
## 1923 May 2019 2019-05-01             5    2.600733                1  949488.6
## 1924 May 2019 2019-05-01             5    2.835664                1  949488.6
## 1925 May 2019 2019-05-01             5    2.448101                1  950511.0
## 1926 May 2019 2019-05-01             5    2.486111                1  950511.0
## 1927 May 2019 2019-05-01             5    2.750000                1  950511.0
## 1928 May 2019 2019-05-01             5    2.619597                1  950511.0
## 1929 May 2019 2019-05-01             5    2.553371                1  950511.0
## 1930 May 2019 2019-05-01             5    2.822535                1  950511.0
## 1931 May 2019 2019-05-01             5    2.493606                1  950511.0
## 1932 May 2019 2019-05-01             5    2.629944                1  950511.0
## 1933 May 2019 2019-05-01             5    2.685976                1  950511.0
## 1934 May 2019 2019-05-01             5    2.584856                1  950511.0
## 1935 May 2019 2019-05-01             5    1.845361                0  950511.0
## 1936 May 2019 2019-05-01             5    2.604730                1  950511.0
## 1937 May 2019 2019-05-01             5    2.997101                1  950511.0
## 1938 May 2019 2019-05-01             5    2.657895                1  950511.0
## 1939 May 2019 2019-05-01             5    2.464198                1  950511.0
## 1940 May 2019 2019-05-01             5    3.057047                1  950511.0
## 1941 May 2019 2019-05-01             5    2.906137                1  950511.0
## 1942 May 2019 2019-05-01             5    2.917582                1  950511.0
## 1943 May 2019 2019-05-01             5    2.486553                1  950511.0
## 1944 May 2019 2019-05-01             5    2.647230                1  950511.0
## 1945 May 2019 2019-05-01             5    2.901818                1  950511.0
## 1946 May 2019 2019-05-01             5    2.794788                1  950511.0
## 1947 May 2019 2019-05-01             5    2.752412                1  950511.0
## 1948 May 2019 2019-05-01             5    2.820652                1  950511.0
## 1949 May 2019 2019-05-01             5    2.730871                1  950511.0
## 1950 May 2019 2019-05-01             5    2.448276                1  950511.0
## 1951 May 2019 2019-05-01             5    2.723183                1  950511.0
## 1952 May 2019 2019-05-01             5    2.790378                1  950511.0
## 1953 May 2019 2019-05-01             5    2.735294                1  950511.0
## 1954 May 2019 2019-05-01             5    2.842444                1  950511.0
## 1955 May 2019 2019-05-01             5    2.645902                1  950511.0
## 1956 May 2019 2019-05-01             5    2.604592                1  950511.0
## 1957 May 2019 2019-05-01             5    2.622356                1  950511.0
## 1958 May 2019 2019-05-01             5    2.835866                1  950511.0
## 1959 May 2019 2019-05-01             5    2.671470                1  950511.0
## 1960 May 2019 2019-05-01             5    2.533923                1  950511.0
## 1961 May 2019 2019-05-01             5    2.844595                1  950511.0
## 1962 May 2019 2019-05-01             5    3.067449                1  950511.0
## 1963 May 2019 2019-05-01             5    2.792507                1  950511.0
## 1964 May 2019 2019-05-01             5    2.540625                1  950511.0
## 1965 May 2019 2019-05-01             5    1.652720                0 1155217.9
## 1966 May 2019 2019-05-01             5    2.652459                1 1155217.9
## 1967 May 2019 2019-05-01             5    1.830040                1 1155217.9
## 1968 May 2019 2019-05-01             5    2.468750                1 1155217.9
## 1969 May 2019 2019-05-01             5    2.720149                1 1155217.9
## 1970 May 2019 2019-05-01             5    2.775920                1 1155217.9
## 1971 May 2019 2019-05-01             5    1.655870                0 1155217.9
## 1972 May 2019 2019-05-01             5    1.907336                1 1155217.9
## 1973 May 2019 2019-05-01             5    2.022222                1 1155217.9
## 1974 May 2019 2019-05-01             5    2.031008                0 1155217.9
## 1975 May 2019 2019-05-01             5    1.539855                0 1155217.9
## 1976 May 2019 2019-05-01             5    1.745833                0 1155217.9
## 1977 May 2019 2019-05-01             5    2.562500                1 1155217.9
## 1978 May 2019 2019-05-01             5    1.739669                0 1155217.9
## 1979 May 2019 2019-05-01             5    1.658730                0 1155217.9
## 1980 May 2019 2019-05-01             5    2.694158                1 1155217.9
## 1981 May 2019 2019-05-01             5    2.215152                1 1155217.9
## 1982 May 2019 2019-05-01             5    1.619377                0 1155217.9
## 1983 May 2019 2019-05-01             5    1.746094                0 1165494.9
## 1984 May 2019 2019-05-01             5    2.084942                0 1165494.9
## 1985 May 2019 2019-05-01             5    1.837302                0 1165494.9
## 1986 May 2019 2019-05-01             5    2.416357                1 1165494.9
## 1987 May 2019 2019-05-01             5    2.556757                1 1165494.9
## 1988 May 2019 2019-05-01             5    2.714777                1 1165494.9
## 1989 May 2019 2019-05-01             5    2.670330                1 1165494.9
## 1990 May 2019 2019-05-01             5    1.764516                0 1165494.9
## 1991 May 2019 2019-05-01             5    1.993691                0 1165494.9
## 1992 May 2019 2019-05-01             5    2.227119                0 1165494.9
## 1993 May 2019 2019-05-01             5    1.652582                0 1165494.9
## 1994 May 2019 2019-05-01             5    1.768061                0 1165494.9
## 1995 May 2019 2019-05-01             5    1.947692                0 1165494.9
## 1996 May 2019 2019-05-01             5    2.569182                1 1165494.9
## 1997 May 2019 2019-05-01             5    1.842105                0 1165494.9
## 1998 May 2019 2019-05-01             5    1.766187                0 1165494.9
## 1999 May 2019 2019-05-01             5    1.767361                0 1165494.9
## 2000 May 2019 2019-05-01             5    2.696697                1 1165494.9
## 2001 May 2019 2019-05-01             5    2.734694                1 1165494.9
## 2002 May 2019 2019-05-01             5    2.510714                1 1165494.9
## 2003 May 2019 2019-05-01             5    2.616487                1 1165494.9
## 2004 May 2019 2019-05-01             5    1.770751                0 1165494.9
## 2005 May 2019 2019-05-01             5    2.589342                1 1165494.9
## 2006 May 2019 2019-05-01             5    2.817276                1 1165494.9
## 2007 May 2019 2019-05-01             5    1.817544                0 1165494.9
## 2008 May 2019 2019-05-01             5    2.625352                1 1165494.9
## 2009 May 2019 2019-05-01             5    1.575251                0 1165494.9
## 2010 May 2019 2019-05-01             5    1.775100                0 1165494.9
## 2011 May 2019 2019-05-01             5    2.123404                0 1165494.9
## 2012 May 2019 2019-05-01             5    2.258865                0 1165494.9
## 2013 May 2019 2019-05-01             5    2.733564                1 1165494.9
## 2014 May 2019 2019-05-01             5    1.729452                0 1165494.9
## 2015 May 2019 2019-05-01             5    2.664577                1 1165494.9
## 2016 May 2019 2019-05-01             5    1.719368                0 1165494.9
## 2017 May 2019 2019-05-01             5    1.897233                0 1165494.9
## 2018 May 2019 2019-05-01             5    1.836134                0 1165494.9
## 2019 May 2019 2019-05-01             5    2.539216                1 1165494.9
## 2020 May 2019 2019-05-01             5    1.704918                0 1165494.9
## 2021 May 2019 2019-05-01             5    1.786164                0 1165494.9
## 2022 May 2019 2019-05-01             5    1.743056                0 1165494.9
## 2023 May 2019 2019-05-01             5    1.734694                0 1165494.9
## 2024 May 2019 2019-05-01             5    2.700348                1 1165494.9
## 2025 May 2019 2019-05-01             5    1.843284                0 1165494.9
## 2026 May 2019 2019-05-01             5    1.691729                0 1165494.9
## 2027 May 2019 2019-05-01             5    1.908088                0 1165494.9
## 2028 May 2019 2019-05-01             5    1.959839                0 1165494.9
## 2029 May 2019 2019-05-01             5    2.346570                1 1165494.9
## 2030 May 2019 2019-05-01             5    2.617647                1 1165494.9
## 2031 May 2019 2019-05-01             5    2.721014                1 1165494.9
## 2032 May 2019 2019-05-01             5    1.539062                0 1165494.9
## 2033 May 2019 2019-05-01             5    1.657588                0 1165494.9
## 2034 May 2019 2019-05-01             5    2.725753                1 1165494.9
## 2035 May 2019 2019-05-01             5    1.800699                0 1165494.9
## 2036 May 2019 2019-05-01             5    2.695238                1 1165494.9
## 2037 May 2019 2019-05-01             5    2.003831                0 1165494.9
## 2038 May 2019 2019-05-01             5    2.534722                1 1165494.9
## 2039 May 2019 2019-05-01             5    1.702786                0 1165494.9
## 2040 May 2019 2019-05-01             5    1.717842                0 1165494.9
## 2041 May 2019 2019-05-01             5    1.825658                0 1165494.9
## 2042 May 2019 2019-05-01             5    2.661342                1 1165494.9
## 2043 May 2019 2019-05-01             5    1.602076                0 1165494.9
## 2044 May 2019 2019-05-01             5    2.080000                0 1165494.9
## 2045 May 2019 2019-05-01             5    1.861224                0 1165494.9
## 2046 May 2019 2019-05-01             5    1.776000                0 1165494.9
## 2047 May 2019 2019-05-01             5    1.602151                0 1165494.9
## 2048 May 2019 2019-05-01             5    1.952569                0 1165494.9
## 2049 May 2019 2019-05-01             5    1.690083                0 1165494.9
## 2050 May 2019 2019-05-01             5    2.688000                1 1165494.9
## 2051 May 2019 2019-05-01             5    1.800738                0 1165494.9
## 2052 May 2019 2019-05-01             5    1.723549                0 1165494.9
## 2053 May 2019 2019-05-01             5    2.762987                1 1165494.9
## 2054 May 2019 2019-05-01             5    1.674074                0 1165494.9
## 2055 May 2019 2019-05-01             5    1.728571                0 1165494.9
## 2056 May 2019 2019-05-01             5    2.684411                1 1165494.9
## 2057 May 2019 2019-05-01             5    1.852941                0 1165494.9
## 2058 May 2019 2019-05-01             5    2.029091                0 1165494.9
## 2059 May 2019 2019-05-01             5    2.619048                1 1058006.9
## 2060 May 2019 2019-05-01             5    2.799308                1 1058006.9
## 2061 May 2019 2019-05-01             5    2.571429                1 1058006.9
## 2062 May 2019 2019-05-01             5    3.061889                1 1058006.9
## 2063 May 2019 2019-05-01             5    2.714286                1 1058006.9
## 2064 May 2019 2019-05-01             5    2.833333                1 1058006.9
## 2065 May 2019 2019-05-01             5    2.656168                1 1058006.9
## 2066 May 2019 2019-05-01             5    2.799331                1 1058006.9
## 2067 May 2019 2019-05-01             5    1.897436                0 1058006.9
## 2068 May 2019 2019-05-01             5    2.376623                1 1058006.9
## 2069 May 2019 2019-05-01             5    1.976190                0 1058006.9
## 2070 May 2019 2019-05-01             5    2.592593                1 1058006.9
## 2071 May 2019 2019-05-01             5    2.791086                0 1058006.9
## 2072 May 2019 2019-05-01             5    2.908046                1 1058006.9
## 2073 May 2019 2019-05-01             5    2.927393                1 1058006.9
## 2074 May 2019 2019-05-01             5    2.545455                1 1058006.9
## 2075 May 2019 2019-05-01             5    2.944853                1 1058006.9
## 2076 May 2019 2019-05-01             5    1.835206                0 1058006.9
## 2077 May 2019 2019-05-01             5    2.533333                1 1058006.9
## 2078 May 2019 2019-05-01             5    1.719697                0 1058006.9
## 2079 May 2019 2019-05-01             5    2.664537                1 1058006.9
## 2080 May 2019 2019-05-01             5    2.755556                1 1058006.9
## 2081 May 2019 2019-05-01             5    2.643454                1 1058006.9
## 2082 May 2019 2019-05-01             5    2.781609                1 1058006.9
## 2083 May 2019 2019-05-01             5    2.900344                1 1058006.9
## 2084 May 2019 2019-05-01             5    2.674772                1 1058006.9
## 2085 May 2019 2019-05-01             5    2.905488                1 1058006.9
## 2086 May 2019 2019-05-01             5    2.278873                1 1058006.9
## 2087 May 2019 2019-05-01             5    2.715625                1 1058006.9
## 2088 May 2019 2019-05-01             5    2.248815                1 1058006.9
## 2089 May 2019 2019-05-01             5    2.785507                1 1058006.9
## 2090 May 2019 2019-05-01             5    1.987437                1 1058006.9
## 2091 May 2019 2019-05-01             5    2.808081                1 1058006.9
## 2092 May 2019 2019-05-01             5    3.023166                1 1058006.9
## 2093 May 2019 2019-05-01             5    2.386792                1 1058006.9
## 2094 May 2019 2019-05-01             5    2.503704                1 1058006.9
## 2095 May 2019 2019-05-01             5    2.725857                1 1058006.9
## 2096 May 2019 2019-05-01             5    2.223022                1 1058006.9
## 2097 May 2019 2019-05-01             5    2.910112                1 1058006.9
## 2098 May 2019 2019-05-01             5    2.667702                1 1058006.9
## 2099 May 2019 2019-05-01             5    2.669841                1 1058006.9
## 2100 May 2019 2019-05-01             5    2.733333                1 1058006.9
## 2101 May 2019 2019-05-01             5    2.583562                1 1058006.9
## 2102 May 2019 2019-05-01             5    2.717391                1 1058006.9
## 2103 May 2019 2019-05-01             5    1.977273                0 1058006.9
## 2104 May 2019 2019-05-01             5    2.701863                1 1058006.9
## 2105 May 2019 2019-05-01             5    2.862974                1 1058006.9
## 2106 May 2019 2019-05-01             5    1.875000                0 1058006.9
## 2107 May 2019 2019-05-01             5    2.804487                1 1058006.9
## 2108 May 2019 2019-05-01             5    1.749117                0 1058006.9
## 2109 May 2019 2019-05-01             5    2.770227                1 1058006.9
## 2110 May 2019 2019-05-01             5    2.650704                1 1058006.9
## 2111 May 2019 2019-05-01             5    2.725000                1 1058006.9
## 2112 May 2019 2019-05-01             5    2.619048                1 1058006.9
## 2113 May 2019 2019-05-01             5    2.578073                1 1058006.9
## 2114 May 2019 2019-05-01             5    3.015385                1 1058006.9
## 2115 May 2019 2019-05-01             5    2.693291                1 1058006.9
## 2116 May 2019 2019-05-01             5    2.781250                1 1058006.9
## 2117 May 2019 2019-05-01             5    2.544872                1 1058006.9
## 2118 May 2019 2019-05-01             5    2.750000                1 1058006.9
## 2119 May 2019 2019-05-01             5    2.568862                1 1058006.9
## 2120 May 2019 2019-05-01             5    2.623418                1 1058006.9
## 2121 May 2019 2019-05-01             5    2.560224                1 1172906.5
## 2122 May 2019 2019-05-01             5    2.763158                1 1172906.5
## 2123 May 2019 2019-05-01             5    2.762963                1 1172906.5
## 2124 May 2019 2019-05-01             5    2.692308                1 1172906.5
## 2125 May 2019 2019-05-01             5    1.972973                0 1172906.5
## 2126 May 2019 2019-05-01             5    2.726727                1 1172906.5
## 2127 May 2019 2019-05-01             5    2.024390                0 1172906.5
## 2128 May 2019 2019-05-01             5    2.621359                1 1172906.5
## 2129 May 2019 2019-05-01             5    2.830084                1 1172906.5
## 2130 May 2019 2019-05-01             5    2.709459                1 1172906.5
## 2131 May 2019 2019-05-01             5    1.749104                0 1172906.5
## 2132 May 2019 2019-05-01             5    2.859779                1 1172906.5
## 2133 May 2019 2019-05-01             5    2.693548                1 1172906.5
## 2134 May 2019 2019-05-01             5    2.812261                1 1172906.5
## 2135 May 2019 2019-05-01             5    2.683636                1 1172906.5
## 2136 May 2019 2019-05-01             5    1.850000                0 1172906.5
## 2137 May 2019 2019-05-01             5    2.809365                1 1172906.5
## 2138 May 2019 2019-05-01             5    2.688645                1 1172906.5
## 2139 May 2019 2019-05-01             5    2.680782                1 1172906.5
## 2140 May 2019 2019-05-01             5    2.667683                1 1172906.5
## 2141 May 2019 2019-05-01             5    2.685065                1 1172906.5
## 2142 May 2019 2019-05-01             5    1.682493                0 1172906.5
## 2143 May 2019 2019-05-01             5    2.760383                1 1172906.5
## 2144 May 2019 2019-05-01             5    1.617530                0 1172906.5
## 2145 May 2019 2019-05-01             5    1.652997                0 1172906.5
## 2146 May 2019 2019-05-01             5    2.683673                1 1172906.5
## 2147 May 2019 2019-05-01             5    1.797619                0 1172906.5
## 2148 May 2019 2019-05-01             5    2.525568                1 1172906.5
## 2149 May 2019 2019-05-01             5    1.940520                0 1172906.5
## 2150 May 2019 2019-05-01             5    2.604096                1 1172906.5
## 2151 May 2019 2019-05-01             5    1.676190                0 1172906.5
## 2152 May 2019 2019-05-01             5    1.631970                0 1172906.5
## 2153 May 2019 2019-05-01             5    2.660131                1 1172906.5
## 2154 May 2019 2019-05-01             5    2.772727                1 1172906.5
## 2155 May 2019 2019-05-01             5    2.709343                1 1172906.5
## 2156 May 2019 2019-05-01             5    2.651163                1 1172906.5
## 2157 May 2019 2019-05-01             5    2.659701                1 1172906.5
## 2158 May 2019 2019-05-01             5    2.667722                1 1172906.5
## 2159 May 2019 2019-05-01             5    2.649518                1 1172906.5
## 2160 May 2019 2019-05-01             5    1.599349                0 1172906.5
## 2161 May 2019 2019-05-01             5    2.657738                1 1172906.5
## 2162 May 2019 2019-05-01             5    2.720149                1 1172906.5
## 2163 May 2019 2019-05-01             5    1.507937                0 1172906.5
## 2164 May 2019 2019-05-01             5    1.642105                0 1171368.7
## 2165 May 2019 2019-05-01             5    2.482650                1 1171368.7
## 2166 May 2019 2019-05-01             5    2.671975                1 1171368.7
## 2167 May 2019 2019-05-01             5    2.539773                1 1171368.7
## 2168 May 2019 2019-05-01             5    2.757143                1 1171368.7
## 2169 May 2019 2019-05-01             5    1.723735                0 1171368.7
## 2170 May 2019 2019-05-01             5    2.692308                1 1171368.7
## 2171 May 2019 2019-05-01             5    2.796935                1 1171368.7
## 2172 May 2019 2019-05-01             5    1.743119                0 1171368.7
## 2173 May 2019 2019-05-01             5    2.891386                1 1171368.7
## 2174 May 2019 2019-05-01             5    1.800000                0 1171368.7
## 2175 May 2019 2019-05-01             5    2.603675                1 1171368.7
## 2176 May 2019 2019-05-01             5    2.703833                1 1171368.7
## 2177 May 2019 2019-05-01             5    2.573883                1 1171368.7
## 2178 May 2019 2019-05-01             5    1.720280                0 1171368.7
## 2179 May 2019 2019-05-01             5    1.673913                0 1171368.7
## 2180 May 2019 2019-05-01             5    1.918605                0 1171368.7
## 2181 May 2019 2019-05-01             5    2.068841                0 1171368.7
## 2182 May 2019 2019-05-01             5    1.646048                0 1171368.7
## 2183 May 2019 2019-05-01             5    1.692884                0 1171368.7
## 2184 May 2019 2019-05-01             5    2.536517                1 1171368.7
## 2185 May 2019 2019-05-01             5    2.663082                1 1171368.7
## 2186 May 2019 2019-05-01             5    2.060510                0 1171368.7
## 2187 May 2019 2019-05-01             5    2.691358                1 1171368.7
## 2188 May 2019 2019-05-01             5    2.639037                1 1171368.7
## 2189 May 2019 2019-05-01             5    2.652406                1 1171368.7
## 2190 May 2019 2019-05-01             5    2.496753                1 1171368.7
## 2191 May 2019 2019-05-01             5    1.736364                0 1171368.7
## 2192 May 2019 2019-05-01             5    2.668874                1 1171368.7
## 2193 May 2019 2019-05-01             5    1.678030                0 1171368.7
## 2194 May 2019 2019-05-01             5    1.658824                0 1171368.7
## 2195 May 2019 2019-05-01             5    2.816547                1 1171368.7
## 2196 May 2019 2019-05-01             5    2.616000                1 1171368.7
## 2197 May 2019 2019-05-01             5    1.695489                0 1171368.7
## 2198 May 2019 2019-05-01             5    2.637584                1 1171368.7
## 2199 May 2019 2019-05-01             5    2.727273                1 1171368.7
## 2200 May 2019 2019-05-01             5    1.776515                0 1171368.7
## 2201 May 2019 2019-05-01             5    2.769231                1 1171368.7
## 2202 May 2019 2019-05-01             5    1.554054                0 1171368.7
## 2203 May 2019 2019-05-01             5    2.760656                1 1171368.7
## 2204 May 2019 2019-05-01             5    1.776119                0 1171368.7
## 2205 May 2019 2019-05-01             5    1.720000                0 1171368.7
## 2206 May 2019 2019-05-01             5    2.766187                1 1171368.7
## 2207 May 2019 2019-05-01             5    2.787072                1 1171368.7
## 2208 May 2019 2019-05-01             5    2.728814                1 1171368.7
## 2209 May 2019 2019-05-01             5    1.686869                0 1171368.7
## 2210 May 2019 2019-05-01             5    1.826087                0 1171368.7
## 2211 May 2019 2019-05-01             5    2.391489                0 1171368.7
## 2212 May 2019 2019-05-01             5    1.627907                0 1171368.7
## 2213 May 2019 2019-05-01             5    1.774590                0 1171368.7
## 2214 May 2019 2019-05-01             5    2.784553                1 1171368.7
## 2215 May 2019 2019-05-01             5    1.712644                0 1171368.7
## 2216 May 2019 2019-05-01             5    1.676113                0 1171368.7
## 2217 May 2019 2019-05-01             5    2.069231                0 1171368.7
## 2218 May 2019 2019-05-01             5    1.809339                0 1171368.7
## 2219 May 2019 2019-05-01             5    2.693380                1 1171368.7
## 2220 May 2019 2019-05-01             5    1.652015                0 1171368.7
## 2221 May 2019 2019-05-01             5    1.720930                0 1171368.7
## 2222 May 2019 2019-05-01             5    1.480392                0 1169637.0
## 2223 May 2019 2019-05-01             5    2.639665                1 1169637.0
## 2224 May 2019 2019-05-01             5    2.670175                1 1169637.0
## 2225 May 2019 2019-05-01             5    1.741279                0 1169637.0
## 2226 May 2019 2019-05-01             5    2.661972                1 1169637.0
## 2227 May 2019 2019-05-01             5    1.709677                0 1169637.0
## 2228 May 2019 2019-05-01             5    1.719472                0 1169637.0
## 2229 May 2019 2019-05-01             5    1.676282                0 1169637.0
## 2230 May 2019 2019-05-01             5    1.822581                0 1169637.0
## 2231 May 2019 2019-05-01             5    1.719424                0 1169257.2
## 2232 May 2019 2019-05-01             5    1.864111                0 1169257.2
## 2233 May 2019 2019-05-01             5    2.601744                1 1169257.2
## 2234 May 2019 2019-05-01             5    2.156934                0 1169257.2
## 2235 May 2019 2019-05-01             5    1.771331                0 1169257.2
## 2236 May 2019 2019-05-01             5    2.652047                1 1169257.2
## 2237 May 2019 2019-05-01             5    2.562092                1 1169257.2
## 2238 May 2019 2019-05-01             5    1.970464                0 1169257.2
## 2239 May 2019 2019-05-01             5    2.671795                1 1169257.2
## 2240 May 2019 2019-05-01             5    2.716012                1 1169257.2
## 2241 May 2019 2019-05-01             5    1.524917                0 1169257.2
## 2242 May 2019 2019-05-01             5    1.916409                0 1169257.2
## 2243 May 2019 2019-05-01             5    2.573099                1 1169257.2
## 2244 May 2019 2019-05-01             5    2.709571                1 1169257.2
## 2245 May 2019 2019-05-01             5    2.654434                1 1169257.2
## 2246 May 2019 2019-05-01             5    2.549598                1 1169257.2
## 2247 May 2019 2019-05-01             5    2.764075                1 1169257.2
## 2248 May 2019 2019-05-01             5    1.703822                0 1169257.2
## 2249 May 2019 2019-05-01             5    2.607717                1 1169257.2
## 2250 May 2019 2019-05-01             5    1.802817                0 1169257.2
## 2251 May 2019 2019-05-01             5    2.524540                1 1169257.2
## 2252 May 2019 2019-05-01             5    1.921384                0 1169257.2
## 2253 May 2019 2019-05-01             5    1.847909                0 1169257.2
## 2254 May 2019 2019-05-01             5    2.342183                1 1169257.2
## 2255 May 2019 2019-05-01             5    1.719231                0 1169257.2
## 2256 May 2019 2019-05-01             5    1.690909                0 1169257.2
## 2257 May 2019 2019-05-01             5    1.556338                0 1169257.2
## 2258 May 2019 2019-05-01             5    1.621908                0 1169257.2
## 2259 May 2019 2019-05-01             5    1.736111                0 1169257.2
## 2260 May 2019 2019-05-01             5    1.926357                0 1169257.2
## 2261 May 2019 2019-05-01             5    1.897010                0 1169257.2
## 2262 May 2019 2019-05-01             5    1.717857                0 1169257.2
## 2263 May 2019 2019-05-01             5    2.636066                1 1169257.2
## 2264 May 2019 2019-05-01             5    2.684385                1 1169257.2
## 2265 May 2019 2019-05-01             5    2.548571                1 1169257.2
## 2266 May 2019 2019-05-01             5    2.443590                1 1169257.2
## 2267 May 2019 2019-05-01             5    1.741573                0 1169257.2
## 2268 May 2019 2019-05-01             5    2.623656                1 1169257.2
## 2269 May 2019 2019-05-01             5    2.587131                1 1169257.2
## 2270 May 2019 2019-05-01             5    2.501377                1 1169257.2
## 2271 May 2019 2019-05-01             5    2.841379                1 1169257.2
## 2272 May 2019 2019-05-01             5    2.833333                1 1169257.2
## 2273 May 2019 2019-05-01             5    1.817121                0 1169257.2
## 2274 May 2019 2019-05-01             5    2.608187                1 1169257.2
## 2275 May 2019 2019-05-01             5    1.716312                0 1169257.2
## 2276 May 2019 2019-05-01             5    1.673203                0 1169257.2
## 2277 May 2019 2019-05-01             5    2.648649                1 1169257.2
## 2278 May 2019 2019-05-01             5    1.674497                0 1169257.2
## 2279 May 2019 2019-05-01             5    2.754098                1 1169257.2
## 2280 May 2019 2019-05-01             5    1.744604                0 1169257.2
## 2281 May 2019 2019-05-01             5    2.743590                1 1169257.2
## 2282 May 2019 2019-05-01             5    1.830189                0 1169257.2
## 2283 May 2019 2019-05-01             5    1.825581                0 1169257.2
## 2284 May 2019 2019-05-01             5    1.858209                0 1169257.2
## 2285 May 2019 2019-05-01             5    2.666667                1 1169257.2
## 2286 May 2019 2019-05-01             5    2.688889                1 1169257.2
## 2287 May 2019 2019-05-01             5    1.728395                0 1169257.2
## 2288 May 2019 2019-05-01             5    2.719178                1 1169257.2
## 2289 May 2019 2019-05-01             5    1.617241                0 1169257.2
## 2290 May 2019 2019-05-01             5    2.671010                1 1169257.2
## 2291 May 2019 2019-05-01             5    2.567901                1 1169257.2
## 2292 May 2019 2019-05-01             5    2.569892                1 1169257.2
## 2293 May 2019 2019-05-01             5    2.549724                1 1169257.2
## 2294 May 2019 2019-05-01             5    2.509383                1 1169257.2
## 2295 May 2019 2019-05-01             5    1.686508                0 1169257.2
## 2296 May 2019 2019-05-01             5    1.529940                0 1169257.2
## 2297 May 2019 2019-05-01             5    2.715625                1 1169257.2
## 2298 May 2019 2019-05-01             5    1.738806                0 1169257.2
## 2299 May 2019 2019-05-01             5    1.682836                0 1169257.2
## 2300 May 2019 2019-05-01             5    1.687307                0 1169257.2
## 2301 May 2019 2019-05-01             5    1.765343                0 1169257.2
## 2302 May 2019 2019-05-01             5    2.538874                1 1169257.2
## 2303 May 2019 2019-05-01             5    1.900709                0 1169257.2
## 2304 May 2019 2019-05-01             5    2.509589                1 1169257.2
## 2305 May 2019 2019-05-01             5    1.821293                0 1169257.2
## 2306 May 2019 2019-05-01             5    1.623239                0 1169257.2
## 2307 May 2019 2019-05-01             5    1.854406                0 1169257.2
## 2308 May 2019 2019-05-01             5    2.838488                1 1169257.2
## 2309 May 2019 2019-05-01             5    1.669456                0 1169257.2
## 2310 May 2019 2019-05-01             5    2.896552                1 1169257.2
## 2311 May 2019 2019-05-01             5    2.722034                1 1169257.2
## 2312 May 2019 2019-05-01             5    2.545775                1 1169257.2
## 2313 May 2019 2019-05-01             5    2.641096                1 1169257.2
## 2314 May 2019 2019-05-01             5    1.988806                0 1169257.2
## 2315 May 2019 2019-05-01             5    1.572881                0 1169257.2
## 2316 May 2019 2019-05-01             5    2.612676                1 1169257.2
## 2317 May 2019 2019-05-01             5    1.690566                0 1169257.2
## 2318 May 2019 2019-05-01             5    1.893204                0 1169257.2
## 2319 May 2019 2019-05-01             5    2.055556                0 1169257.2
## 2320 May 2019 2019-05-01             5    1.841699                0 1169257.2
## 2321 May 2019 2019-05-01             5    2.690625                1 1169257.2
## 2322 May 2019 2019-05-01             5    1.673152                0 1169257.2
## 2323 May 2019 2019-05-01             5    1.669091                0 1169257.2
## 2324 May 2019 2019-05-01             5    1.619772                0 1169257.2
## 2325 May 2019 2019-05-01             5    1.665272                0 1169257.2
## 2326 May 2019 2019-05-01             5    1.745536                0 1169257.2
## 2327 May 2019 2019-05-01             5    1.729614                0 1169257.2
## 2328 May 2019 2019-05-01             5    2.705479                1 1169257.2
## 2329 May 2019 2019-05-01             5    1.727273                0 1169257.2
## 2330 May 2019 2019-05-01             5    1.790441                0 1169257.2
## 2331 May 2019 2019-05-01             5    1.560606                0 1169257.2
## 2332 May 2019 2019-05-01             5    1.602996                0 1169257.2
## 2333 May 2019 2019-05-01             5    2.666667                1 1175142.2
## 2334 May 2019 2019-05-01             5    2.440860                1 1175142.2
## 2335 May 2019 2019-05-01             5    2.607629                1 1175142.2
## 2336 May 2019 2019-05-01             5    2.485342                1 1175142.2
## 2337 May 2019 2019-05-01             5    2.832335                1 1175142.2
## 2338 May 2019 2019-05-01             5    1.897436                0 1175142.2
## 2339 May 2019 2019-05-01             5    2.697161                1 1175142.2
## 2340 May 2019 2019-05-01             5    2.666667                1 1175142.2
## 2341 May 2019 2019-05-01             5    2.647230                1 1175142.2
## 2342 May 2019 2019-05-01             5    2.781768                1 1175142.2
## 2343 May 2019 2019-05-01             5    2.651652                1 1175142.2
## 2344 May 2019 2019-05-01             5    2.772242                1 1175142.2
## 2345 May 2019 2019-05-01             5    2.640110                1 1175142.2
## 2346 May 2019 2019-05-01             5    2.715686                1 1175142.2
## 2347 May 2019 2019-05-01             5    2.630189                1 1175142.2
## 2348 May 2019 2019-05-01             5    2.600619                1 1175142.2
## 2349 May 2019 2019-05-01             5    2.674576                1 1175142.2
## 2350 May 2019 2019-05-01             5    2.778169                1 1175142.2
## 2351 May 2019 2019-05-01             5    2.620419                1 1175142.2
## 2352 May 2019 2019-05-01             5    3.040404                1 1175142.2
## 2353 May 2019 2019-05-01             5    2.638418                1 1175142.2
## 2354 May 2019 2019-05-01             5    2.649351                1 1175142.2
## 2355 May 2019 2019-05-01             5    1.616858                0 1175142.2
## 2356 May 2019 2019-05-01             5    2.654501                1 1175142.2
## 2357 May 2019 2019-05-01             5    2.590759                1 1175142.2
## 2358 May 2019 2019-05-01             5    2.546053                1 1175142.2
## 2359 May 2019 2019-05-01             5    2.705674                1 1175142.2
## 2360 May 2019 2019-05-01             5    1.920455                0 1175142.2
## 2361 May 2019 2019-05-01             5    2.582456                1 1175142.2
## 2362 May 2019 2019-05-01             5    2.610119                1 1176436.8
## 2363 May 2019 2019-05-01             5    2.614035                1 1176436.8
## 2364 May 2019 2019-05-01             5    2.679083                1 1176436.8
## 2365 May 2019 2019-05-01             5    1.747634                0 1176436.8
## 2366 May 2019 2019-05-01             5    2.637462                1 1176436.8
## 2367 May 2019 2019-05-01             5    2.150538                0 1176436.8
## 2368 May 2019 2019-05-01             5    1.593168                0 1176436.8
## 2369 May 2019 2019-05-01             5    1.622711                0 1150184.3
## 2370 May 2019 2019-05-01             5    2.740310                1 1150184.3
## 2371 May 2019 2019-05-01             5    1.533040                0 1150184.3
## 2372 May 2019 2019-05-01             5    2.708075                1 1150184.3
## 2373 May 2019 2019-05-01             5    2.536508                1 1150184.3
## 2374 May 2019 2019-05-01             5    2.579946                1 1150184.3
## 2375 May 2019 2019-05-01             5    1.824841                0 1150184.3
## 2376 May 2019 2019-05-01             5    1.655870                0 1150184.3
## 2377 May 2019 2019-05-01             5    1.783217                0 1150184.3
## 2378 May 2019 2019-05-01             5    1.688581                0 1150184.3
## 2379 May 2019 2019-05-01             5    1.817844                0 1150184.3
## 2380 May 2019 2019-05-01             5    2.780405                1 1150184.3
## 2381 May 2019 2019-05-01             5    1.599190                0 1150184.3
## 2382 May 2019 2019-05-01             5    1.811245                0 1150184.3
## 2383 May 2019 2019-05-01             5    1.604167                0 1150184.3
## 2384 May 2019 2019-05-01             5    1.642623                0 1150184.3
## 2385 May 2019 2019-05-01             5    1.603279                0 1150184.3
## 2386 May 2019 2019-05-01             5    1.837004                0 1150184.3
## 2387 May 2019 2019-05-01             5    1.642570                0 1150184.3
## 2388 May 2019 2019-05-01             5    2.683824                1 1150184.3
## 2389 May 2019 2019-05-01             5    1.855513                0 1150184.3
## 2390 May 2019 2019-05-01             5    2.668919                1 1150184.3
## 2391 May 2019 2019-05-01             5    2.624573                1 1150184.3
## 2392 May 2019 2019-05-01             5    1.799320                0 1150184.3
## 2393 May 2019 2019-05-01             5    1.543726                0 1150184.3
## 2394 May 2019 2019-05-01             5    2.524430                1 1150184.3
## 2395 May 2019 2019-05-01             5    2.654354                1 1150184.3
## 2396 May 2019 2019-05-01             5    1.674157                0 1150184.3
## 2397 May 2019 2019-05-01             5    1.578182                0 1150184.3
## 2398 May 2019 2019-05-01             5    1.539007                0 1150184.3
## 2399 May 2019 2019-05-01             5    1.654545                0 1150184.3
## 2400 May 2019 2019-05-01             5    2.666667                1 1150184.3
## 2401 May 2019 2019-05-01             5    1.770492                0 1150184.3
## 2402 May 2019 2019-05-01             5    1.733591                0 1150184.3
## 2403 Oct 2019 2019-10-01            10    2.673184                1  950518.7
## 2404 Oct 2019 2019-10-01            10    2.657738                1  950518.7
## 2405 Oct 2019 2019-10-01            10    2.606250                1  950518.7
## 2406 Oct 2019 2019-10-01            10    2.735376                1  950518.7
## 2407 Oct 2019 2019-10-01            10    2.897436                1  950518.7
## 2408 Oct 2019 2019-10-01            10    2.580292                1  950518.7
## 2409 Oct 2019 2019-10-01            10    2.795455                1  950518.7
## 2410 Oct 2019 2019-10-01            10    2.551515                1  950518.7
## 2411 Oct 2019 2019-10-01            10    2.682390                1  950518.7
## 2412 Oct 2019 2019-10-01            10    2.692308                1  950518.7
## 2413 Oct 2019 2019-10-01            10    2.778462                1  950518.7
## 2414 Oct 2019 2019-10-01            10    2.724518                1  950518.7
## 2415 Oct 2019 2019-10-01            10    1.582524                0  950518.7
## 2416 Oct 2019 2019-10-01            10    1.811847                0  950518.7
## 2417 Oct 2019 2019-10-01            10    2.771513                1  950518.7
## 2418 Oct 2019 2019-10-01            10    2.712610                1  950518.7
## 2419 Oct 2019 2019-10-01            10    2.673716                1 1155617.4
## 2420 Oct 2019 2019-10-01            10    2.741333                1 1155617.4
## 2421 Oct 2019 2019-10-01            10    2.657321                1 1155617.4
## 2422 Oct 2019 2019-10-01            10    2.730408                1 1155617.4
## 2423 Oct 2019 2019-10-01            10    2.689474                1 1155617.4
## 2424 Oct 2019 2019-10-01            10    2.806452                1 1155617.4
## 2425 Oct 2019 2019-10-01            10    2.570025                1 1155617.4
## 2426 Oct 2019 2019-10-01            10    2.933993                1 1155617.4
## 2427 Oct 2019 2019-10-01            10    2.774603                1 1155617.4
## 2428 Oct 2019 2019-10-01            10    2.682451                1 1155617.4
## 2429 Oct 2019 2019-10-01            10    2.769231                1 1155617.4
## 2430 Oct 2019 2019-10-01            10    2.672087                1 1155617.4
## 2431 Oct 2019 2019-10-01            10    2.486631                1 1155617.4
## 2432 Oct 2019 2019-10-01            10    2.724796                1 1155617.4
## 2433 Oct 2019 2019-10-01            10    2.795082                1 1155617.4
## 2434 Oct 2019 2019-10-01            10    1.824427                0 1155617.4
## 2435 Oct 2019 2019-10-01            10    2.740000                1 1155617.4
## 2436 Oct 2019 2019-10-01            10    2.730159                1 1155617.4
## 2437 Oct 2019 2019-10-01            10    2.885449                1 1155617.4
## 2438 Oct 2019 2019-10-01            10    2.718033                1 1155617.4
## 2439 Oct 2019 2019-10-01            10    2.774603                1 1155617.4
## 2440 Oct 2019 2019-10-01            10    2.740132                1 1155617.4
## 2441 Oct 2019 2019-10-01            10    2.643963                1 1155617.4
## 2442 Oct 2019 2019-10-01            10    2.803681                1 1155617.4
## 2443 Oct 2019 2019-10-01            10    2.674772                1 1155617.4
## 2444 Oct 2019 2019-10-01            10    2.827586                1 1155617.4
## 2445 Oct 2019 2019-10-01            10    2.654867                1 1155617.4
## 2446 Oct 2019 2019-10-01            10    2.668990                1 1155617.4
## 2447 Oct 2019 2019-10-01            10    2.747405                1 1155617.4
## 2448 Oct 2019 2019-10-01            10    2.729904                1 1155617.4
## 2449 Oct 2019 2019-10-01            10    2.552430                1 1155617.4
## 2450 Oct 2019 2019-10-01            10    2.722892                1 1155617.4
## 2451 Oct 2019 2019-10-01            10    2.674051                1 1155617.4
## 2452 Oct 2019 2019-10-01            10    2.719653                1 1155617.4
## 2453 Oct 2019 2019-10-01            10    2.860465                1 1155617.4
## 2454 Oct 2019 2019-10-01            10    2.632075                1 1165438.4
## 2455 Oct 2019 2019-10-01            10    2.563953                1 1165438.4
## 2456 Oct 2019 2019-10-01            10    1.663043                0 1165438.4
## 2457 Oct 2019 2019-10-01            10    2.489305                1 1165438.4
## 2458 Oct 2019 2019-10-01            10    2.563518                1 1165438.4
## 2459 Oct 2019 2019-10-01            10    2.569014                1 1165438.4
## 2460 Oct 2019 2019-10-01            10    2.870871                0 1165438.4
## 2461 Oct 2019 2019-10-01            10    2.572700                1 1165438.4
## 2462 Oct 2019 2019-10-01            10    2.559459                1 1165438.4
## 2463 Oct 2019 2019-10-01            10    3.008439                1 1165438.4
## 2464 Oct 2019 2019-10-01            10    2.664336                1 1165438.4
## 2465 Oct 2019 2019-10-01            10    2.557841                1 1165438.4
## 2466 Oct 2019 2019-10-01            10    2.425656                1 1165438.4
## 2467 Oct 2019 2019-10-01            10    2.551084                1 1165438.4
## 2468 Oct 2019 2019-10-01            10    2.581538                1 1165438.4
## 2469 Oct 2019 2019-10-01            10    2.517028                1 1165438.4
## 2470 Oct 2019 2019-10-01            10    2.718354                1 1058006.9
## 2471 Oct 2019 2019-10-01            10    2.603226                1 1058006.9
## 2472 Oct 2019 2019-10-01            10    2.688889                1 1058006.9
## 2473 Oct 2019 2019-10-01            10    2.774834                1 1058006.9
## 2474 Oct 2019 2019-10-01            10    2.595016                1 1058006.9
## 2475 Oct 2019 2019-10-01            10    2.771978                1 1058006.9
## 2476 Oct 2019 2019-10-01            10    2.706553                1 1058006.9
## 2477 Oct 2019 2019-10-01            10    2.588384                1 1058006.9
## 2478 Oct 2019 2019-10-01            10    2.574534                1 1058006.9
## 2479 Oct 2019 2019-10-01            10    2.750685                1 1058006.9
## 2480 Oct 2019 2019-10-01            10    2.584570                1 1058006.9
## 2481 Oct 2019 2019-10-01            10    2.619195                1 1058006.9
## 2482 Oct 2019 2019-10-01            10    2.678063                1 1058006.9
## 2483 Oct 2019 2019-10-01            10    2.769663                1 1058006.9
## 2484 Oct 2019 2019-10-01            10    2.671733                1 1058006.9
## 2485 Oct 2019 2019-10-01            10    2.772414                1 1058006.9
## 2486 Oct 2019 2019-10-01            10    2.680519                1 1058006.9
## 2487 Oct 2019 2019-10-01            10    2.627119                1 1058006.9
## 2488 Oct 2019 2019-10-01            10    2.849850                1 1058006.9
## 2489 Oct 2019 2019-10-01            10    2.802676                1 1058006.9
## 2490 Oct 2019 2019-10-01            10    2.551813                1 1058006.9
## 2491 Oct 2019 2019-10-01            10    2.758410                1 1058006.9
## 2492 Oct 2019 2019-10-01            10    2.661184                1 1058006.9
## 2493 Oct 2019 2019-10-01            10    2.737805                1 1058006.9
## 2494 Oct 2019 2019-10-01            10    2.659443                1 1058006.9
## 2495 Oct 2019 2019-10-01            10    2.694969                1 1058006.9
## 2496 Oct 2019 2019-10-01            10    2.645251                1 1058006.9
## 2497 Oct 2019 2019-10-01            10    2.777429                1 1058006.9
## 2498 Oct 2019 2019-10-01            10    2.753463                1 1058006.9
## 2499 Oct 2019 2019-10-01            10    2.761745                1 1058006.9
## 2500 Oct 2019 2019-10-01            10    2.615591                1 1058006.9
## 2501 Oct 2019 2019-10-01            10    2.752294                1 1058006.9
## 2502 Oct 2019 2019-10-01            10    2.664671                1 1058006.9
## 2503 Oct 2019 2019-10-01            10    2.521994                1 1058006.9
## 2504 Oct 2019 2019-10-01            10    2.672365                1 1058006.9
## 2505 Oct 2019 2019-10-01            10    2.780980                1 1058006.9
## 2506 Oct 2019 2019-10-01            10    2.789668                1 1058006.9
## 2507 Oct 2019 2019-10-01            10    2.744526                1 1058006.9
## 2508 Oct 2019 2019-10-01            10    2.587662                1 1058006.9
## 2509 Oct 2019 2019-10-01            10    2.590214                1 1058006.9
## 2510 Oct 2019 2019-10-01            10    2.798077                1 1058006.9
## 2511 Oct 2019 2019-10-01            10    2.635179                1 1058006.9
## 2512 Oct 2019 2019-10-01            10    2.638978                1 1058006.9
## 2513 Oct 2019 2019-10-01            10    2.785507                1 1032899.7
## 2514 Oct 2019 2019-10-01            10    2.802292                1 1032899.7
## 2515 Oct 2019 2019-10-01            10    2.679045                1 1032899.7
## 2516 Oct 2019 2019-10-01            10    2.625000                1 1032899.7
## 2517 Oct 2019 2019-10-01            10    2.694370                1 1032899.7
## 2518 Oct 2019 2019-10-01            10    2.717391                1 1032899.7
## 2519 Oct 2019 2019-10-01            10    2.816216                1 1032899.7
## 2520 Oct 2019 2019-10-01            10    2.838983                1 1032899.7
## 2521 Oct 2019 2019-10-01            10    2.689320                1 1032899.7
## 2522 Oct 2019 2019-10-01            10    2.094697                1 1032899.7
## 2523 Oct 2019 2019-10-01            10    2.654088                1 1032899.7
## 2524 Oct 2019 2019-10-01            10    2.643590                1 1032899.7
## 2525 Oct 2019 2019-10-01            10    2.793750                1 1032899.7
## 2526 Oct 2019 2019-10-01            10    2.714674                1 1032899.7
## 2527 Oct 2019 2019-10-01            10    2.852507                1 1032899.7
## 2528 Oct 2019 2019-10-01            10    2.979094                1 1032899.7
## 2529 Oct 2019 2019-10-01            10    2.694631                1 1032899.7
## 2530 Oct 2019 2019-10-01            10    2.591331                1 1032899.7
## 2531 Oct 2019 2019-10-01            10    2.722513                1 1032899.7
## 2532 Oct 2019 2019-10-01            10    1.844371                0 1032899.7
## 2533 Oct 2019 2019-10-01            10    2.702265                1 1032899.7
## 2534 Oct 2019 2019-10-01            10    2.627507                1 1032899.7
## 2535 Oct 2019 2019-10-01            10    2.500000                1 1032899.7
## 2536 Oct 2019 2019-10-01            10    2.482558                1 1000147.1
## 2537 Oct 2019 2019-10-01            10    2.824798                1 1000147.1
## 2538 Oct 2019 2019-10-01            10    2.690027                1 1000147.1
## 2539 Oct 2019 2019-10-01            10    2.697406                1 1000147.1
## 2540 Oct 2019 2019-10-01            10    2.617414                1 1000147.1
## 2541 Oct 2019 2019-10-01            10    1.721569                0 1000147.1
## 2542 Oct 2019 2019-10-01            10    2.650000                1 1000147.1
## 2543 Oct 2019 2019-10-01            10    2.160142                1 1000147.1
## 2544 Oct 2019 2019-10-01            10    2.627692                1 1000147.1
## 2545 Oct 2019 2019-10-01            10    2.764706                1 1000147.1
## 2546 Oct 2019 2019-10-01            10    2.431973                1 1000147.1
## 2547 Oct 2019 2019-10-01            10    2.653846                1 1000147.1
## 2548 Oct 2019 2019-10-01            10    2.816054                1  999718.1
## 2549 Oct 2019 2019-10-01            10    2.688963                1  999718.1
## 2550 Oct 2019 2019-10-01            10    2.676364                1  999718.1
## 2551 Oct 2019 2019-10-01            10    2.609290                1  999718.1
## 2552 Oct 2019 2019-10-01            10    2.245353                1  999718.1
## 2553 Oct 2019 2019-10-01            10    2.695122                1  999718.1
## 2554 Oct 2019 2019-10-01            10    2.859599                1  999718.1
## 2555 Oct 2019 2019-10-01            10    2.698630                1  999718.1
## 2556 Oct 2019 2019-10-01            10    2.775641                1  999718.1
## 2557 Oct 2019 2019-10-01            10    2.709945                1  999718.1
## 2558 Oct 2019 2019-10-01            10    2.700767                1  999718.1
## 2559 Oct 2019 2019-10-01            10    2.672087                1  999718.1
## 2560 Oct 2019 2019-10-01            10    2.559028                1  999718.1
## 2561 Oct 2019 2019-10-01            10    2.566154                1  999718.1
## 2562 Oct 2019 2019-10-01            10    2.596491                1 1169257.2
## 2563 Oct 2019 2019-10-01            10    2.639456                1 1169257.2
## 2564 Oct 2019 2019-10-01            10    2.681698                1 1169257.2
## 2565 Oct 2019 2019-10-01            10    2.620991                1 1169257.2
## 2566 Oct 2019 2019-10-01            10    2.739414                1 1169257.2
## 2567 Oct 2019 2019-10-01            10    2.641026                1 1169257.2
## 2568 Oct 2019 2019-10-01            10    1.852201                0 1169257.2
## 2569 Oct 2019 2019-10-01            10    2.834532                1 1169257.2
## 2570 Oct 2019 2019-10-01            10    2.761246                1 1168891.6
## 2571 Oct 2019 2019-10-01            10    2.637540                1 1168891.6
## 2572 Oct 2019 2019-10-01            10    2.882943                1 1168891.6
## 2573 Oct 2019 2019-10-01            10    2.687500                1 1168891.6
## 2574 Oct 2019 2019-10-01            10    2.707746                1 1168891.6
## 2575 Oct 2019 2019-10-01            10    1.963899                0 1169637.0
## 2576 Oct 2019 2019-10-01            10    2.627451                1 1169637.0
## 2577 Oct 2019 2019-10-01            10    2.461957                1 1169637.0
## 2578 Oct 2019 2019-10-01            10    1.754864                0 1169637.0
## 2579 Oct 2019 2019-10-01            10    1.884477                0 1169637.0
## 2580 Oct 2019 2019-10-01            10    2.713816                1 1169637.0
## 2581 Oct 2019 2019-10-01            10    2.691558                1 1169637.0
## 2582 Oct 2019 2019-10-01            10    1.752443                0 1169637.0
## 2583 Oct 2019 2019-10-01            10    2.864469                1 1169637.0
## 2584 Oct 2019 2019-10-01            10    2.736667                1 1169637.0
## 2585 Oct 2019 2019-10-01            10    1.915033                0 1169637.0
## 2586 Oct 2019 2019-10-01            10    2.678261                1 1169637.0
## 2587 Oct 2019 2019-10-01            10    2.343537                1 1169637.0
## 2588 Oct 2019 2019-10-01            10    2.540925                1 1169637.0
## 2589 Oct 2019 2019-10-01            10    2.560000                1 1169637.0
## 2590 Oct 2019 2019-10-01            10    2.569733                1 1169637.0
## 2591 Oct 2019 2019-10-01            10    1.642553                0 1169637.0
## 2592 Oct 2019 2019-10-01            10    2.590164                1 1169637.0
## 2593 Oct 2019 2019-10-01            10    2.481894                1 1174589.1
## 2594 Oct 2019 2019-10-01            10    2.688356                1 1174589.1
## 2595 Oct 2019 2019-10-01            10    2.776632                1 1174589.1
## 2596 Oct 2019 2019-10-01            10    2.645570                1 1174589.1
## 2597 Oct 2019 2019-10-01            10    2.433584                1 1174589.1
## 2598 Oct 2019 2019-10-01            10    2.663934                1 1174589.1
## 2599 Oct 2019 2019-10-01            10    2.528190                1 1174589.1
## 2600 Oct 2019 2019-10-01            10    2.704023                1 1174589.1
## 2601 Oct 2019 2019-10-01            10    2.638177                1 1175142.2
## 2602 Oct 2019 2019-10-01            10    1.690299                0 1175142.2
## 2603 Oct 2019 2019-10-01            10    2.700272                1 1175142.2
## 2604 Oct 2019 2019-10-01            10    2.494286                1 1174494.4
## 2605 Oct 2019 2019-10-01            10    1.913846                0 1174494.4
## 2606 Oct 2019 2019-10-01            10    2.696532                1 1174494.4
## 2607 Oct 2019 2019-10-01            10    2.522667                1 1176436.8
## 2608 Oct 2019 2019-10-01            10    2.522727                1 1176436.8
## 2609 Oct 2019 2019-10-01            10    2.674194                1 1176436.8
## 2610 Oct 2019 2019-10-01            10    2.564885                1 1176436.8
## 2611 Oct 2019 2019-10-01            10    2.715356                1 1176436.8
## 2612 Oct 2019 2019-10-01            10    2.582043                1 1176436.8
## 2613 Oct 2019 2019-10-01            10    2.690323                1 1176436.8
## 2614 Oct 2019 2019-10-01            10    2.459119                1 1176436.8
## 2615 Oct 2019 2019-10-01            10    2.762058                1 1176436.8
## 2616 Oct 2019 2019-10-01            10    2.608150                1 1176436.8
## 2617 Oct 2019 2019-10-01            10    2.691803                1 1176436.8
## 2618 Oct 2019 2019-10-01            10    2.681818                1 1176436.8
## 2619 Oct 2019 2019-10-01            10    2.667732                1 1176436.8
## 2620 Oct 2019 2019-10-01            10    2.518797                1 1176436.8
## 2621 Oct 2019 2019-10-01            10    2.671827                1 1176436.8
## 2622 Oct 2019 2019-10-01            10    2.695767                1 1176436.8
## 2623 Oct 2019 2019-10-01            10    2.641337                1 1176436.8
## 2624 Oct 2019 2019-10-01            10    2.718750                1 1176436.8
## 2625 Oct 2019 2019-10-01            10    2.592593                1 1176436.8
## 2626 Oct 2019 2019-10-01            10    2.696049                1 1176436.8
## 2627 Oct 2019 2019-10-01            10    2.478916                1 1176436.8
## 2628 Oct 2019 2019-10-01            10    2.429429                1 1176436.8
## 2629 Oct 2019 2019-10-01            10    2.633218                1 1176436.8
## 2630 Oct 2019 2019-10-01            10    2.589674                1 1176436.8
## 2631 Oct 2019 2019-10-01            10    2.543860                1 1176436.8
## 2632 Oct 2019 2019-10-01            10    2.602606                1 1176436.8
## 2633 Oct 2019 2019-10-01            10    2.972318                1 1058006.9
## 2634 Oct 2019 2019-10-01            10    1.908759                0 1171365.6
## 2635 Oct 2019 2019-10-01            10    1.694340                0 1171365.6
## 2636 Oct 2019 2019-10-01            10    2.755932                1 1171365.6
## 2637 Oct 2019 2019-10-01            10    1.825000                0 1171365.6
## 2638 Oct 2019 2019-10-01            10    2.643258                1 1171365.6
## 2639 Oct 2019 2019-10-01            10    2.674699                1 1171365.6
## 2640 Oct 2019 2019-10-01            10    1.618110                0 1171365.6
## 2641 Oct 2019 2019-10-01            10    2.039683                0 1171365.6
## 2642 Oct 2019 2019-10-01            10    1.719697                0 1171365.6
## 2643 Oct 2019 2019-10-01            10    2.084084                0 1152131.0
## 2644 Oct 2019 2019-10-01            10    1.974110                0 1152131.0
## 2645 Oct 2019 2019-10-01            10    2.506812                1 1152131.0
## 2646 Oct 2019 2019-10-01            10    2.569322                1 1152131.0
## 2647 Oct 2019 2019-10-01            10    2.565657                1 1152131.0
## 2648 Oct 2019 2019-10-01            10    2.651163                1 1152131.0
## 2649 Oct 2019 2019-10-01            10    1.681992                0 1152131.0
## 2650 Oct 2019 2019-10-01            10    1.766393                0 1152131.0
## 2651 Oct 2019 2019-10-01            10    1.886364                0 1152131.0
## 2652 Oct 2019 2019-10-01            10    2.643059                1 1152131.0
## 2653 Oct 2019 2019-10-01            10    2.524096                1 1152131.0
## 2654 Oct 2019 2019-10-01            10    2.740741                1 1152131.0
## 2655 Oct 2019 2019-10-01            10    1.661479                0 1152131.0
## 2656 Oct 2019 2019-10-01            10    2.525773                1 1152131.0
## 2657 Oct 2019 2019-10-01            10    2.680135                1 1152131.0
## 2658 Feb 2020 2020-02-01             2    2.648810                1  950508.0
## 2659 Feb 2020 2020-02-01             2    2.582822                1  950508.0
## 2660 Feb 2020 2020-02-01             2    2.698361                1  950508.0
## 2661 Feb 2020 2020-02-01             2    2.737705                1  950508.0
## 2662 Feb 2020 2020-02-01             2    2.654839                1  950508.0
## 2663 Feb 2020 2020-02-01             2    2.489489                1  950508.0
## 2664 Feb 2020 2020-02-01             2    2.254839                1  950508.0
## 2665 Feb 2020 2020-02-01             2    2.670695                1  950508.0
## 2666 Feb 2020 2020-02-01             2    2.658863                1  950508.0
## 2667 Feb 2020 2020-02-01             2    2.739286                1  950508.0
## 2668 Feb 2020 2020-02-01             2    2.782609                1  950508.0
## 2669 Feb 2020 2020-02-01             2    2.797980                1  950508.0
## 2670 Feb 2020 2020-02-01             2    2.423469                1  950508.0
## 2671 Feb 2020 2020-02-01             2    2.504823                1  950508.0
## 2672 Feb 2020 2020-02-01             2    2.642857                1  950508.0
## 2673 Feb 2020 2020-02-01             2    2.564356                1  950508.0
## 2674 Feb 2020 2020-02-01             2    2.619883                1  950508.0
## 2675 Feb 2020 2020-02-01             2    2.724432                1  950508.0
## 2676 Feb 2020 2020-02-01             2    2.392405                1  950508.0
## 2677 Feb 2020 2020-02-01             2    2.375000                1  950508.0
## 2678 Feb 2020 2020-02-01             2    2.685430                1  950508.0
## 2679 Feb 2020 2020-02-01             2    2.276056                1  950508.0
## 2680 Feb 2020 2020-02-01             2    2.772414                1  950508.0
## 2681 Feb 2020 2020-02-01             2    2.410876                1  950508.0
## 2682 Feb 2020 2020-02-01             2    2.506369                1  950508.0
## 2683 Feb 2020 2020-02-01             2    2.510703                1  950508.0
## 2684 Feb 2020 2020-02-01             2    2.628975                1  950508.0
## 2685 Feb 2020 2020-02-01             2    2.309904                1  950508.0
## 2686 Feb 2020 2020-02-01             2    2.292899                1  950508.0
## 2687 Feb 2020 2020-02-01             2    2.500000                1  950508.0
## 2688 Feb 2020 2020-02-01             2    2.380240                1  950508.0
## 2689 Feb 2020 2020-02-01             2    2.471751                1  950508.0
## 2690 Feb 2020 2020-02-01             2    2.662791                1  950508.0
## 2691 Feb 2020 2020-02-01             2    2.690554                1  950508.0
## 2692 Feb 2020 2020-02-01             2    2.626582                1  950508.0
## 2693 Feb 2020 2020-02-01             2    2.688312                1  950508.0
## 2694 Feb 2020 2020-02-01             2    2.640845                1 1155600.4
## 2695 Feb 2020 2020-02-01             2    2.528796                1 1155600.4
## 2696 Feb 2020 2020-02-01             2    2.671388                1 1155600.4
## 2697 Feb 2020 2020-02-01             2    2.647458                1 1155600.4
## 2698 Feb 2020 2020-02-01             2    2.689349                1 1155600.4
## 2699 Feb 2020 2020-02-01             2    2.792727                1 1155600.4
## 2700 Feb 2020 2020-02-01             2    2.776471                1 1155600.4
## 2701 Feb 2020 2020-02-01             2    2.641176                1 1155600.4
## 2702 Feb 2020 2020-02-01             2    2.507418                1 1155600.4
## 2703 Feb 2020 2020-02-01             2    2.527273                1 1155600.4
## 2704 Feb 2020 2020-02-01             2    2.329193                1 1155600.4
## 2705 Feb 2020 2020-02-01             2    2.576208                1 1155600.4
## 2706 Feb 2020 2020-02-01             2    2.906615                1 1155600.4
## 2707 Feb 2020 2020-02-01             2    2.511450                1 1155600.4
## 2708 Feb 2020 2020-02-01             2    2.513846                1 1155600.4
## 2709 Feb 2020 2020-02-01             2    2.596825                1 1155600.4
## 2710 Feb 2020 2020-02-01             2    2.789137                1 1155600.4
## 2711 Feb 2020 2020-02-01             2    2.756863                1 1155600.4
## 2712 Feb 2020 2020-02-01             2    2.632727                1 1155600.4
## 2713 Feb 2020 2020-02-01             2    2.612698                1 1155600.4
## 2714 Feb 2020 2020-02-01             2    2.825000                1 1155600.4
## 2715 Feb 2020 2020-02-01             2    2.765957                1 1155600.4
## 2716 Feb 2020 2020-02-01             2    2.667763                1 1155600.4
## 2717 Feb 2020 2020-02-01             2    2.482759                1 1155600.4
## 2718 Feb 2020 2020-02-01             2    2.776978                1 1155600.4
## 2719 Feb 2020 2020-02-01             2    2.724528                1 1155600.4
## 2720 Feb 2020 2020-02-01             2    2.656716                1 1155600.4
## 2721 Feb 2020 2020-02-01             2    2.506024                1 1155600.4
## 2722 Feb 2020 2020-02-01             2    1.734426                0 1155600.4
## 2723 Feb 2020 2020-02-01             2    1.657718                0 1155600.4
## 2724 Feb 2020 2020-02-01             2    1.895307                0 1155600.4
## 2725 Feb 2020 2020-02-01             2    2.567474                1 1155600.4
## 2726 Feb 2020 2020-02-01             2    2.652308                1 1155600.4
## 2727 Feb 2020 2020-02-01             2    2.280769                0 1155600.4
## 2728 Feb 2020 2020-02-01             2    1.817490                0 1155600.4
## 2729 Feb 2020 2020-02-01             2    1.804781                0 1155600.4
## 2730 Feb 2020 2020-02-01             2    1.681063                0 1155600.4
## 2731 Feb 2020 2020-02-01             2    2.784314                1 1155600.4
## 2732 Feb 2020 2020-02-01             2    2.718310                1 1155600.4
## 2733 Feb 2020 2020-02-01             2    2.726974                1 1155600.4
## 2734 Feb 2020 2020-02-01             2    2.705167                1 1155600.4
## 2735 Feb 2020 2020-02-01             2    2.697749                1 1155600.4
## 2736 Feb 2020 2020-02-01             2    2.671975                1 1162614.0
## 2737 Feb 2020 2020-02-01             2    2.608808                1 1162614.0
## 2738 Feb 2020 2020-02-01             2    2.493225                1 1162614.0
## 2739 Feb 2020 2020-02-01             2    2.893382                1 1162614.0
## 2740 Feb 2020 2020-02-01             2    2.623377                1 1165438.9
## 2741 Feb 2020 2020-02-01             2    2.636637                1 1165438.9
## 2742 Feb 2020 2020-02-01             2    2.653465                1 1165438.9
## 2743 Feb 2020 2020-02-01             2    2.626263                1 1165438.9
## 2744 Feb 2020 2020-02-01             2    2.469208                1 1165438.9
## 2745 Feb 2020 2020-02-01             2    2.704735                1 1165438.9
## 2746 Feb 2020 2020-02-01             2    2.531507                1 1162614.0
## 2747 Feb 2020 2020-02-01             2    2.605505                1 1162614.0
## 2748 Feb 2020 2020-02-01             2    2.870432                1 1162614.0
## 2749 Feb 2020 2020-02-01             2    2.608150                1 1162614.0
## 2750 Feb 2020 2020-02-01             2    2.516517                1 1165438.9
## 2751 Feb 2020 2020-02-01             2    2.833887                1 1165438.9
## 2752 Feb 2020 2020-02-01             2    2.613208                1 1165438.9
## 2753 Feb 2020 2020-02-01             2    2.709459                1 1165438.9
## 2754 Feb 2020 2020-02-01             2    2.723214                1 1162614.0
## 2755 Feb 2020 2020-02-01             2    2.800664                1 1162614.0
## 2756 Feb 2020 2020-02-01             2    2.537975                1 1162614.0
## 2757 Feb 2020 2020-02-01             2    2.507003                1 1162614.0
## 2758 Feb 2020 2020-02-01             2    2.711974                1 1162614.0
## 2759 Feb 2020 2020-02-01             2    2.685619                1 1165438.9
## 2760 Feb 2020 2020-02-01             2    2.593668                1 1165438.9
## 2761 Feb 2020 2020-02-01             2    2.861842                1 1165438.9
## 2762 Feb 2020 2020-02-01             2    2.598726                1 1165438.9
## 2763 Feb 2020 2020-02-01             2    2.656766                1 1162614.0
## 2764 Feb 2020 2020-02-01             2    2.745098                1 1162614.0
## 2765 Feb 2020 2020-02-01             2    2.715232                1 1162614.0
## 2766 Feb 2020 2020-02-01             2    2.878963                1 1162614.0
## 2767 Feb 2020 2020-02-01             2    2.600649                1 1162614.0
## 2768 Feb 2020 2020-02-01             2    2.688679                1 1165438.9
## 2769 Feb 2020 2020-02-01             2    2.719033                1 1165438.9
## 2770 Feb 2020 2020-02-01             2    2.554896                1 1165438.9
## 2771 Feb 2020 2020-02-01             2    2.562300                1 1165438.9
## 2772 Feb 2020 2020-02-01             2    2.588050                1 1162614.0
## 2773 Feb 2020 2020-02-01             2    2.624615                1 1162614.0
## 2774 Feb 2020 2020-02-01             2    2.626866                1 1162614.0
## 2775 Feb 2020 2020-02-01             2    2.665635                1 1162614.0
## 2776 Feb 2020 2020-02-01             2    2.692308                1 1162614.0
## 2777 Feb 2020 2020-02-01             2    2.467857                1 1165438.9
## 2778 Feb 2020 2020-02-01             2    2.726236                1 1165438.9
## 2779 Feb 2020 2020-02-01             2    2.682927                1 1165438.9
## 2780 Feb 2020 2020-02-01             2    1.722222                0 1165438.3
## 2781 Feb 2020 2020-02-01             2    1.794118                0 1165438.3
## 2782 Feb 2020 2020-02-01             2    2.068702                0 1165438.3
## 2783 Feb 2020 2020-02-01             2    1.698842                0 1165438.3
## 2784 Feb 2020 2020-02-01             2    2.102473                0 1165438.3
## 2785 Feb 2020 2020-02-01             2    1.698842                0 1165438.3
## 2786 Feb 2020 2020-02-01             2    1.649635                0 1165438.3
## 2787 Feb 2020 2020-02-01             2    1.487805                0 1165438.3
## 2788 Feb 2020 2020-02-01             2    1.486068                0 1165438.3
## 2789 Feb 2020 2020-02-01             2    1.690000                0 1165438.3
## 2790 Feb 2020 2020-02-01             2    1.660194                0 1165438.3
## 2791 Feb 2020 2020-02-01             2    1.687943                0 1165438.3
## 2792 Feb 2020 2020-02-01             2    1.784387                0 1165438.3
## 2793 Feb 2020 2020-02-01             2    1.794521                0 1165438.3
## 2794 Feb 2020 2020-02-01             2    1.663194                0 1165438.3
## 2795 Feb 2020 2020-02-01             2    1.884000                0 1165438.3
## 2796 Feb 2020 2020-02-01             2    1.632143                0 1165438.3
## 2797 Feb 2020 2020-02-01             2    1.582031                0 1165438.3
## 2798 Feb 2020 2020-02-01             2    1.695833                0 1165438.3
## 2799 Feb 2020 2020-02-01             2    1.659574                0 1165438.3
## 2800 Feb 2020 2020-02-01             2    1.906977                0 1165438.3
## 2801 Feb 2020 2020-02-01             2    1.718750                0 1165438.3
## 2802 Feb 2020 2020-02-01             2    1.658228                0 1165438.3
## 2803 Feb 2020 2020-02-01             2    2.607345                1 1165438.3
## 2804 Feb 2020 2020-02-01             2    1.726688                0 1165438.3
## 2805 Feb 2020 2020-02-01             2    1.724528                0 1165438.3
## 2806 Feb 2020 2020-02-01             2    1.764085                0 1165438.3
## 2807 Feb 2020 2020-02-01             2    1.673993                0 1165438.3
## 2808 Feb 2020 2020-02-01             2    2.558333                1 1165438.3
## 2809 Feb 2020 2020-02-01             2    1.650847                0 1165438.3
## 2810 Feb 2020 2020-02-01             2    1.856164                1 1165438.3
## 2811 Feb 2020 2020-02-01             2    2.534591                1 1165438.3
## 2812 Feb 2020 2020-02-01             2    2.743333                1 1058006.9
## 2813 Feb 2020 2020-02-01             2    2.633423                1 1058006.9
## 2814 Feb 2020 2020-02-01             2    2.786982                1 1058006.9
## 2815 Feb 2020 2020-02-01             2    2.802013                1 1058006.9
## 2816 Feb 2020 2020-02-01             2    2.625000                1 1058006.9
## 2817 Feb 2020 2020-02-01             2    3.009375                1 1058006.9
## 2818 Feb 2020 2020-02-01             2    2.886850                1 1058006.9
## 2819 Feb 2020 2020-02-01             2    2.630058                1 1058006.9
## 2820 Feb 2020 2020-02-01             2    2.568702                1 1058006.9
## 2821 Feb 2020 2020-02-01             2    2.708824                1 1058006.9
## 2822 Feb 2020 2020-02-01             2    2.950820                1 1058006.9
## 2823 Feb 2020 2020-02-01             2    2.876972                1 1058006.9
## 2824 Feb 2020 2020-02-01             2    2.883721                1 1058006.9
## 2825 Feb 2020 2020-02-01             2    2.775920                1 1058006.9
## 2826 Feb 2020 2020-02-01             2    2.713873                1 1058006.9
## 2827 Feb 2020 2020-02-01             2    2.540070                1 1058006.9
## 2828 Feb 2020 2020-02-01             2    2.508929                1 1058006.9
## 2829 Feb 2020 2020-02-01             2    2.840580                1 1058006.9
## 2830 Feb 2020 2020-02-01             2    2.900000                1 1058006.9
## 2831 Feb 2020 2020-02-01             2    2.746479                1 1058006.9
## 2832 Feb 2020 2020-02-01             2    2.654987                1 1058006.9
## 2833 Feb 2020 2020-02-01             2    2.659722                1 1058006.9
## 2834 Feb 2020 2020-02-01             2    2.721831                1 1058006.9
## 2835 Feb 2020 2020-02-01             2    2.827893                1 1058006.9
## 2836 Feb 2020 2020-02-01             2    2.557103                1 1058006.9
## 2837 Feb 2020 2020-02-01             2    2.672297                1 1058006.9
## 2838 Feb 2020 2020-02-01             2    2.642442                1 1058006.9
## 2839 Feb 2020 2020-02-01             2    2.642857                1 1058006.9
## 2840 Feb 2020 2020-02-01             2    2.520000                1 1058006.9
## 2841 Feb 2020 2020-02-01             2    2.589831                1 1058006.9
## 2842 Feb 2020 2020-02-01             2    2.786667                1 1058006.9
## 2843 Feb 2020 2020-02-01             2    2.506711                1 1058006.9
## 2844 Feb 2020 2020-02-01             2    2.773885                1 1058006.9
## 2845 Feb 2020 2020-02-01             2    2.706485                1 1058006.9
## 2846 Feb 2020 2020-02-01             2    2.708571                1 1058006.9
## 2847 Feb 2020 2020-02-01             2    2.677193                1 1058006.9
## 2848 Feb 2020 2020-02-01             2    2.657609                1 1058006.9
## 2849 Feb 2020 2020-02-01             2    2.801471                1 1058006.9
## 2850 Feb 2020 2020-02-01             2    2.859649                1 1058006.9
## 2851 Feb 2020 2020-02-01             2    2.410256                1 1058006.9
## 2852 Feb 2020 2020-02-01             2    2.707447                1 1058006.9
## 2853 Feb 2020 2020-02-01             2    2.777409                1 1058006.9
## 2854 Feb 2020 2020-02-01             2    2.612426                1 1058006.9
## 2855 Feb 2020 2020-02-01             2    2.694631                1 1033819.8
## 2856 Feb 2020 2020-02-01             2    2.608939                1 1033819.8
## 2857 Feb 2020 2020-02-01             2    2.831034                1 1033819.8
## 2858 Feb 2020 2020-02-01             2    2.696697                1 1033819.8
## 2859 Feb 2020 2020-02-01             2    2.631098                1 1033819.8
## 2860 Feb 2020 2020-02-01             2    2.648968                1 1033819.8
## 2861 Feb 2020 2020-02-01             2    2.782477                1 1033819.8
## 2862 Feb 2020 2020-02-01             2    2.615917                1 1033819.8
## 2863 Feb 2020 2020-02-01             2    2.854478                1 1033819.8
## 2864 Feb 2020 2020-02-01             2    2.730556                1 1033819.8
## 2865 Feb 2020 2020-02-01             2    2.934307                1 1033819.8
## 2866 Feb 2020 2020-02-01             2    2.635452                1 1033819.8
## 2867 Feb 2020 2020-02-01             2    2.649852                1 1033819.8
## 2868 Feb 2020 2020-02-01             2    2.648725                1 1033819.8
## 2869 Feb 2020 2020-02-01             2    2.735905                1 1033819.8
## 2870 Feb 2020 2020-02-01             2    2.649682                1 1033819.8
## 2871 Feb 2020 2020-02-01             2    2.628289                1 1033819.8
## 2872 Feb 2020 2020-02-01             2    2.496914                1 1033819.8
## 2873 Feb 2020 2020-02-01             2    2.571429                1 1033819.8
## 2874 Feb 2020 2020-02-01             2    2.595016                1 1033819.8
## 2875 Feb 2020 2020-02-01             2    2.792388                1 1033819.8
## 2876 Feb 2020 2020-02-01             2    2.537190                1 1033819.8
## 2877 Feb 2020 2020-02-01             2    2.786207                1 1033819.8
## 2878 Feb 2020 2020-02-01             2    2.677326                1 1033819.8
## 2879 Feb 2020 2020-02-01             2    2.835125                1 1033819.8
## 2880 Feb 2020 2020-02-01             2    2.586957                1 1033819.8
## 2881 Feb 2020 2020-02-01             2    2.750000                1 1033819.8
## 2882 Feb 2020 2020-02-01             2    2.660000                1 1033819.8
## 2883 Feb 2020 2020-02-01             2    2.797753                1 1033819.8
## 2884 Feb 2020 2020-02-01             2    2.849398                1 1033819.8
## 2885 Feb 2020 2020-02-01             2    2.783537                1 1033819.8
## 2886 Feb 2020 2020-02-01             2    2.665738                1 1033819.8
## 2887 Feb 2020 2020-02-01             2    2.670175                1 1033819.8
## 2888 Feb 2020 2020-02-01             2    1.726236                0 1033819.8
## 2889 Feb 2020 2020-02-01             2    2.715170                1 1033819.8
## 2890 Feb 2020 2020-02-01             2    2.631068                1 1033819.8
## 2891 Feb 2020 2020-02-01             2    2.832787                1 1033819.8
## 2892 Feb 2020 2020-02-01             2    2.577061                1 1033819.8
## 2893 Feb 2020 2020-02-01             2    2.717262                1 1033819.8
## 2894 Feb 2020 2020-02-01             2    2.750799                1 1033819.8
## 2895 Feb 2020 2020-02-01             2    2.564972                1 1033819.8
## 2896 Feb 2020 2020-02-01             2    2.791946                1 1033819.8
## 2897 Feb 2020 2020-02-01             2    2.571429                1 1033819.8
## 2898 Feb 2020 2020-02-01             2    2.861111                1 1033819.8
## 2899 Feb 2020 2020-02-01             2    2.636111                1 1033819.8
## 2900 Feb 2020 2020-02-01             2    3.033582                1 1033819.8
## 2901 Feb 2020 2020-02-01             2    2.388060                1 1033819.8
## 2902 Feb 2020 2020-02-01             2    2.575931                1 1033819.8
## 2903 Feb 2020 2020-02-01             2    2.703947                1 1033819.8
## 2904 Feb 2020 2020-02-01             2    2.751748                1 1033819.8
## 2905 Feb 2020 2020-02-01             2    2.513605                1 1000227.9
## 2906 Feb 2020 2020-02-01             2    2.521084                1 1000227.9
## 2907 Feb 2020 2020-02-01             2    2.839858                1 1000227.9
## 2908 Feb 2020 2020-02-01             2    2.848993                1 1000227.9
## 2909 Feb 2020 2020-02-01             2    2.615385                1 1000227.9
## 2910 Feb 2020 2020-02-01             2    2.551370                1 1000227.9
## 2911 Feb 2020 2020-02-01             2    2.401639                1 1000227.9
## 2912 Feb 2020 2020-02-01             2    2.707071                1 1000227.9
## 2913 Feb 2020 2020-02-01             2    2.588406                1 1000227.9
## 2914 Feb 2020 2020-02-01             2    2.667702                1 1000227.9
## 2915 Feb 2020 2020-02-01             2    2.551471                1 1000227.9
## 2916 Feb 2020 2020-02-01             2    2.770968                1 1000227.9
## 2917 Feb 2020 2020-02-01             2    2.671429                1 1000227.9
## 2918 Feb 2020 2020-02-01             2    2.819728                1 1000227.9
## 2919 Feb 2020 2020-02-01             2    1.857664                0 1000227.9
## 2920 Feb 2020 2020-02-01             2    2.656667                1 1000227.9
## 2921 Feb 2020 2020-02-01             2    2.518405                1 1000227.9
## 2922 Feb 2020 2020-02-01             2    2.682432                1 1000227.9
## 2923 Feb 2020 2020-02-01             2    2.683386                1 1000227.9
## 2924 Feb 2020 2020-02-01             2    2.664653                1 1000227.9
## 2925 Feb 2020 2020-02-01             2    2.820069                1 1000227.9
## 2926 Feb 2020 2020-02-01             2    2.795987                1 1000227.9
## 2927 Feb 2020 2020-02-01             2    2.745665                1 1000227.9
## 2928 Feb 2020 2020-02-01             2    2.642651                1 1000227.9
## 2929 Feb 2020 2020-02-01             2    2.564516                1 1000227.9
## 2930 Feb 2020 2020-02-01             2    2.424332                1 1000227.9
## 2931 Feb 2020 2020-02-01             2    1.732639                0 1000227.9
## 2932 Feb 2020 2020-02-01             2    2.659016                1 1000227.9
## 2933 Feb 2020 2020-02-01             2    2.466216                1 1000227.9
## 2934 Feb 2020 2020-02-01             2    2.648276                1 1175161.2
## 2935 Feb 2020 2020-02-01             2    2.823129                1 1175161.2
## 2936 Feb 2020 2020-02-01             2    2.579125                1 1175161.2
## 2937 Feb 2020 2020-02-01             2    2.592593                1 1175161.2
## 2938 Feb 2020 2020-02-01             2    2.654971                1 1175161.2
## 2939 Feb 2020 2020-02-01             2    2.627907                1 1171365.6
## 2940 Feb 2020 2020-02-01             2    2.456338                1 1171365.6
## 2941 Feb 2020 2020-02-01             2    2.610345                1 1171365.6
## 2942 Feb 2020 2020-02-01             2    2.543624                1 1171365.6
## 2943 Feb 2020 2020-02-01             2    2.509202                1 1171365.6
## 2944 Feb 2020 2020-02-01             2    2.547692                1 1174577.1
## 2945 Feb 2020 2020-02-01             2    2.635593                1 1174577.1
## 2946 Feb 2020 2020-02-01             2    2.482249                1 1174577.1
## 2947 Feb 2020 2020-02-01             2    2.640000                1 1174577.1
## 2948 Feb 2020 2020-02-01             2    2.525084                1 1174577.1
## 2949 Feb 2020 2020-02-01             2    2.645161                1 1169258.9
## 2950 Feb 2020 2020-02-01             2    2.560261                1 1169258.9
## 2951 Feb 2020 2020-02-01             2    2.645390                1 1169258.9
## 2952 Feb 2020 2020-02-01             2    2.603217                1 1176431.5
## 2953 Feb 2020 2020-02-01             2    2.578313                1 1176431.5
## 2954 Feb 2020 2020-02-01             2    2.654605                1 1176431.5
## 2955 Feb 2020 2020-02-01             2    2.462644                1 1172960.7
## 2956 Feb 2020 2020-02-01             2    2.531646                1 1172960.7
## 2957 Feb 2020 2020-02-01             2    2.612795                1 1172960.7
## 2958 Feb 2020 2020-02-01             2    2.606498                1 1172960.7
## 2959 Feb 2020 2020-02-01             2    2.652308                1 1172960.7
## 2960 Feb 2020 2020-02-01             2    2.352349                1 1169689.2
## 2961 Feb 2020 2020-02-01             2    2.484950                1 1169689.2
## 2962 Feb 2020 2020-02-01             2    2.666667                1 1169689.2
## 2963 Feb 2020 2020-02-01             2    2.618012                1 1169689.2
## 2964 Feb 2020 2020-02-01             2    2.658730                1 1174577.1
## 2965 Feb 2020 2020-02-01             2    2.732877                1 1174577.1
## 2966 Feb 2020 2020-02-01             2    2.552561                1 1174577.1
## 2967 Feb 2020 2020-02-01             2    2.775510                1 1175161.2
## 2968 Feb 2020 2020-02-01             2    2.744505                1 1175161.2
## 2969 Feb 2020 2020-02-01             2    2.516216                1 1175161.2
## 2970 Feb 2020 2020-02-01             2    2.721713                1 1175161.2
## 2971 Feb 2020 2020-02-01             2    2.584337                1 1169258.9
## 2972 Feb 2020 2020-02-01             2    2.596825                1 1169258.9
## 2973 Feb 2020 2020-02-01             2    2.580442                1 1169258.9
## 2974 Feb 2020 2020-02-01             2    2.664384                1 1169258.9
## 2975 Feb 2020 2020-02-01             2    2.609164                1 1169258.9
## 2976 Feb 2020 2020-02-01             2    2.566225                1 1172960.7
## 2977 Feb 2020 2020-02-01             2    2.528986                1 1172960.7
## 2978 Feb 2020 2020-02-01             2    2.607774                1 1172960.7
## 2979 Feb 2020 2020-02-01             2    2.786207                1 1172960.7
## 2980 Feb 2020 2020-02-01             2    2.797468                1 1172960.7
## 2981 Feb 2020 2020-02-01             2    2.666667                1 1176431.5
## 2982 Feb 2020 2020-02-01             2    2.518072                1 1176431.5
## 2983 Feb 2020 2020-02-01             2    2.633245                1 1176431.5
## 2984 Feb 2020 2020-02-01             2    2.565445                1 1175161.2
## 2985 Feb 2020 2020-02-01             2    2.549020                1 1175161.2
## 2986 Feb 2020 2020-02-01             2    2.896104                1 1175161.2
## 2987 Feb 2020 2020-02-01             2    2.604096                1 1175161.2
## 2988 Feb 2020 2020-02-01             2    2.552553                1 1171365.6
## 2989 Feb 2020 2020-02-01             2    2.644654                1 1171365.6
## 2990 Feb 2020 2020-02-01             2    2.692529                1 1171365.6
## 2991 Feb 2020 2020-02-01             2    2.710884                1 1171365.6
## 2992 Feb 2020 2020-02-01             2    2.709343                1 1174577.1
## 2993 Feb 2020 2020-02-01             2    2.717532                1 1174577.1
## 2994 Feb 2020 2020-02-01             2    2.625000                1 1174577.1
## 2995 Feb 2020 2020-02-01             2    2.612299                1 1174577.1
## 2996 Feb 2020 2020-02-01             2    2.781350                1 1174577.1
## 2997 Feb 2020 2020-02-01             2    3.068966                1 1169258.9
## 2998 Feb 2020 2020-02-01             2    2.493188                1 1169258.9
## 2999 Feb 2020 2020-02-01             2    2.375451                1 1169258.9
## 3000 Feb 2020 2020-02-01             2    2.695035                1 1169258.9
## 3001 Feb 2020 2020-02-01             2    2.615625                1 1169258.9
## 3002 Feb 2020 2020-02-01             2    2.710526                1 1172960.7
## 3003 Feb 2020 2020-02-01             2    2.488571                1 1172960.7
## 3004 Feb 2020 2020-02-01             2    2.561873                1 1172960.7
## 3005 Feb 2020 2020-02-01             2    2.542955                1 1169689.2
## 3006 Feb 2020 2020-02-01             2    2.690852                1 1169689.2
## 3007 Feb 2020 2020-02-01             2    2.655949                1 1169689.2
## 3008 Feb 2020 2020-02-01             2    2.666667                1 1169689.2
## 3009 Feb 2020 2020-02-01             2    2.603960                1 1169689.2
## 3010 Feb 2020 2020-02-01             2    2.514745                1 1175161.2
## 3011 Feb 2020 2020-02-01             2    2.517341                1 1175161.2
## 3012 Feb 2020 2020-02-01             2    2.692053                1 1175161.2
## 3013 Feb 2020 2020-02-01             2    2.643750                1 1175161.2
## 3014 Feb 2020 2020-02-01             2    2.541916                1 1175161.2
## 3015 Feb 2020 2020-02-01             2    2.542500                1 1175161.2
## 3016 Feb 2020 2020-02-01             2    2.554098                1 1175161.2
## 3017 Feb 2020 2020-02-01             2    2.600567                1 1175161.2
## 3018 Feb 2020 2020-02-01             2    2.621538                1 1175161.2
## 3019 Feb 2020 2020-02-01             2    2.671429                1 1175161.2
## 3020 Feb 2020 2020-02-01             2    2.774306                1 1171365.6
## 3021 Feb 2020 2020-02-01             2    2.630662                1 1171365.6
## 3022 Feb 2020 2020-02-01             2    2.491228                1 1171365.6
## 3023 Feb 2020 2020-02-01             2    2.681416                1 1171365.6
## 3024 Feb 2020 2020-02-01             2    2.551495                1 1171365.6
## 3025 Feb 2020 2020-02-01             2    2.581662                1 1174577.1
## 3026 Feb 2020 2020-02-01             2    2.227273                1 1174577.1
## 3027 Feb 2020 2020-02-01             2    2.486239                1 1169258.9
## 3028 Feb 2020 2020-02-01             2    2.742574                1 1169258.9
## 3029 Feb 2020 2020-02-01             2    1.986755                0 1169258.9
## 3030 Feb 2020 2020-02-01             2    2.664557                1 1172960.7
## 3031 Feb 2020 2020-02-01             2    2.839041                1 1172960.7
## 3032 Feb 2020 2020-02-01             2    2.627517                1 1172960.7
## 3033 Feb 2020 2020-02-01             2    2.617940                1 1169689.2
## 3034 Feb 2020 2020-02-01             2    2.585455                1 1169689.2
## 3035 Feb 2020 2020-02-01             2    2.706422                1 1169689.2
## 3036 Feb 2020 2020-02-01             2    2.474265                1 1169689.2
## 3037 Feb 2020 2020-02-01             2    2.472789                1 1169689.2
## 3038 Feb 2020 2020-02-01             2    2.579710                1 1169689.2
## 3039 Feb 2020 2020-02-01             2    2.590580                1 1169689.2
## 3040 Feb 2020 2020-02-01             2    2.433735                1 1169689.2
## 3041 Feb 2020 2020-02-01             2    2.715909                1 1169689.2
## 3042 Feb 2020 2020-02-01             2    2.637195                1 1169689.2
## 3043 Feb 2020 2020-02-01             2    2.560403                1 1169689.2
## 3044 Feb 2020 2020-02-01             2    2.635379                1 1169689.2
## 3045 Feb 2020 2020-02-01             2    2.530675                1 1169689.2
## 3046 Feb 2020 2020-02-01             2    2.761290                1 1169689.2
## 3047 Feb 2020 2020-02-01             2    2.783333                1 1169689.2
## 3048 Feb 2020 2020-02-01             2    2.670213                1 1169689.2
## 3049 Feb 2020 2020-02-01             2    2.756014                1 1169689.2
## 3050 Feb 2020 2020-02-01             2    2.613636                1 1169689.2
## 3051 Feb 2020 2020-02-01             2    2.401961                1 1169689.2
## 3052 Feb 2020 2020-02-01             2    2.507553                1 1169689.2
## 3053 Feb 2020 2020-02-01             2    2.643123                1 1169689.2
## 3054 Feb 2020 2020-02-01             2    2.734426                1 1171365.6
## 3055 Feb 2020 2020-02-01             2    2.601375                1 1171365.6
## 3056 Feb 2020 2020-02-01             2    2.626230                1 1171365.6
## 3057 Feb 2020 2020-02-01             2    2.633094                1 1171365.6
## 3058 Feb 2020 2020-02-01             2    2.435644                1 1171365.6
## 3059 Feb 2020 2020-02-01             2    2.559871                1 1171365.6
## 3060 Feb 2020 2020-02-01             2    2.695652                1 1175161.2
## 3061 Feb 2020 2020-02-01             2    2.658784                1 1175161.2
## 3062 Feb 2020 2020-02-01             2    2.644951                1 1175161.2
## 3063 Feb 2020 2020-02-01             2    2.652174                1 1175161.2
## 3064 Feb 2020 2020-02-01             2    2.603960                1 1175161.2
## 3065 Feb 2020 2020-02-01             2    2.665672                1 1175161.2
## 3066 Feb 2020 2020-02-01             2    2.706371                1 1175161.2
## 3067 Feb 2020 2020-02-01             2    2.776978                1 1175161.2
## 3068 Feb 2020 2020-02-01             2    2.661677                1 1174577.1
## 3069 Feb 2020 2020-02-01             2    2.745704                1 1174577.1
## 3070 Feb 2020 2020-02-01             2    2.518519                1 1174577.1
## 3071 Feb 2020 2020-02-01             2    2.682759                1 1174577.1
## 3072 Feb 2020 2020-02-01             2    2.610169                1 1175161.2
## 3073 Feb 2020 2020-02-01             2    2.773973                1 1175161.2
## 3074 Feb 2020 2020-02-01             2    2.426513                1 1175161.2
## 3075 Feb 2020 2020-02-01             2    2.500000                1 1175161.2
## 3076 Feb 2020 2020-02-01             2    2.077739                0 1175161.2
## 3077 Feb 2020 2020-02-01             2    2.695652                1 1175161.2
## 3078 Feb 2020 2020-02-01             2    2.096154                0 1169689.2
## 3079 Feb 2020 2020-02-01             2    2.708609                1 1169689.2
## 3080 Feb 2020 2020-02-01             2    1.898496                0 1169689.2
## 3081 Feb 2020 2020-02-01             2    1.655172                0 1169689.2
## 3082 Feb 2020 2020-02-01             2    1.625387                0 1169689.2
## 3083 Feb 2020 2020-02-01             2    2.021818                0 1169689.2
## 3084 Feb 2020 2020-02-01             2    2.506849                1 1169689.2
## 3085 Feb 2020 2020-02-01             2    1.485816                0 1169689.2
## 3086 Feb 2020 2020-02-01             2    1.591837                0 1169689.2
## 3087 Feb 2020 2020-02-01             2    1.753906                0 1169689.2
## 3088 Feb 2020 2020-02-01             2    1.808140                0 1169689.2
## 3089 Feb 2020 2020-02-01             2    1.587629                0 1169689.2
## 3090 Feb 2020 2020-02-01             2    1.638393                0 1169689.2
## 3091 Feb 2020 2020-02-01             2    2.562937                1 1169689.2
## 3092 Feb 2020 2020-02-01             2    2.491620                1 1172960.7
## 3093 Feb 2020 2020-02-01             2    2.516667                1 1172960.7
## 3094 Feb 2020 2020-02-01             2    2.556667                1 1172960.7
## 3095 Feb 2020 2020-02-01             2    2.821561                1 1172960.7
## 3096 Feb 2020 2020-02-01             2    1.663121                0 1176431.9
## 3097 Feb 2020 2020-02-01             2    1.618729                0 1176431.9
## 3098 Feb 2020 2020-02-01             2    1.834677                0 1176431.9
## 3099 Feb 2020 2020-02-01             2    1.686792                0 1176431.9
## 3100 Feb 2020 2020-02-01             2    2.550409                1 1176431.9
## 3101 Feb 2020 2020-02-01             2    2.296407                1 1176431.9
## 3102 Feb 2020 2020-02-01             2    2.515723                1 1176431.9
## 3103 Feb 2020 2020-02-01             2    2.609756                1 1176431.9
## 3104 Feb 2020 2020-02-01             2    1.696370                0 1171365.6
## 3105 Feb 2020 2020-02-01             2    1.709677                0 1171365.6
## 3106 Feb 2020 2020-02-01             2    1.635739                0 1171365.6
## 3107 Feb 2020 2020-02-01             2    1.527273                0 1171365.6
## 3108 Feb 2020 2020-02-01             2    1.846473                0 1171365.6
## 3109 Feb 2020 2020-02-01             2    1.905263                0 1171365.6
## 3110 Feb 2020 2020-02-01             2    1.586331                0 1171365.6
## 3111 Feb 2020 2020-02-01             2    1.738971                0 1171365.6
## 3112 Feb 2020 2020-02-01             2    1.695652                0 1171365.6
## 3113 Feb 2020 2020-02-01             2    1.520492                0 1171365.6
## 3114 Feb 2020 2020-02-01             2    1.507812                0 1171365.6
## 3115 Feb 2020 2020-02-01             2    1.562264                0 1171365.6
## 3116 Feb 2020 2020-02-01             2    1.751037                0 1171365.6
## 3117 Feb 2020 2020-02-01             2    1.531381                0 1171365.6
## 3118 Feb 2020 2020-02-01             2    1.569767                0 1169258.1
## 3119 Feb 2020 2020-02-01             2    1.673981                0 1169258.1
## 3120 Feb 2020 2020-02-01             2    2.098765                0 1169258.1
## 3121 Feb 2020 2020-02-01             2    1.653137                0 1169258.1
## 3122 Feb 2020 2020-02-01             2    1.596491                0 1169258.1
## 3123 Feb 2020 2020-02-01             2    1.704050                0 1169258.1
## 3124 Feb 2020 2020-02-01             2    1.521429                0 1169258.1
## 3125 Feb 2020 2020-02-01             2    1.813187                0 1169258.1
## 3126 Feb 2020 2020-02-01             2    1.751938                0 1169258.1
## 3127 Feb 2020 2020-02-01             2    1.666667                0 1169258.1
## 3128 Feb 2020 2020-02-01             2    1.745875                0 1169258.1
## 3129 Feb 2020 2020-02-01             2    1.576052                0 1169258.1
## 3130 Feb 2020 2020-02-01             2    1.626866                0 1169258.1
## 3131 Feb 2020 2020-02-01             2    2.589189                1 1169258.1
## 3132 Feb 2020 2020-02-01             2    1.675573                0 1169258.1
## 3133 Feb 2020 2020-02-01             2    1.669492                0 1169258.1
## 3134 Feb 2020 2020-02-01             2    1.549801                0 1169258.1
## 3135 Feb 2020 2020-02-01             2    1.607914                0 1169258.1
## 3136 Feb 2020 2020-02-01             2    2.510638                1 1169258.1
## 3137 Feb 2020 2020-02-01             2    1.836177                0 1174577.1
## 3138 Feb 2020 2020-02-01             2    1.667752                0 1174577.1
## 3139 Feb 2020 2020-02-01             2    1.761566                0 1174577.1
## 3140 Feb 2020 2020-02-01             2    1.553459                0 1174577.1
## 3141 Feb 2020 2020-02-01             2    1.714286                0 1174577.1
## 3142 Feb 2020 2020-02-01             2    1.584775                0 1174577.1
## 3143 Feb 2020 2020-02-01             2    2.649231                1 1174577.1
## 3144 Feb 2020 2020-02-01             2    1.712644                0 1174577.1
## 3145 Feb 2020 2020-02-01             2    1.597270                0 1174577.1
## 3146 Feb 2020 2020-02-01             2    2.612500                1 1174577.1
## 3147 Feb 2020 2020-02-01             2    1.588435                0 1174577.1
## 3148 Feb 2020 2020-02-01             2    2.724138                1 1174577.1
## 3149 Feb 2020 2020-02-01             2    1.875000                0 1174577.1
## 3150 Feb 2020 2020-02-01             2    2.692308                1 1174577.1
## 3151 Feb 2020 2020-02-01             2    2.620779                1 1174577.1
## 3152 Feb 2020 2020-02-01             2    2.445230                1 1174577.1
## 3153 Feb 2020 2020-02-01             2    2.471751                1 1174577.1
## 3154 Feb 2020 2020-02-01             2    2.576803                1 1174577.1
## 3155 Feb 2020 2020-02-01             2    2.638365                1 1151501.0
## 3156 Feb 2020 2020-02-01             2    2.525641                1 1151501.0
## 3157 Feb 2020 2020-02-01             2    2.523810                1 1151501.0
## 3158 Feb 2020 2020-02-01             2    2.649832                1 1151501.0
## 3159 Feb 2020 2020-02-01             2    2.509036                1 1151501.0
## 3160 Feb 2020 2020-02-01             2    2.641447                1 1150191.4
## 3161 Feb 2020 2020-02-01             2    2.554945                1 1150191.4
## 3162 Feb 2020 2020-02-01             2    2.649718                1 1150191.4
## 3163 Feb 2020 2020-02-01             2    2.672566                1 1150191.4
## 3164 Feb 2020 2020-02-01             2    2.609756                1 1150191.4
## 3165 Feb 2020 2020-02-01             2    2.508152                1 1151501.0
## 3166 Feb 2020 2020-02-01             2    2.704180                1 1151501.0
## 3167 Feb 2020 2020-02-01             2    2.549575                1 1151501.0
## 3168 Feb 2020 2020-02-01             2    2.562500                1 1151501.0
## 3169 Feb 2020 2020-02-01             2    2.616822                1 1151501.0
## 3170 Feb 2020 2020-02-01             2    2.579114                1 1150191.4
## 3171 Feb 2020 2020-02-01             2    2.610224                1 1150191.4
## 3172 Feb 2020 2020-02-01             2    2.607362                1 1150191.4
## 3173 Feb 2020 2020-02-01             2    2.587744                1 1150191.4
## 3174 Feb 2020 2020-02-01             2    2.666667                1 1150191.4
## 3175 Feb 2020 2020-02-01             2    2.665574                1 1151501.0
## 3176 Feb 2020 2020-02-01             2    2.667732                1 1151501.0
## 3177 Feb 2020 2020-02-01             2    2.550898                1 1151501.0
## 3178 Feb 2020 2020-02-01             2    2.833333                1 1151501.0
## 3179 Feb 2020 2020-02-01             2    2.861486                1 1151501.0
## 3180 Feb 2020 2020-02-01             2    2.627660                1 1150191.4
## 3181 Feb 2020 2020-02-01             2    2.797203                1 1150191.4
## 3182 Feb 2020 2020-02-01             2    2.648649                1 1150191.4
## 3183 Feb 2020 2020-02-01             2    2.713043                1 1150191.4
## 3184 Feb 2020 2020-02-01             2    2.777778                1 1151501.0
## 3185 Feb 2020 2020-02-01             2    2.662500                1 1151501.0
## 3186 Feb 2020 2020-02-01             2    2.752542                1 1151501.0
## 3187 Feb 2020 2020-02-01             2    2.712025                1 1150191.4
## 3188 Feb 2020 2020-02-01             2    2.597222                1 1150191.4
## 3189 Feb 2020 2020-02-01             2    2.679412                1 1150191.4
## 3190 Feb 2020 2020-02-01             2    2.651877                1 1150191.4
## 3191 Feb 2020 2020-02-01             2    2.721088                1 1150191.4
## 3192 Feb 2020 2020-02-01             2    2.725632                1 1150191.4
## 3193 Feb 2020 2020-02-01             2    2.652568                1 1150191.4
## 3194 Feb 2020 2020-02-01             2    2.676976                1 1150191.4
## 3195 Feb 2020 2020-02-01             2    2.733333                1 1150191.4
## 3196 Feb 2020 2020-02-01             2    2.591900                1 1150191.4
## 3197 Feb 2020 2020-02-01             2    2.672026                1 1150191.4
## 3198 Feb 2020 2020-02-01             2    2.791086                1 1150191.4
## 3199 Feb 2020 2020-02-01             2    2.569697                1 1150191.4
## 3200 Feb 2020 2020-02-01             2    2.943925                1 1150191.4
## 3201 Feb 2020 2020-02-01             2    2.824627                1 1150191.4
## 3202 Feb 2020 2020-02-01             2    2.793103                1 1150191.4
## 3203 Feb 2020 2020-02-01             2    2.705696                1 1150191.4
## 3204 Feb 2020 2020-02-01             2    2.716981                1 1150191.4
## 3205 Feb 2020 2020-02-01             2    2.474916                1 1150191.4
## 3206 Feb 2020 2020-02-01             2    1.740310                0 1150191.4
## 3207 Feb 2020 2020-02-01             2    1.629482                0 1150191.4
## 3208 Feb 2020 2020-02-01             2    1.691781                0 1150191.4
## 3209 Feb 2020 2020-02-01             2    1.650190                0 1150191.4
## 3210 Feb 2020 2020-02-01             2    1.479876                0 1150191.4
## 3211 Feb 2020 2020-02-01             2    2.711712                1 1150191.4
## 3212 Feb 2020 2020-02-01             2    2.375000                1 1150191.4
## 3213 Feb 2020 2020-02-01             2    1.676692                0 1150191.4
## 3214 Feb 2020 2020-02-01             2    1.571930                0 1150191.4
## 3215 Feb 2020 2020-02-01             2    1.654709                0 1150191.4
## 3216 Feb 2020 2020-02-01             2    2.843636                1 1150191.4
## 3217 Feb 2020 2020-02-01             2    1.692810                0 1150191.4
## 3218 Feb 2020 2020-02-01             2    1.540193                0 1150191.4
## 3219 Feb 2020 2020-02-01             2    1.475758                0 1150191.4
## 3220 Feb 2020 2020-02-01             2    1.671642                0 1150191.4
## 3221 Feb 2020 2020-02-01             2    1.596000                0 1150191.4
## 3222 Feb 2020 2020-02-01             2    1.801724                0 1150191.4
## 3223 Feb 2020 2020-02-01             2    2.613990                1 1150191.4
## 3224 Feb 2020 2020-02-01             2    2.523810                1 1151501.0
## 3225 Feb 2020 2020-02-01             2    2.523196                1 1151501.0
## 3226 Oct 2019 2019-10-01            10    2.642623                1 1150191.4
## 3227 Oct 2019 2019-10-01            10    2.531447                1 1150191.4
## 3228 Oct 2019 2019-10-01            10    2.461126                1 1150191.4
## 3229 Oct 2019 2019-10-01            10    2.546547                1 1150191.4
## 3230 Oct 2019 2019-10-01            10    2.609231                1 1150191.4
## 3231 Oct 2019 2019-10-01            10    2.592262                1 1150191.4
## 3232 Oct 2019 2019-10-01            10    2.581281                1 1150191.4
## 3233 Oct 2019 2019-10-01            10    2.664360                1 1150191.4
## 3234 Oct 2019 2019-10-01            10    1.624242                0 1150191.4
## 3235 Oct 2019 2019-10-01            10    2.652778                1 1150191.4
## 3236 Oct 2019 2019-10-01            10    2.663333                1 1150191.4
## 3237 Oct 2019 2019-10-01            10    2.631399                1 1150191.4
## 3238 Oct 2019 2019-10-01            10    2.731959                1 1150191.4
## 3239 Oct 2019 2019-10-01            10    2.677316                1 1150191.4
## 3240 Oct 2019 2019-10-01            10    1.859107                0 1150191.4
## 3241 Oct 2019 2019-10-01            10    1.715789                0 1150191.4
## 3242 Oct 2019 2019-10-01            10    2.557003                1 1150191.4
## 3243 Oct 2019 2019-10-01            10    2.493188                1 1150191.4
## 3244 Oct 2019 2019-10-01            10    1.751678                0 1150191.4
## 3245 Oct 2019 2019-10-01            10    2.560773                1 1150191.4
## 3246 Oct 2019 2019-10-01            10    2.893103                1 1150191.4
## 3247 Oct 2019 2019-10-01            10    2.733788                1 1150191.4
## 3248 Oct 2019 2019-10-01            10    2.682119                1 1150191.4
## 3249 Oct 2019 2019-10-01            10    2.729345                1 1150191.4
## 3250 Oct 2019 2019-10-01            10    2.713415                1 1150191.4
## 3251 Oct 2019 2019-10-01            10    2.658462                1 1155600.4
## 3252 Oct 2019 2019-10-01            10    2.616129                1 1155600.4
## 3253 Oct 2019 2019-10-01            10    2.612466                1 1155600.4
## 3254 Oct 2019 2019-10-01            10    2.815436                1 1155600.4
## 3255 Oct 2019 2019-10-01            10    2.665746                1 1155600.4
## 3256 Oct 2019 2019-10-01            10    2.681690                1 1155600.4
## 3257 Oct 2019 2019-10-01            10    2.833333                1 1155600.4
## 3258 Oct 2019 2019-10-01            10    2.603261                1 1155600.4
## 3259 Oct 2019 2019-10-01            10    2.567123                1 1155600.4
## 3260 Oct 2019 2019-10-01            10    1.733788                0 1155600.4
## 3261 Oct 2019 2019-10-01            10    2.577181                1 1155600.4
## 3262 Oct 2019 2019-10-01            10    2.767956                1 1155600.4
## 3263 Oct 2019 2019-10-01            10    2.672727                1 1174589.1
## 3264 Oct 2019 2019-10-01            10    2.654255                1 1174589.1
## 3265 Oct 2019 2019-10-01            10    2.675439                1 1174589.1
## 3266 Oct 2019 2019-10-01            10    2.679790                1 1174589.1
## 3267 Oct 2019 2019-10-01            10    2.737952                1 1174589.1
## 3268 Oct 2019 2019-10-01            10    2.796657                1 1174589.1
## 3269 Oct 2019 2019-10-01            10    2.697885                1 1174589.1
## 3270 Oct 2019 2019-10-01            10    2.608696                1 1174589.1
## 3271 Oct 2019 2019-10-01            10    2.673854                1 1174589.1
## 3272 Oct 2019 2019-10-01            10    2.614493                1 1174589.1
## 3273 Oct 2019 2019-10-01            10    2.735294                1 1174589.1
## 3274 Oct 2019 2019-10-01            10    2.552707                1 1174589.1
## 3275 Oct 2019 2019-10-01            10    1.904255                0 1174589.1
## 3276 Oct 2019 2019-10-01            10    2.734899                1 1174589.1
## 3277 Oct 2019 2019-10-01            10    2.445652                1 1176452.7
## 3278 Oct 2019 2019-10-01            10    2.668966                1 1176452.7
## 3279 Oct 2019 2019-10-01            10    2.547945                1 1176452.7
## 3280 Oct 2019 2019-10-01            10    2.625455                1 1176452.7
## 3281 Oct 2019 2019-10-01            10    2.609756                1 1176452.7
## 3282 Oct 2019 2019-10-01            10    2.683673                1 1176452.7
## 3283 Oct 2019 2019-10-01            10    2.516304                1 1176452.7
## 3284 Oct 2019 2019-10-01            10    2.658307                1 1176452.7
## 3285 Oct 2019 2019-10-01            10    2.597633                1 1176452.7
## 3286 Oct 2019 2019-10-01            10    2.654952                1 1176452.7
## 3287 Oct 2019 2019-10-01            10    2.557377                1 1176452.7
## 3288 Oct 2019 2019-10-01            10    2.677143                1 1176452.7
## 3289 Oct 2019 2019-10-01            10    2.806950                1 1058003.6
## 3290 Oct 2019 2019-10-01            10    2.626289                1 1058003.6
## 3291 Oct 2019 2019-10-01            10    2.617241                1 1058003.6
## 3292 Oct 2019 2019-10-01            10    2.868339                1 1058003.6
## 3293 Oct 2019 2019-10-01            10    2.845070                1 1058003.6
## 3294 Oct 2019 2019-10-01            10    2.698507                1 1058003.6
## 3295 Oct 2019 2019-10-01            10    2.680912                1 1058003.6
## 3296 Oct 2019 2019-10-01            10    1.907631                0 1058003.6
## 3297 Oct 2019 2019-10-01            10    2.513678                1 1058003.6
## 3298 Oct 2019 2019-10-01            10    2.566085                1 1058003.6
## 3299 Oct 2019 2019-10-01            10    2.821086                1 1058003.6
## 3300 Oct 2019 2019-10-01            10    2.713864                1 1058003.6
## 3301 Oct 2019 2019-10-01            10    2.765568                1 1058003.6
## 3302 Oct 2019 2019-10-01            10    2.627451                1 1058003.6
## 3303 Oct 2019 2019-10-01            10    2.691824                1 1058003.6
## 3304 Oct 2019 2019-10-01            10    2.754601                1 1058003.6
## 3305 Oct 2019 2019-10-01            10    2.758427                1 1058003.6
## 3306 Oct 2019 2019-10-01            10    2.848185                1 1058003.6
## 3307 Oct 2019 2019-10-01            10    2.587940                1 1058003.6
## 3308 Oct 2019 2019-10-01            10    2.751678                1 1058003.6
## 3309 Oct 2019 2019-10-01            10    2.700000                1 1058003.6
## 3310 Oct 2019 2019-10-01            10    2.622356                1 1172960.7
## 3311 Oct 2019 2019-10-01            10    2.569322                1 1172960.7
## 3312 Oct 2019 2019-10-01            10    2.693603                1 1172960.7
## 3313 Oct 2019 2019-10-01            10    2.575563                1 1172960.7
## 3314 Dec 2016 2016-12-01            12    2.663185                1 1161803.2
## 3315 Dec 2016 2016-12-01            12    1.627907                0 1161803.2
## 3316 Dec 2016 2016-12-01            12    1.912536                0 1161803.2
## 3317 Dec 2016 2016-12-01            12    1.714286                0 1161803.2
## 3318 Oct 2019 2019-10-01            10    2.669540                1 1165438.9
## 3319 Oct 2019 2019-10-01            10    2.738739                1 1165438.9
## 3320 Oct 2019 2019-10-01            10    2.601770                1 1165438.9
## 3321 Oct 2019 2019-10-01            10    2.811688                1 1165438.9
## 3322 Oct 2019 2019-10-01            10    2.621053                1 1165438.9
## 3323 Oct 2019 2019-10-01            10    2.616519                1 1165438.9
## 3324 Oct 2019 2019-10-01            10    2.645646                1 1165438.9
## 3325 Oct 2019 2019-10-01            10    2.735016                1 1175161.2
## 3326 Oct 2019 2019-10-01            10    2.580475                1 1175161.2
## 3327 Oct 2019 2019-10-01            10    2.567976                1 1175161.2
## 3328 Oct 2019 2019-10-01            10    1.647940                0 1175161.2
## 3329 Oct 2019 2019-10-01            10    2.681818                1 1175161.2
## 3330 Oct 2019 2019-10-01            10    1.730435                0 1175161.2
## 3331 Oct 2019 2019-10-01            10    2.623794                1 1165494.9
## 3332 Oct 2019 2019-10-01            10    2.845506                1 1165494.9
## 3333 Oct 2019 2019-10-01            10    2.783088                1 1165494.9
## 3334 Oct 2019 2019-10-01            10    2.438356                1 1169547.6
## 3335 Oct 2019 2019-10-01            10    2.554913                1 1169547.6
## 3336 Oct 2019 2019-10-01            10    2.627760                1 1169547.6
## 3337 Oct 2019 2019-10-01            10    2.663073                1 1169547.6
## 3338 Oct 2019 2019-10-01            10    2.695341                1 1169547.6
## 3339 Oct 2019 2019-10-01            10    2.570571                1 1169547.6
## 3340 May 2019 2019-05-01             5    2.498592                1 1033803.4
## 3341 May 2019 2019-05-01             5    1.587459                0 1033803.4
## 3342 May 2019 2019-05-01             5    2.790123                1 1033803.4
## 3343 May 2019 2019-05-01             5    2.841499                1 1033803.4
## 3344 May 2019 2019-05-01             5    2.629213                1 1033803.4
## 3345 May 2019 2019-05-01             5    2.706897                1 1033803.4
## 3346 May 2019 2019-05-01             5    2.543974                1 1033803.4
## 3347 May 2019 2019-05-01             5    2.712281                1 1033803.4
## 3348 May 2019 2019-05-01             5    2.714789                1 1033803.4
## 3349 May 2019 2019-05-01             5    2.579937                1 1033803.4
## 3350 May 2019 2019-05-01             5    2.824561                1 1033803.4
## 3351 May 2019 2019-05-01             5    2.731250                1 1033803.4
## 3352 May 2019 2019-05-01             5    2.900662                1 1033803.4
## 3353 May 2019 2019-05-01             5    2.284884                1 1033803.4
## 3354 May 2019 2019-05-01             5    2.666667                1 1033803.4
## 3355 May 2019 2019-05-01             5    2.766154                1 1033803.4
## 3356 May 2019 2019-05-01             5    2.677165                1 1033803.4
## 3357 May 2019 2019-05-01             5    2.854545                1 1033803.4
## 3358 May 2019 2019-05-01             5    2.591503                1 1033803.4
## 3359 May 2019 2019-05-01             5    2.325228                1 1033803.4
## 3360 May 2019 2019-05-01             5    2.715596                1 1033803.4
## 3361 May 2019 2019-05-01             5    2.523962                1 1033803.4
## 3362 May 2019 2019-05-01             5    2.748344                1 1033803.4
## 3363 May 2019 2019-05-01             5    3.248227                1 1033803.4
## 3364 May 2019 2019-05-01             5    2.802985                1 1033803.4
## 3365 May 2019 2019-05-01             5    2.889213                1 1033803.4
## 3366 May 2019 2019-05-01             5    2.597911                1 1033803.4
## 3367 May 2019 2019-05-01             5    2.439898                1 1033803.4
## 3368 May 2019 2019-05-01             5    2.759791                1 1033803.4
## 3369 May 2019 2019-05-01             5    2.934426                1 1033803.4
## 3370 May 2019 2019-05-01             5    2.718579                1 1033803.4
## 3371 May 2019 2019-05-01             5    2.692771                1 1033803.4
## 3372 May 2019 2019-05-01             5    2.615873                1 1033803.4
## 3373 May 2019 2019-05-01             5    3.033784                1 1033803.4
## 3374 May 2019 2019-05-01             5    2.812698                1 1033803.4
## 3375 May 2019 2019-05-01             5    2.730650                1 1033803.4
## 3376 May 2019 2019-05-01             5    2.390909                1 1033803.4
## 3377 May 2019 2019-05-01             5    2.729642                1 1033803.4
## 3378 May 2019 2019-05-01             5    2.806878                1 1033803.4
## 3379 May 2019 2019-05-01             5    2.325581                1 1033803.4
## 3380 May 2019 2019-05-01             5    2.646875                1 1033803.4
## 3381 May 2019 2019-05-01             5    2.740053                1 1033803.4
## 3382 May 2019 2019-05-01             5    2.208000                1 1033803.4
## 3383 May 2019 2019-05-01             5    2.219917                1 1033803.4
## 3384 May 2019 2019-05-01             5    3.026012                1 1033803.4
## 3385 May 2019 2019-05-01             5    2.792793                1 1033803.4
## 3386 May 2019 2019-05-01             5    2.544000                1 1033803.4
## 3387 May 2019 2019-05-01             5    2.697128                1 1033803.4
## 3388 May 2019 2019-05-01             5    2.617021                1 1033803.4
## 3389 May 2019 2019-05-01             5    2.567164                1 1033803.4
## 3390 May 2019 2019-05-01             5    2.525316                1 1033803.4
## 3391 May 2019 2019-05-01             5    2.812689                1 1033803.4
## 3392 May 2019 2019-05-01             5    3.041045                1 1033803.4
## 3393 May 2019 2019-05-01             5    2.948387                1 1033803.4
## 3394 May 2019 2019-05-01             5    2.887755                1 1000224.2
## 3395 May 2019 2019-05-01             5    2.571816                1 1000224.2
## 3396 May 2019 2019-05-01             5    2.402367                1 1000224.2
## 3397 May 2019 2019-05-01             5    2.720745                1 1000224.2
## 3398 May 2019 2019-05-01             5    2.620000                1 1000224.2
## 3399 May 2019 2019-05-01             5    2.625407                1 1000224.2
## 3400 May 2019 2019-05-01             5    2.974522                1 1000224.2
## 3401 May 2019 2019-05-01             5    2.856061                1 1000224.2
## 3402 May 2019 2019-05-01             5    2.233645                1 1000224.2
## 3403 May 2019 2019-05-01             5    2.809816                1 1000224.2
## 3404 May 2019 2019-05-01             5    2.506083                1 1000224.2
## 3405 May 2019 2019-05-01             5    2.759076                1 1000224.2
## 3406 May 2019 2019-05-01             5    2.625330                1 1000224.2
## 3407 May 2019 2019-05-01             5    2.780576                1 1000224.2
## 3408 May 2019 2019-05-01             5    2.584000                1 1000224.2
## 3409 May 2019 2019-05-01             5    2.731788                1 1000224.2
## 3410 May 2019 2019-05-01             5    2.703583                1 1000224.2
## 3411 May 2019 2019-05-01             5    2.567647                1 1000224.2
## 3412 May 2019 2019-05-01             5    2.891374                1 1000224.2
## 3413 May 2019 2019-05-01             5    2.912621                1 1000224.2
## 3414 May 2019 2019-05-01             5    2.812298                1 1000224.2
## 3415 May 2019 2019-05-01             5    2.216667                1 1000224.2
## 3416 May 2019 2019-05-01             5    2.972892                1 1000224.2
## 3417 May 2019 2019-05-01             5    2.502890                1 1000224.2
## 3418 May 2019 2019-05-01             5    2.889273                1 1000224.2
## 3419 May 2019 2019-05-01             5    2.715084                1 1000224.2
## 3420 May 2019 2019-05-01             5    2.598662                1 1000224.2
## 3421 May 2019 2019-05-01             5    2.309783                1 1000224.2
## 3422 May 2019 2019-05-01             5    2.404624                1 1000224.2
## 3423 May 2019 2019-05-01             5    2.803636                1 1000224.2
## 3424 May 2019 2019-05-01             5    2.541547                1 1000224.2
## 3425 May 2019 2019-05-01             5    2.386010                1 1000224.2
## 3426 May 2019 2019-05-01             5    2.504505                1 1000224.2
## 3427 May 2019 2019-05-01             5    2.431877                1 1000224.2
## 3428 May 2019 2019-05-01             5    2.483283                1 1000224.2
## 3429 May 2019 2019-05-01             5    2.294737                1 1000224.2
## 3430 May 2019 2019-05-01             5    2.706522                1 1000224.2
## 3431 May 2019 2019-05-01             5    1.746094                1 1000224.2
## 3432 May 2019 2019-05-01             5    2.322767                1 1000224.2
## 3433 May 2019 2019-05-01             5    2.802395                1 1000224.2
## 3434 May 2019 2019-05-01             5    2.714744                1 1000224.2
## 3435 May 2019 2019-05-01             5    2.848943                1 1000224.2
## 3436 May 2019 2019-05-01             5    2.312155                1 1000224.2
## 3437 May 2019 2019-05-01             5    2.754601                1 1000224.2
## 3438 May 2019 2019-05-01             5    2.798780                1 1000224.2
## 3439 May 2019 2019-05-01             5    2.433526                1 1000224.2
## 3440 May 2019 2019-05-01             5    2.523810                1 1000224.2
## 3441 May 2019 2019-05-01             5    2.450151                1 1000224.2
## 3442 May 2019 2019-05-01             5    2.500000                1 1000224.2
## 3443 May 2019 2019-05-01             5    2.448718                1 1000224.2
## 3444 May 2019 2019-05-01             5    2.264935                1 1000224.2
## 3445 May 2019 2019-05-01             5    2.314149                0 1000224.2
## 3446 May 2019 2019-05-01             5    2.173469                1 1000224.2
## 3447 May 2019 2019-05-01             5    2.354930                1 1000224.2
##        Y.utm
## 1    2956134
## 2    2956134
## 3    2956134
## 4    2956134
## 5    2956134
## 6    2956134
## 7    2956134
## 8    2956134
## 9    2956134
## 10   2956134
## 11   2956134
## 12   2956134
## 13   2956134
## 14   2956134
## 15   2956134
## 16   2956134
## 17   2956134
## 18   2956134
## 19   2956134
## 20   2956134
## 21   2956134
## 22   2956134
## 23   2956134
## 24   2956134
## 25   2956134
## 26   2956134
## 27   2956134
## 28   2956134
## 29   2956134
## 30   2956134
## 31   2956134
## 32   2956134
## 33   2956134
## 34   2956134
## 35   2956134
## 36   2956134
## 37   2956134
## 38   2956134
## 39   2956134
## 40   2956134
## 41   2956134
## 42   2956134
## 43   2956134
## 44   2956134
## 45   2956134
## 46   2956134
## 47   2956134
## 48   2956134
## 49   2956134
## 50   2956134
## 51   2956134
## 52   2956134
## 53   2956134
## 54   2956134
## 55   2956134
## 56   2956134
## 57   2956134
## 58   2956134
## 59   2956134
## 60   2956134
## 61   2956134
## 62   2956134
## 63   2956134
## 64   2956134
## 65   2956134
## 66   2956134
## 67   2956134
## 68   2956134
## 69   2956134
## 70   2956134
## 71   2956134
## 72   2956134
## 73   2956134
## 74   2956134
## 75   2956134
## 76   2835483
## 77   2835483
## 78   2835483
## 79   2835483
## 80   2835483
## 81   2835483
## 82   2835483
## 83   2835483
## 84   2835483
## 85   2835483
## 86   2835483
## 87   2835483
## 88   2835483
## 89   2835483
## 90   2835483
## 91   2835483
## 92   2835483
## 93   2835483
## 94   2835483
## 95   2835483
## 96   2835483
## 97   2835483
## 98   2835483
## 99   2835483
## 100  2835483
## 101  2835483
## 102  2835483
## 103  2835483
## 104  2835483
## 105  2835483
## 106  2835483
## 107  2835483
## 108  2835483
## 109  2835483
## 110  2835483
## 111  2835483
## 112  2835483
## 113  2835483
## 114  2835483
## 115  2835483
## 116  2835483
## 117  2835483
## 118  2835483
## 119  2835483
## 120  2835483
## 121  2835483
## 122  2835483
## 123  2835483
## 124  2835483
## 125  2835483
## 126  2835483
## 127  2835483
## 128  2835483
## 129  2835483
## 130  2835483
## 131  2835483
## 132  2835483
## 133  2835483
## 134  2835483
## 135  2835483
## 136  2835483
## 137  2835483
## 138  2835483
## 139  2835483
## 140  2794842
## 141  2794842
## 142  2794842
## 143  2794842
## 144  2794842
## 145  2794842
## 146  2794842
## 147  2794842
## 148  2794842
## 149  2794842
## 150  2794842
## 151  2794842
## 152  2794842
## 153  2794842
## 154  2794842
## 155  2794842
## 156  2794842
## 157  2794842
## 158  2794842
## 159  2794842
## 160  2794842
## 161  2794842
## 162  2794842
## 163  2794842
## 164  2794842
## 165  2794842
## 166  2794842
## 167  2794842
## 168  2794842
## 169  2794842
## 170  2794842
## 171  2794842
## 172  2794842
## 173  2794842
## 174  2794842
## 175  2794842
## 176  2794842
## 177  2794842
## 178  2794842
## 179  2794842
## 180  2794842
## 181  2794842
## 182  2794842
## 183  2794842
## 184  2794842
## 185  2794842
## 186  2794842
## 187  2794842
## 188  2794842
## 189  2794842
## 190  2794842
## 191  2794842
## 192  2794842
## 193  2794842
## 194  2794842
## 195  2794842
## 196  2794842
## 197  2794842
## 198  2794842
## 199  2794842
## 200  2794842
## 201  3098294
## 202  3098294
## 203  3098294
## 204  3098294
## 205  3098294
## 206  3098294
## 207  3098294
## 208  3098294
## 209  3098294
## 210  3098294
## 211  3098294
## 212  3098294
## 213  3098294
## 214  3098294
## 215  3098294
## 216  3098294
## 217  3098294
## 218  3098294
## 219  3098294
## 220  3098294
## 221  3098294
## 222  3098294
## 223  3098294
## 224  3098294
## 225  3098294
## 226  3098294
## 227  3098294
## 228  3098294
## 229  3098294
## 230  3098294
## 231  3098294
## 232  3098294
## 233  3098294
## 234  3098294
## 235  3098294
## 236  3098294
## 237  3098294
## 238  3098294
## 239  3098294
## 240  3098294
## 241  3098294
## 242  3098294
## 243  3098294
## 244  3098294
## 245  3098294
## 246  3098294
## 247  3098294
## 248  3098294
## 249  3098294
## 250  3098294
## 251  3098294
## 252  3098294
## 253  3098294
## 254  3098294
## 255  3098294
## 256  3098294
## 257  3098294
## 258  3098294
## 259  3098294
## 260  3098294
## 261  3196176
## 262  3196176
## 263  3196176
## 264  3196176
## 265  3196176
## 266  3196176
## 267  3196176
## 268  3196176
## 269  3196176
## 270  3196176
## 271  3196176
## 272  3196176
## 273  3196176
## 274  3196176
## 275  3196176
## 276  3196176
## 277  3196176
## 278  3196176
## 279  3196176
## 280  3196176
## 281  3196176
## 282  3196176
## 283  3196176
## 284  3196176
## 285  3196176
## 286  2776463
## 287  2776463
## 288  2776463
## 289  2776463
## 290  2776463
## 291  2776463
## 292  2776463
## 293  2776463
## 294  2776463
## 295  2776463
## 296  2776463
## 297  2776463
## 298  2776463
## 299  2776463
## 300  2776463
## 301  2776463
## 302  2776463
## 303  2776463
## 304  2776463
## 305  2776463
## 306  2776463
## 307  2776463
## 308  2776463
## 309  2776463
## 310  2776463
## 311  2776463
## 312  2776463
## 313  2776463
## 314  2776463
## 315  2776463
## 316  2776463
## 317  2776463
## 318  2776463
## 319  2776463
## 320  2776463
## 321  2776463
## 322  2956134
## 323  2956134
## 324  2956134
## 325  2956134
## 326  2956134
## 327  2956134
## 328  2956134
## 329  2956134
## 330  2956134
## 331  2956134
## 332  2956134
## 333  2956134
## 334  2956134
## 335  2956134
## 336  2956134
## 337  2956134
## 338  2956134
## 339  2956134
## 340  2956134
## 341  2956134
## 342  2956134
## 343  2956134
## 344  2956134
## 345  2956134
## 346  2956134
## 347  2956134
## 348  2956134
## 349  2956134
## 350  2956134
## 351  2956134
## 352  2956134
## 353  2956134
## 354  2956134
## 355  2956134
## 356  2956134
## 357  2956134
## 358  2956134
## 359  2956134
## 360  2956134
## 361  2956134
## 362  2956134
## 363  2956134
## 364  2956134
## 365  2956134
## 366  2956134
## 367  2956134
## 368  2956134
## 369  2956134
## 370  2956134
## 371  2956134
## 372  2956134
## 373  2956134
## 374  2956134
## 375  2956134
## 376  2956134
## 377  2956134
## 378  2956134
## 379  2956134
## 380  2956134
## 381  2956134
## 382  2956134
## 383  2956134
## 384  2956134
## 385  2956134
## 386  2956134
## 387  2956134
## 388  2956134
## 389  2956134
## 390  2956134
## 391  2956134
## 392  2956134
## 393  2956134
## 394  2956134
## 395  2956134
## 396  2956134
## 397  3290538
## 398  3290538
## 399  3290538
## 400  3290538
## 401  3290538
## 402  3290538
## 403  3290538
## 404  3290538
## 405  3290538
## 406  3290538
## 407  3290538
## 408  3290538
## 409  3290538
## 410  3290538
## 411  2835483
## 412  2835483
## 413  2835483
## 414  2835483
## 415  2835483
## 416  2835483
## 417  2835483
## 418  2835483
## 419  2835483
## 420  2835483
## 421  2835483
## 422  2835483
## 423  2835483
## 424  2835483
## 425  2835483
## 426  2835483
## 427  2835483
## 428  2835483
## 429  2835483
## 430  2835483
## 431  2835483
## 432  2835483
## 433  2835483
## 434  2835483
## 435  2835483
## 436  2835483
## 437  2835483
## 438  2835483
## 439  2835483
## 440  2835483
## 441  2835483
## 442  2835483
## 443  2835483
## 444  2835483
## 445  2835483
## 446  2835483
## 447  2835483
## 448  2835483
## 449  2835483
## 450  2835483
## 451  2835483
## 452  2835483
## 453  2835483
## 454  2835483
## 455  2835483
## 456  2835483
## 457  2835483
## 458  2835483
## 459  2835483
## 460  2835483
## 461  2835483
## 462  2835483
## 463  2794842
## 464  2794842
## 465  2794842
## 466  2794842
## 467  2794842
## 468  2794842
## 469  2794842
## 470  2794842
## 471  2794842
## 472  2794842
## 473  2794842
## 474  2794842
## 475  2794842
## 476  2794842
## 477  2794842
## 478  2794842
## 479  2794842
## 480  2794842
## 481  2794842
## 482  2794842
## 483  2794842
## 484  2794842
## 485  2794842
## 486  2794842
## 487  2794842
## 488  2794842
## 489  2794842
## 490  2794842
## 491  2794842
## 492  2794842
## 493  2794842
## 494  2794842
## 495  3098294
## 496  3098294
## 497  3098294
## 498  3098294
## 499  3098294
## 500  3098294
## 501  3098294
## 502  3098294
## 503  3098294
## 504  3098294
## 505  3098294
## 506  3098294
## 507  3098294
## 508  3098294
## 509  3098294
## 510  3098294
## 511  3098294
## 512  3098294
## 513  3098294
## 514  3098294
## 515  3098294
## 516  3098294
## 517  3098294
## 518  3098294
## 519  3098294
## 520  3098294
## 521  3098294
## 522  3098294
## 523  3098294
## 524  3098294
## 525  3098294
## 526  3098294
## 527  3098294
## 528  3098294
## 529  3098294
## 530  3098294
## 531  3098294
## 532  3098294
## 533  3098294
## 534  3098294
## 535  3098294
## 536  3098294
## 537  3098294
## 538  3098294
## 539  3098294
## 540  3098294
## 541  3098294
## 542  3098294
## 543  3098294
## 544  3098294
## 545  3098294
## 546  3098294
## 547  3098294
## 548  3098294
## 549  3098294
## 550  3098294
## 551  3098294
## 552  3098294
## 553  3098294
## 554  3098294
## 555  3098294
## 556  3098294
## 557  3098294
## 558  3098294
## 559  3098294
## 560  3098294
## 561  3098294
## 562  3098294
## 563  3098294
## 564  3098294
## 565  3098294
## 566  3098294
## 567  3098294
## 568  3098294
## 569  3098294
## 570  3098294
## 571  3098294
## 572  3098294
## 573  3098294
## 574  3098294
## 575  3098294
## 576  3098294
## 577  3098294
## 578  3098294
## 579  3196176
## 580  3196176
## 581  3196176
## 582  3196176
## 583  3196176
## 584  3196176
## 585  3196176
## 586  3196176
## 587  3196176
## 588  3196176
## 589  3196176
## 590  3196176
## 591  3196176
## 592  3196176
## 593  3196176
## 594  3196176
## 595  3196176
## 596  3196176
## 597  3196176
## 598  3196176
## 599  3196176
## 600  3196176
## 601  3196176
## 602  3196176
## 603  3196176
## 604  3196176
## 605  3196176
## 606  3196176
## 607  3196176
## 608  3196176
## 609  3196176
## 610  3196176
## 611  3196176
## 612  3196176
## 613  3196176
## 614  3196176
## 615  3196176
## 616  3196176
## 617  3196176
## 618  3196176
## 619  3196176
## 620  3196176
## 621  3196176
## 622  3196176
## 623  3196176
## 624  3196176
## 625  3196176
## 626  3196176
## 627  3196176
## 628  3196176
## 629  3196176
## 630  3196176
## 631  3196176
## 632  3196176
## 633  3196176
## 634  3196176
## 635  3196176
## 636  3196176
## 637  3196176
## 638  3196176
## 639  3196176
## 640  3196176
## 641  3196176
## 642  3196176
## 643  3196176
## 644  3196176
## 645  3196176
## 646  3196176
## 647  3196176
## 648  3196176
## 649  3196176
## 650  3196176
## 651  3196176
## 652  3196176
## 653  3196176
## 654  3196176
## 655  3196176
## 656  3196176
## 657  3196176
## 658  3196176
## 659  3196176
## 660  3196176
## 661  3196176
## 662  3196176
## 663  3196176
## 664  3196176
## 665  3196176
## 666  3196176
## 667  3196176
## 668  3196176
## 669  3196176
## 670  2776463
## 671  2776463
## 672  2776463
## 673  2776463
## 674  2776463
## 675  2776463
## 676  2776463
## 677  2776463
## 678  2776463
## 679  2776463
## 680  2776463
## 681  2776463
## 682  2776463
## 683  2776463
## 684  2776463
## 685  2776463
## 686  2776463
## 687  2776463
## 688  2776463
## 689  2776463
## 690  2776463
## 691  2776463
## 692  2776463
## 693  2776463
## 694  2776463
## 695  2776463
## 696  2776463
## 697  2776463
## 698  2776463
## 699  2776463
## 700  2776463
## 701  2776463
## 702  2776463
## 703  2776463
## 704  2776463
## 705  3290538
## 706  3290538
## 707  3290538
## 708  3290538
## 709  3290538
## 710  3290538
## 711  3290538
## 712  3290538
## 713  3290538
## 714  3290538
## 715  3290538
## 716  3290538
## 717  3290538
## 718  3290538
## 719  3290538
## 720  3290538
## 721  3290538
## 722  3290538
## 723  3290538
## 724  3290538
## 725  3290538
## 726  3290538
## 727  3290538
## 728  3290538
## 729  3290538
## 730  3290538
## 731  3290538
## 732  3290538
## 733  3290538
## 734  3290538
## 735  3290538
## 736  3290538
## 737  3290538
## 738  3290538
## 739  3290538
## 740  3290538
## 741  3290538
## 742  3290538
## 743  3290538
## 744  3290538
## 745  3290538
## 746  3290538
## 747  3290538
## 748  3290538
## 749  3290538
## 750  3290538
## 751  3290538
## 752  3290538
## 753  2835483
## 754  2835483
## 755  2835483
## 756  2835483
## 757  2835483
## 758  2835483
## 759  2835483
## 760  2835483
## 761  2835483
## 762  2835483
## 763  2835483
## 764  2835483
## 765  2835483
## 766  2835483
## 767  2835483
## 768  2835483
## 769  2835483
## 770  2794842
## 771  2794842
## 772  2794842
## 773  2794842
## 774  2794842
## 775  2794842
## 776  2794842
## 777  2794842
## 778  2794842
## 779  2794842
## 780  2794842
## 781  2794842
## 782  2794842
## 783  2794842
## 784  2794842
## 785  2794842
## 786  2794842
## 787  2794842
## 788  2794842
## 789  2794842
## 790  2794842
## 791  2794842
## 792  2794842
## 793  2794842
## 794  2794842
## 795  2794842
## 796  2794842
## 797  2794842
## 798  2794842
## 799  2794842
## 800  2794842
## 801  2794842
## 802  2794842
## 803  2794842
## 804  2794842
## 805  2794842
## 806  2794842
## 807  2794842
## 808  2794842
## 809  2794842
## 810  3098294
## 811  3098294
## 812  3098294
## 813  3098294
## 814  3098294
## 815  3098294
## 816  3098294
## 817  3098294
## 818  3098294
## 819  3098294
## 820  3098294
## 821  3098294
## 822  3098294
## 823  3098294
## 824  3098294
## 825  3098294
## 826  3098294
## 827  3098294
## 828  3098294
## 829  3098294
## 830  3098294
## 831  3098294
## 832  3098294
## 833  3098294
## 834  3098294
## 835  3098294
## 836  3098294
## 837  3098294
## 838  3098294
## 839  3098294
## 840  3098294
## 841  3098294
## 842  3098294
## 843  3098294
## 844  3098294
## 845  3098294
## 846  3098294
## 847  3098294
## 848  3098294
## 849  3098294
## 850  3098294
## 851  3098294
## 852  3098294
## 853  3098294
## 854  3196176
## 855  3196176
## 856  3196176
## 857  3196176
## 858  3196176
## 859  3196176
## 860  3196176
## 861  3196176
## 862  3196176
## 863  3196176
## 864  3196176
## 865  3196176
## 866  3196176
## 867  3196176
## 868  2776463
## 869  2776463
## 870  2776463
## 871  2776463
## 872  2776463
## 873  2776463
## 874  2776463
## 875  2776463
## 876  2776463
## 877  2776463
## 878  2776463
## 879  2776463
## 880  2776463
## 881  2776463
## 882  2776463
## 883  2776463
## 884  2776463
## 885  2776463
## 886  2776463
## 887  2776463
## 888  2776463
## 889  2776463
## 890  2776463
## 891  2776463
## 892  2776463
## 893  2776463
## 894  2776463
## 895  2776463
## 896  2776463
## 897  2776463
## 898  2776463
## 899  2776463
## 900  2776463
## 901  2776463
## 902  2776463
## 903  2776463
## 904  2776463
## 905  2776463
## 906  2776463
## 907  2776463
## 908  2776463
## 909  2776463
## 910  2776463
## 911  2776463
## 912  2794842
## 913  2794842
## 914  2794842
## 915  2794842
## 916  2794842
## 917  2794842
## 918  2794842
## 919  2794842
## 920  2794842
## 921  2794842
## 922  2794842
## 923  2794842
## 924  2794842
## 925  2794842
## 926  2794842
## 927  2794842
## 928  2794842
## 929  2794842
## 930  2794842
## 931  2794842
## 932  2794842
## 933  2794842
## 934  2794842
## 935  2794842
## 936  2794842
## 937  2794842
## 938  2794842
## 939  2794842
## 940  2794842
## 941  2794842
## 942  2794842
## 943  2794842
## 944  2794842
## 945  2794842
## 946  2794842
## 947  2794842
## 948  2794842
## 949  2794842
## 950  2794842
## 951  2794842
## 952  2794842
## 953  2794842
## 954  2794842
## 955  2794842
## 956  2794842
## 957  2794842
## 958  2794842
## 959  2794842
## 960  2794842
## 961  2794842
## 962  2794842
## 963  3098294
## 964  3098294
## 965  3098294
## 966  3098294
## 967  3098294
## 968  3098294
## 969  3098294
## 970  3098294
## 971  3098294
## 972  3098294
## 973  3098294
## 974  3098294
## 975  3098294
## 976  3098294
## 977  3098294
## 978  3098294
## 979  3098294
## 980  3098294
## 981  3098294
## 982  3098294
## 983  3098294
## 984  3098294
## 985  3098294
## 986  3098294
## 987  3098294
## 988  3098294
## 989  3098294
## 990  3098294
## 991  3098294
## 992  3098294
## 993  3098294
## 994  3098294
## 995  3098294
## 996  3098294
## 997  3098294
## 998  3098294
## 999  3098294
## 1000 3098294
## 1001 3098294
## 1002 3098294
## 1003 3098294
## 1004 3098294
## 1005 3098294
## 1006 3098294
## 1007 3098294
## 1008 3098294
## 1009 3098294
## 1010 3098294
## 1011 3098294
## 1012 3098294
## 1013 3098294
## 1014 3098294
## 1015 3098294
## 1016 3196176
## 1017 3196176
## 1018 3196176
## 1019 3196176
## 1020 3196176
## 1021 3196176
## 1022 3196176
## 1023 3196176
## 1024 3196176
## 1025 3196176
## 1026 3196176
## 1027 3196176
## 1028 3196176
## 1029 3196176
## 1030 3196176
## 1031 3196176
## 1032 3196176
## 1033 3196176
## 1034 3196176
## 1035 3196176
## 1036 3196176
## 1037 3196176
## 1038 3196176
## 1039 3196176
## 1040 3196176
## 1041 3196176
## 1042 3196176
## 1043 3196176
## 1044 3196176
## 1045 3196176
## 1046 3196176
## 1047 3196176
## 1048 3196176
## 1049 3196176
## 1050 3196176
## 1051 3196176
## 1052 2776463
## 1053 2776463
## 1054 2776463
## 1055 2776463
## 1056 2776463
## 1057 2776463
## 1058 2776463
## 1059 2776463
## 1060 2776463
## 1061 2776463
## 1062 2776463
## 1063 2776463
## 1064 3290538
## 1065 3290538
## 1066 3290538
## 1067 3290538
## 1068 3290538
## 1069 3290538
## 1070 3290538
## 1071 3290538
## 1072 3290538
## 1073 3290538
## 1074 3290538
## 1075 3290538
## 1076 3290538
## 1077 3290538
## 1078 3290538
## 1079 3290538
## 1080 3290538
## 1081 3290538
## 1082 3290538
## 1083 3290538
## 1084 3290538
## 1085 3290538
## 1086 3290538
## 1087 3290538
## 1088 3290538
## 1089 3290538
## 1090 3290538
## 1091 3290538
## 1092 3290538
## 1093 3290538
## 1094 3290538
## 1095 3290538
## 1096 3290538
## 1097 3290538
## 1098 3290538
## 1099 3290538
## 1100 3290538
## 1101 3290538
## 1102 3290538
## 1103 3290538
## 1104 3290538
## 1105 3290538
## 1106 3290538
## 1107 3290538
## 1108 3290538
## 1109 3290538
## 1110 3290538
## 1111 3290538
## 1112 3290538
## 1113 3290538
## 1114 3290538
## 1115 3290538
## 1116 3290538
## 1117 3290538
## 1118 3290538
## 1119 3290538
## 1120 3290538
## 1121 2835483
## 1122 2835483
## 1123 2835483
## 1124 2835483
## 1125 2835483
## 1126 2835483
## 1127 2835483
## 1128 2835483
## 1129 2835483
## 1130 2835483
## 1131 2835483
## 1132 2835483
## 1133 2835483
## 1134 2810251
## 1135 2810251
## 1136 2810251
## 1137 2810251
## 1138 2810251
## 1139 2810251
## 1140 2810251
## 1141 2810251
## 1142 2810251
## 1143 2810251
## 1144 2810251
## 1145 2810251
## 1146 2810251
## 1147 2810251
## 1148 2810251
## 1149 2810251
## 1150 2810251
## 1151 2810251
## 1152 2810251
## 1153 2810251
## 1154 2810251
## 1155 2810251
## 1156 2810251
## 1157 2810251
## 1158 2810251
## 1159 2810251
## 1160 2810251
## 1161 2810251
## 1162 2810251
## 1163 2810251
## 1164 2810251
## 1165 2810251
## 1166 2810251
## 1167 2810251
## 1168 2810251
## 1169 2810251
## 1170 2810251
## 1171 2810251
## 1172 2810251
## 1173 2810251
## 1174 2810251
## 1175 2810251
## 1176 2810251
## 1177 2810251
## 1178 2810251
## 1179 2810251
## 1180 2810251
## 1181 2810251
## 1182 2810251
## 1183 2810251
## 1184 2810251
## 1185 2810251
## 1186 2810251
## 1187 2794842
## 1188 2794842
## 1189 2794842
## 1190 2794842
## 1191 2794842
## 1192 2794842
## 1193 2794842
## 1194 2794842
## 1195 2794842
## 1196 2794842
## 1197 2794842
## 1198 3101958
## 1199 3101958
## 1200 3101958
## 1201 3101958
## 1202 3101958
## 1203 3101958
## 1204 3101958
## 1205 3101958
## 1206 3101958
## 1207 3101958
## 1208 3101958
## 1209 3101958
## 1210 3101958
## 1211 3101958
## 1212 3101958
## 1213 3197182
## 1214 3197182
## 1215 3197182
## 1216 3197182
## 1217 3197182
## 1218 3197182
## 1219 3197182
## 1220 3197182
## 1221 3197182
## 1222 3197182
## 1223 3197182
## 1224 3197182
## 1225 3197182
## 1226 3197182
## 1227 3197182
## 1228 3197182
## 1229 3197182
## 1230 3197182
## 1231 3197182
## 1232 3197182
## 1233 3196176
## 1234 3196176
## 1235 3196176
## 1236 3196176
## 1237 3196176
## 1238 3196176
## 1239 3196176
## 1240 3196176
## 1241 3196176
## 1242 3196176
## 1243 3196176
## 1244 3196176
## 1245 3196176
## 1246 3196176
## 1247 3196176
## 1248 3196176
## 1249 3196176
## 1250 3196176
## 1251 3196176
## 1252 3196176
## 1253 3196176
## 1254 3196176
## 1255 3196176
## 1256 3196176
## 1257 3196176
## 1258 3196176
## 1259 3196176
## 1260 3196176
## 1261 3196176
## 1262 3196176
## 1263 3196176
## 1264 3196176
## 1265 3196176
## 1266 3196176
## 1267 3196176
## 1268 3196176
## 1269 3196176
## 1270 3196176
## 1271 3196176
## 1272 3196176
## 1273 3196176
## 1274 3196176
## 1275 3196176
## 1276 3196176
## 1277 3196176
## 1278 2778276
## 1279 2778276
## 1280 2778276
## 1281 2778276
## 1282 2778276
## 1283 2778276
## 1284 2778276
## 1285 2778276
## 1286 2778276
## 1287 2778276
## 1288 2778276
## 1289 2778276
## 1290 2778276
## 1291 2778276
## 1292 2778276
## 1293 2778276
## 1294 2778276
## 1295 2778276
## 1296 2778276
## 1297 2778276
## 1298 2778276
## 1299 2778276
## 1300 2778276
## 1301 2778276
## 1302 2778276
## 1303 2778276
## 1304 2778276
## 1305 2778276
## 1306 2778276
## 1307 2778276
## 1308 2778276
## 1309 2778276
## 1310 2778276
## 1311 2778276
## 1312 2778276
## 1313 2778276
## 1314 2778276
## 1315 3290885
## 1316 3290885
## 1317 3290885
## 1318 3290885
## 1319 3290885
## 1320 3290885
## 1321 3290885
## 1322 3290885
## 1323 3290885
## 1324 3290885
## 1325 3290885
## 1326 3290885
## 1327 3290885
## 1328 3290885
## 1329 3290885
## 1330 3290885
## 1331 3290885
## 1332 3290885
## 1333 3290885
## 1334 3290885
## 1335 3290885
## 1336 3290885
## 1337 3290885
## 1338 3290885
## 1339 3290885
## 1340 3290885
## 1341 3290885
## 1342 3290885
## 1343 3290885
## 1344 3290885
## 1345 3290885
## 1346 3290885
## 1347 3290885
## 1348 3290885
## 1349 3290885
## 1350 3290885
## 1351 3290885
## 1352 3290885
## 1353 3290885
## 1354 3290885
## 1355 3290885
## 1356 3290885
## 1357 3290885
## 1358 3290885
## 1359 3290885
## 1360 3290885
## 1361 3290885
## 1362 3290885
## 1363 3290885
## 1364 3290885
## 1365 3290885
## 1366 3290885
## 1367 3290885
## 1368 3290885
## 1369 3290885
## 1370 3290885
## 1371 3290885
## 1372 3290885
## 1373 3290885
## 1374 3290885
## 1375 2885502
## 1376 2885502
## 1377 2885502
## 1378 2885502
## 1379 2885502
## 1380 2885502
## 1381 2885502
## 1382 2885502
## 1383 2885502
## 1384 2885502
## 1385 2885502
## 1386 2885502
## 1387 2885502
## 1388 2885502
## 1389 2885502
## 1390 2885502
## 1391 2885502
## 1392 2885502
## 1393 2885502
## 1394 2885502
## 1395 2885502
## 1396 2885502
## 1397 2885502
## 1398 2885502
## 1399 2885502
## 1400 2885502
## 1401 2885502
## 1402 2885502
## 1403 2885502
## 1404 2885502
## 1405 2885502
## 1406 2885502
## 1407 2885502
## 1408 2885502
## 1409 2885502
## 1410 2885502
## 1411 2885502
## 1412 2885502
## 1413 2885502
## 1414 2885502
## 1415 2885502
## 1416 2885502
## 1417 2885502
## 1418 2885502
## 1419 2885502
## 1420 2885502
## 1421 2885502
## 1422 2885502
## 1423 2885502
## 1424 2885502
## 1425 2885502
## 1426 2885502
## 1427 2885502
## 1428 2885502
## 1429 2885502
## 1430 2885502
## 1431 2885502
## 1432 2885502
## 1433 2885502
## 1434 2885502
## 1435 2885502
## 1436 2885502
## 1437 2885502
## 1438 2885502
## 1439 2885502
## 1440 2885502
## 1441 2885502
## 1442 2885502
## 1443 2885502
## 1444 2885502
## 1445 2885502
## 1446 2885502
## 1447 2885502
## 1448 2885502
## 1449 2885502
## 1450 2885502
## 1451 2885502
## 1452 2885502
## 1453 2885502
## 1454 2885502
## 1455 2885502
## 1456 2885502
## 1457 2885502
## 1458 2885502
## 1459 2885502
## 1460 2885502
## 1461 2885502
## 1462 2885502
## 1463 2885502
## 1464 2885502
## 1465 2885502
## 1466 2885502
## 1467 2885502
## 1468 2885502
## 1469 2885502
## 1470 2885502
## 1471 2885502
## 1472 2885502
## 1473 2885502
## 1474 2885502
## 1475 2885502
## 1476 2885502
## 1477 2885502
## 1478 2885502
## 1479 2885502
## 1480 2885502
## 1481 2885502
## 1482 2885502
## 1483 2885502
## 1484 2885502
## 1485 2885502
## 1486 2885502
## 1487 2885502
## 1488 2885502
## 1489 2885502
## 1490 2885502
## 1491 2885502
## 1492 2885502
## 1493 2885502
## 1494 2885502
## 1495 2885502
## 1496 2885502
## 1497 2885502
## 1498 2885502
## 1499 2885502
## 1500 2885502
## 1501 2885502
## 1502 2795436
## 1503 2795436
## 1504 2795436
## 1505 2795436
## 1506 2795436
## 1507 2795436
## 1508 2795436
## 1509 2795436
## 1510 2795436
## 1511 2795436
## 1512 2795436
## 1513 2795436
## 1514 2795436
## 1515 2795436
## 1516 2795436
## 1517 2795436
## 1518 2795436
## 1519 2795425
## 1520 2795425
## 1521 2795425
## 1522 2795425
## 1523 2795425
## 1524 2795425
## 1525 2795425
## 1526 2795425
## 1527 2795425
## 1528 2795425
## 1529 2795425
## 1530 2795425
## 1531 2795425
## 1532 2795425
## 1533 2795425
## 1534 2795425
## 1535 2795425
## 1536 2795425
## 1537 2795489
## 1538 2795489
## 1539 2795489
## 1540 2795489
## 1541 2795489
## 1542 2795489
## 1543 2795489
## 1544 2795489
## 1545 2795489
## 1546 2795489
## 1547 2795489
## 1548 2795489
## 1549 2795489
## 1550 2795489
## 1551 2795489
## 1552 2795489
## 1553 2795489
## 1554 2795489
## 1555 2795489
## 1556 2795489
## 1557 2795489
## 1558 2795489
## 1559 2795489
## 1560 2795489
## 1561 2795489
## 1562 2795489
## 1563 2795489
## 1564 2795489
## 1565 2795489
## 1566 2795489
## 1567 2795489
## 1568 2795489
## 1569 2795489
## 1570 2795489
## 1571 2795489
## 1572 2795489
## 1573 2795489
## 1574 2810252
## 1575 2810252
## 1576 2810252
## 1577 2810252
## 1578 2810252
## 1579 2810252
## 1580 2810252
## 1581 2810252
## 1582 2810252
## 1583 2810252
## 1584 2810252
## 1585 2810252
## 1586 2810252
## 1587 2810252
## 1588 2810252
## 1589 2810252
## 1590 2810252
## 1591 2810252
## 1592 2810252
## 1593 2810252
## 1594 3101957
## 1595 3101957
## 1596 3101957
## 1597 3101957
## 1598 3101957
## 1599 3101957
## 1600 3101957
## 1601 3101957
## 1602 3101957
## 1603 3101957
## 1604 3101957
## 1605 3101957
## 1606 3101957
## 1607 3101957
## 1608 3101957
## 1609 3101957
## 1610 3101957
## 1611 3101957
## 1612 3101957
## 1613 3101957
## 1614 3101957
## 1615 3101957
## 1616 3101957
## 1617 3101957
## 1618 3101957
## 1619 3101957
## 1620 3101957
## 1621 3101957
## 1622 3101957
## 1623 3101957
## 1624 3101957
## 1625 3101957
## 1626 3101957
## 1627 3101957
## 1628 3101957
## 1629 3101957
## 1630 3101957
## 1631 3101957
## 1632 3101957
## 1633 3101957
## 1634 3101957
## 1635 3101957
## 1636 3101957
## 1637 3101957
## 1638 3101957
## 1639 3101957
## 1640 3101957
## 1641 3101957
## 1642 3101957
## 1643 3101957
## 1644 3101957
## 1645 3101957
## 1646 3101957
## 1647 3101957
## 1648 3101957
## 1649 3101957
## 1650 3101957
## 1651 3101957
## 1652 3101957
## 1653 3101957
## 1654 3101957
## 1655 3101957
## 1656 3101957
## 1657 3101957
## 1658 3101957
## 1659 3101957
## 1660 3101957
## 1661 3101957
## 1662 3101957
## 1663 3101957
## 1664 3101957
## 1665 3101957
## 1666 3101957
## 1667 3101957
## 1668 3101957
## 1669 3101957
## 1670 3101957
## 1671 3101957
## 1672 3101957
## 1673 3101957
## 1674 3101957
## 1675 3101957
## 1676 3101957
## 1677 3101957
## 1678 3101957
## 1679 3101957
## 1680 3101957
## 1681 3101957
## 1682 3101957
## 1683 3101957
## 1684 3101957
## 1685 3197189
## 1686 3197189
## 1687 3197189
## 1688 3197189
## 1689 3197189
## 1690 3197189
## 1691 3197189
## 1692 3197189
## 1693 3197189
## 1694 3197189
## 1695 3197189
## 1696 3197189
## 1697 3197189
## 1698 3197189
## 1699 3197189
## 1700 3197189
## 1701 3197189
## 1702 3197189
## 1703 3197189
## 1704 3197189
## 1705 3197189
## 1706 3197189
## 1707 3197189
## 1708 3197189
## 1709 3197189
## 1710 3197189
## 1711 3197189
## 1712 3197189
## 1713 3197189
## 1714 3197189
## 1715 3197189
## 1716 3197189
## 1717 3197189
## 1718 3197189
## 1719 3197189
## 1720 3197189
## 1721 3197189
## 1722 3197189
## 1723 3197189
## 1724 3197189
## 1725 3197189
## 1726 3197189
## 1727 3197189
## 1728 3197189
## 1729 3197189
## 1730 3197189
## 1731 3197189
## 1732 3197189
## 1733 3197189
## 1734 3197189
## 1735 3197189
## 1736 3197189
## 1737 3197189
## 1738 3197189
## 1739 3197189
## 1740 3197189
## 1741 3197189
## 1742 3197189
## 1743 3290857
## 1744 3290857
## 1745 3290857
## 1746 3290857
## 1747 3290857
## 1748 3290857
## 1749 3290857
## 1750 3290857
## 1751 3290857
## 1752 3290857
## 1753 3290857
## 1754 3290857
## 1755 3290857
## 1756 3290857
## 1757 3290857
## 1758 3290857
## 1759 3290857
## 1760 3290857
## 1761 3290857
## 1762 3290857
## 1763 3290857
## 1764 3290857
## 1765 3290857
## 1766 3290857
## 1767 3290857
## 1768 3290857
## 1769 3290857
## 1770 3290857
## 1771 3290857
## 1772 3290857
## 1773 3290857
## 1774 3290857
## 1775 3290857
## 1776 3290857
## 1777 3290857
## 1778 3290857
## 1779 3290857
## 1780 3290857
## 1781 3290857
## 1782 3290857
## 1783 3290857
## 1784 3290857
## 1785 3290857
## 1786 3290857
## 1787 3290857
## 1788 3290857
## 1789 3290857
## 1790 3290857
## 1791 3290857
## 1792 3290857
## 1793 3290857
## 1794 3290857
## 1795 3290857
## 1796 3290857
## 1797 3290857
## 1798 3290857
## 1799 3290857
## 1800 3290857
## 1801 3290857
## 1802 3290857
## 1803 3290857
## 1804 3290857
## 1805 3290857
## 1806 3290857
## 1807 2803177
## 1808 2803177
## 1809 2803177
## 1810 2803177
## 1811 2803177
## 1812 2803177
## 1813 2803177
## 1814 2803177
## 1815 2803177
## 1816 2803177
## 1817 2803177
## 1818 2803177
## 1819 2803177
## 1820 2803177
## 1821 2803177
## 1822 2803177
## 1823 2803177
## 1824 2803177
## 1825 2803177
## 1826 2803177
## 1827 2803177
## 1828 2803177
## 1829 2803177
## 1830 2803177
## 1831 2803177
## 1832 2803177
## 1833 2803177
## 1834 2803177
## 1835 2803177
## 1836 2803177
## 1837 2803177
## 1838 2803177
## 1839 2803177
## 1840 2803177
## 1841 2803177
## 1842 2803177
## 1843 2803177
## 1844 2803177
## 1845 2803177
## 1846 2803177
## 1847 2803177
## 1848 2803177
## 1849 2803177
## 1850 2803177
## 1851 2803177
## 1852 2803177
## 1853 2803177
## 1854 2803177
## 1855 2803177
## 1856 2803177
## 1857 2803177
## 1858 2803177
## 1859 2803177
## 1860 2803177
## 1861 2803177
## 1862 2803177
## 1863 2803177
## 1864 2803177
## 1865 2803177
## 1866 2803177
## 1867 2803177
## 1868 2803177
## 1869 2803177
## 1870 2803177
## 1871 2803177
## 1872 2803177
## 1873 2803177
## 1874 2803177
## 1875 3101959
## 1876 3101959
## 1877 3101959
## 1878 3101959
## 1879 3101959
## 1880 3101959
## 1881 3101959
## 1882 3101959
## 1883 3101959
## 1884 3101959
## 1885 3101959
## 1886 3101959
## 1887 3101959
## 1888 3101959
## 1889 3101959
## 1890 3101959
## 1891 3101959
## 1892 3101959
## 1893 3101959
## 1894 3101959
## 1895 3101959
## 1896 3101959
## 1897 3101959
## 1898 3101959
## 1899 3101959
## 1900 3101959
## 1901 3101959
## 1902 3101959
## 1903 3101959
## 1904 3101959
## 1905 3101959
## 1906 3101959
## 1907 3101959
## 1908 3101959
## 1909 3101959
## 1910 3101959
## 1911 3101959
## 1912 3101959
## 1913 3101959
## 1914 3101959
## 1915 3198295
## 1916 3290890
## 1917 3290890
## 1918 3290890
## 1919 3290890
## 1920 3290890
## 1921 3290890
## 1922 3290890
## 1923 3290890
## 1924 3290890
## 1925 3290395
## 1926 3290395
## 1927 3290395
## 1928 3290395
## 1929 3290395
## 1930 3290395
## 1931 3290395
## 1932 3290395
## 1933 3290395
## 1934 3290395
## 1935 3290395
## 1936 3290395
## 1937 3290395
## 1938 3290395
## 1939 3290395
## 1940 3290395
## 1941 3290395
## 1942 3290395
## 1943 3290395
## 1944 3290395
## 1945 3290395
## 1946 3290395
## 1947 3290395
## 1948 3290395
## 1949 3290395
## 1950 3290395
## 1951 3290395
## 1952 3290395
## 1953 3290395
## 1954 3290395
## 1955 3290395
## 1956 3290395
## 1957 3290395
## 1958 3290395
## 1959 3290395
## 1960 3290395
## 1961 3290395
## 1962 3290395
## 1963 3290395
## 1964 3290395
## 1965 2835119
## 1966 2835119
## 1967 2835119
## 1968 2835119
## 1969 2835119
## 1970 2835119
## 1971 2835119
## 1972 2835119
## 1973 2835119
## 1974 2835119
## 1975 2835119
## 1976 2835119
## 1977 2835119
## 1978 2835119
## 1979 2835119
## 1980 2835119
## 1981 2835119
## 1982 2835119
## 1983 2795481
## 1984 2795481
## 1985 2795481
## 1986 2795481
## 1987 2795481
## 1988 2795481
## 1989 2795481
## 1990 2795481
## 1991 2795481
## 1992 2795481
## 1993 2795481
## 1994 2795481
## 1995 2795481
## 1996 2795481
## 1997 2795481
## 1998 2795481
## 1999 2795481
## 2000 2795481
## 2001 2795481
## 2002 2795481
## 2003 2795481
## 2004 2795481
## 2005 2795481
## 2006 2795481
## 2007 2795481
## 2008 2795481
## 2009 2795481
## 2010 2795481
## 2011 2795481
## 2012 2795481
## 2013 2795481
## 2014 2795481
## 2015 2795481
## 2016 2795481
## 2017 2795481
## 2018 2795481
## 2019 2795481
## 2020 2795481
## 2021 2795481
## 2022 2795481
## 2023 2795481
## 2024 2795481
## 2025 2795481
## 2026 2795481
## 2027 2795481
## 2028 2795481
## 2029 2795481
## 2030 2795481
## 2031 2795481
## 2032 2795481
## 2033 2795481
## 2034 2795481
## 2035 2795481
## 2036 2795481
## 2037 2795481
## 2038 2795481
## 2039 2795481
## 2040 2795481
## 2041 2795481
## 2042 2795481
## 2043 2795481
## 2044 2795481
## 2045 2795481
## 2046 2795481
## 2047 2795481
## 2048 2795481
## 2049 2795481
## 2050 2795481
## 2051 2795481
## 2052 2795481
## 2053 2795481
## 2054 2795481
## 2055 2795481
## 2056 2795481
## 2057 2795481
## 2058 2795481
## 2059 3032124
## 2060 3032124
## 2061 3032124
## 2062 3032124
## 2063 3032124
## 2064 3032124
## 2065 3032124
## 2066 3032124
## 2067 3032124
## 2068 3032124
## 2069 3032124
## 2070 3032124
## 2071 3032124
## 2072 3032124
## 2073 3032124
## 2074 3032124
## 2075 3032124
## 2076 3032124
## 2077 3032124
## 2078 3032124
## 2079 3032124
## 2080 3032124
## 2081 3032124
## 2082 3032124
## 2083 3032124
## 2084 3032124
## 2085 3032124
## 2086 3032124
## 2087 3032124
## 2088 3032124
## 2089 3032124
## 2090 3032124
## 2091 3032124
## 2092 3032124
## 2093 3032124
## 2094 3032124
## 2095 3032124
## 2096 3032124
## 2097 3032124
## 2098 3032124
## 2099 3032124
## 2100 3032124
## 2101 3032124
## 2102 3032124
## 2103 3032124
## 2104 3032124
## 2105 3032124
## 2106 3032124
## 2107 3032124
## 2108 3032124
## 2109 3032124
## 2110 3032124
## 2111 3032124
## 2112 3032124
## 2113 3032124
## 2114 3032124
## 2115 3032124
## 2116 3032124
## 2117 3032124
## 2118 3032124
## 2119 3032124
## 2120 3032124
## 2121 2806951
## 2122 2806951
## 2123 2806951
## 2124 2806951
## 2125 2806951
## 2126 2806951
## 2127 2806951
## 2128 2806951
## 2129 2806951
## 2130 2806951
## 2131 2806951
## 2132 2806951
## 2133 2806951
## 2134 2806951
## 2135 2806951
## 2136 2806951
## 2137 2806951
## 2138 2806951
## 2139 2806951
## 2140 2806951
## 2141 2806951
## 2142 2806951
## 2143 2806951
## 2144 2806951
## 2145 2806951
## 2146 2806951
## 2147 2806951
## 2148 2806951
## 2149 2806951
## 2150 2806951
## 2151 2806951
## 2152 2806951
## 2153 2806951
## 2154 2806951
## 2155 2806951
## 2156 2806951
## 2157 2806951
## 2158 2806951
## 2159 2806951
## 2160 2806951
## 2161 2806951
## 2162 2806951
## 2163 2806951
## 2164 2803168
## 2165 2803168
## 2166 2803168
## 2167 2803168
## 2168 2803168
## 2169 2803168
## 2170 2803168
## 2171 2803168
## 2172 2803168
## 2173 2803168
## 2174 2803168
## 2175 2803168
## 2176 2803168
## 2177 2803168
## 2178 2803168
## 2179 2803168
## 2180 2803168
## 2181 2803168
## 2182 2803168
## 2183 2803168
## 2184 2803168
## 2185 2803168
## 2186 2803168
## 2187 2803168
## 2188 2803168
## 2189 2803168
## 2190 2803168
## 2191 2803168
## 2192 2803168
## 2193 2803168
## 2194 2803168
## 2195 2803168
## 2196 2803168
## 2197 2803168
## 2198 2803168
## 2199 2803168
## 2200 2803168
## 2201 2803168
## 2202 2803168
## 2203 2803168
## 2204 2803168
## 2205 2803168
## 2206 2803168
## 2207 2803168
## 2208 2803168
## 2209 2803168
## 2210 2803168
## 2211 2803168
## 2212 2803168
## 2213 2803168
## 2214 2803168
## 2215 2803168
## 2216 2803168
## 2217 2803168
## 2218 2803168
## 2219 2803168
## 2220 2803168
## 2221 2803168
## 2222 2801684
## 2223 2801684
## 2224 2801684
## 2225 2801684
## 2226 2801684
## 2227 2801684
## 2228 2801684
## 2229 2801684
## 2230 2801684
## 2231 2800908
## 2232 2800908
## 2233 2800908
## 2234 2800908
## 2235 2800908
## 2236 2800908
## 2237 2800908
## 2238 2800908
## 2239 2800908
## 2240 2800908
## 2241 2800908
## 2242 2800908
## 2243 2800908
## 2244 2800908
## 2245 2800908
## 2246 2800908
## 2247 2800908
## 2248 2800908
## 2249 2800908
## 2250 2800908
## 2251 2800908
## 2252 2800908
## 2253 2800908
## 2254 2800908
## 2255 2800908
## 2256 2800908
## 2257 2800908
## 2258 2800908
## 2259 2800908
## 2260 2800908
## 2261 2800908
## 2262 2800908
## 2263 2800908
## 2264 2800908
## 2265 2800908
## 2266 2800908
## 2267 2800908
## 2268 2800908
## 2269 2800908
## 2270 2800908
## 2271 2800908
## 2272 2800908
## 2273 2800908
## 2274 2800908
## 2275 2800908
## 2276 2800908
## 2277 2800908
## 2278 2800908
## 2279 2800908
## 2280 2800908
## 2281 2800908
## 2282 2800908
## 2283 2800908
## 2284 2800908
## 2285 2800908
## 2286 2800908
## 2287 2800908
## 2288 2800908
## 2289 2800908
## 2290 2800908
## 2291 2800908
## 2292 2800908
## 2293 2800908
## 2294 2800908
## 2295 2800908
## 2296 2800908
## 2297 2800908
## 2298 2800908
## 2299 2800908
## 2300 2800908
## 2301 2800908
## 2302 2800908
## 2303 2800908
## 2304 2800908
## 2305 2800908
## 2306 2800908
## 2307 2800908
## 2308 2800908
## 2309 2800908
## 2310 2800908
## 2311 2800908
## 2312 2800908
## 2313 2800908
## 2314 2800908
## 2315 2800908
## 2316 2800908
## 2317 2800908
## 2318 2800908
## 2319 2800908
## 2320 2800908
## 2321 2800908
## 2322 2800908
## 2323 2800908
## 2324 2800908
## 2325 2800908
## 2326 2800908
## 2327 2800908
## 2328 2800908
## 2329 2800908
## 2330 2800908
## 2331 2800908
## 2332 2800908
## 2333 2812129
## 2334 2812129
## 2335 2812129
## 2336 2812129
## 2337 2812129
## 2338 2812129
## 2339 2812129
## 2340 2812129
## 2341 2812129
## 2342 2812129
## 2343 2812129
## 2344 2812129
## 2345 2812129
## 2346 2812129
## 2347 2812129
## 2348 2812129
## 2349 2812129
## 2350 2812129
## 2351 2812129
## 2352 2812129
## 2353 2812129
## 2354 2812129
## 2355 2812129
## 2356 2812129
## 2357 2812129
## 2358 2812129
## 2359 2812129
## 2360 2812129
## 2361 2812129
## 2362 2813626
## 2363 2813626
## 2364 2813626
## 2365 2813626
## 2366 2813626
## 2367 2813626
## 2368 2813626
## 2369 2776463
## 2370 2776463
## 2371 2776463
## 2372 2776463
## 2373 2776463
## 2374 2776463
## 2375 2776463
## 2376 2776463
## 2377 2776463
## 2378 2776463
## 2379 2776463
## 2380 2776463
## 2381 2776463
## 2382 2776463
## 2383 2776463
## 2384 2776463
## 2385 2776463
## 2386 2776463
## 2387 2776463
## 2388 2776463
## 2389 2776463
## 2390 2776463
## 2391 2776463
## 2392 2776463
## 2393 2776463
## 2394 2776463
## 2395 2776463
## 2396 2776463
## 2397 2776463
## 2398 2776463
## 2399 2776463
## 2400 2776463
## 2401 2776463
## 2402 2776463
## 2403 3290379
## 2404 3290379
## 2405 3290379
## 2406 3290379
## 2407 3290379
## 2408 3290379
## 2409 3290379
## 2410 3290379
## 2411 3290379
## 2412 3290379
## 2413 3290379
## 2414 3290379
## 2415 3290379
## 2416 3290379
## 2417 3290379
## 2418 3290379
## 2419 2835511
## 2420 2835511
## 2421 2835511
## 2422 2835511
## 2423 2835511
## 2424 2835511
## 2425 2835511
## 2426 2835511
## 2427 2835511
## 2428 2835511
## 2429 2835511
## 2430 2835511
## 2431 2835511
## 2432 2835511
## 2433 2835511
## 2434 2835511
## 2435 2835511
## 2436 2835511
## 2437 2835511
## 2438 2835511
## 2439 2835511
## 2440 2835511
## 2441 2835511
## 2442 2835511
## 2443 2835511
## 2444 2835511
## 2445 2835511
## 2446 2835511
## 2447 2835511
## 2448 2835511
## 2449 2835511
## 2450 2835511
## 2451 2835511
## 2452 2835511
## 2453 2835511
## 2454 2795489
## 2455 2795489
## 2456 2795489
## 2457 2795489
## 2458 2795489
## 2459 2795489
## 2460 2795489
## 2461 2795489
## 2462 2795489
## 2463 2795489
## 2464 2795489
## 2465 2795489
## 2466 2795489
## 2467 2795489
## 2468 2795489
## 2469 2795489
## 2470 3032124
## 2471 3032124
## 2472 3032124
## 2473 3032124
## 2474 3032124
## 2475 3032124
## 2476 3032124
## 2477 3032124
## 2478 3032124
## 2479 3032124
## 2480 3032124
## 2481 3032124
## 2482 3032124
## 2483 3032124
## 2484 3032124
## 2485 3032124
## 2486 3032124
## 2487 3032124
## 2488 3032124
## 2489 3032124
## 2490 3032124
## 2491 3032124
## 2492 3032124
## 2493 3032124
## 2494 3032124
## 2495 3032124
## 2496 3032124
## 2497 3032124
## 2498 3032124
## 2499 3032124
## 2500 3032124
## 2501 3032124
## 2502 3032124
## 2503 3032124
## 2504 3032124
## 2505 3032124
## 2506 3032124
## 2507 3032124
## 2508 3032124
## 2509 3032124
## 2510 3032124
## 2511 3032124
## 2512 3032124
## 2513 3098293
## 2514 3098293
## 2515 3098293
## 2516 3098293
## 2517 3098293
## 2518 3098293
## 2519 3098293
## 2520 3098293
## 2521 3098293
## 2522 3098293
## 2523 3098293
## 2524 3098293
## 2525 3098293
## 2526 3098293
## 2527 3098293
## 2528 3098293
## 2529 3098293
## 2530 3098293
## 2531 3098293
## 2532 3098293
## 2533 3098293
## 2534 3098293
## 2535 3098293
## 2536 3198059
## 2537 3198059
## 2538 3198059
## 2539 3198059
## 2540 3198059
## 2541 3198059
## 2542 3198059
## 2543 3198059
## 2544 3198059
## 2545 3198059
## 2546 3198059
## 2547 3198059
## 2548 3198295
## 2549 3198295
## 2550 3198295
## 2551 3198295
## 2552 3198295
## 2553 3198295
## 2554 3198295
## 2555 3198295
## 2556 3198295
## 2557 3198295
## 2558 3198295
## 2559 3198295
## 2560 3198295
## 2561 3198295
## 2562 2800908
## 2563 2800908
## 2564 2800908
## 2565 2800908
## 2566 2800908
## 2567 2800908
## 2568 2800908
## 2569 2800908
## 2570 2800688
## 2571 2800688
## 2572 2800688
## 2573 2800688
## 2574 2800688
## 2575 2801684
## 2576 2801684
## 2577 2801684
## 2578 2801684
## 2579 2801684
## 2580 2801684
## 2581 2801684
## 2582 2801684
## 2583 2801684
## 2584 2801684
## 2585 2801684
## 2586 2801684
## 2587 2801684
## 2588 2801684
## 2589 2801684
## 2590 2801684
## 2591 2801684
## 2592 2801684
## 2593 2810201
## 2594 2810201
## 2595 2810201
## 2596 2810201
## 2597 2810201
## 2598 2810201
## 2599 2810201
## 2600 2810201
## 2601 2812129
## 2602 2812129
## 2603 2812129
## 2604 2809791
## 2605 2809791
## 2606 2809791
## 2607 2813626
## 2608 2813626
## 2609 2813626
## 2610 2813626
## 2611 2813626
## 2612 2813626
## 2613 2813626
## 2614 2813626
## 2615 2813626
## 2616 2813626
## 2617 2813626
## 2618 2813626
## 2619 2813626
## 2620 2813626
## 2621 2813626
## 2622 2813626
## 2623 2813626
## 2624 2813626
## 2625 2813626
## 2626 2813626
## 2627 2813626
## 2628 2813626
## 2629 2813626
## 2630 2813626
## 2631 2813626
## 2632 2813626
## 2633 3032124
## 2634 2803203
## 2635 2803203
## 2636 2803203
## 2637 2803203
## 2638 2803203
## 2639 2803203
## 2640 2803203
## 2641 2803203
## 2642 2803203
## 2643 2778862
## 2644 2778862
## 2645 2778862
## 2646 2778862
## 2647 2778862
## 2648 2778862
## 2649 2778862
## 2650 2778862
## 2651 2778862
## 2652 2778862
## 2653 2778862
## 2654 2778862
## 2655 2778862
## 2656 2778862
## 2657 2778862
## 2658 3290398
## 2659 3290398
## 2660 3290398
## 2661 3290398
## 2662 3290398
## 2663 3290398
## 2664 3290398
## 2665 3290398
## 2666 3290398
## 2667 3290398
## 2668 3290398
## 2669 3290398
## 2670 3290398
## 2671 3290398
## 2672 3290398
## 2673 3290398
## 2674 3290398
## 2675 3290401
## 2676 3290401
## 2677 3290401
## 2678 3290401
## 2679 3290401
## 2680 3290401
## 2681 3290401
## 2682 3290401
## 2683 3290401
## 2684 3290401
## 2685 3290401
## 2686 3290401
## 2687 3290401
## 2688 3290401
## 2689 3290401
## 2690 3290401
## 2691 3290401
## 2692 3290401
## 2693 3290401
## 2694 2835443
## 2695 2835443
## 2696 2835443
## 2697 2835443
## 2698 2835443
## 2699 2835443
## 2700 2835443
## 2701 2835443
## 2702 2835443
## 2703 2835443
## 2704 2835443
## 2705 2835443
## 2706 2835443
## 2707 2835443
## 2708 2835443
## 2709 2835443
## 2710 2835443
## 2711 2835443
## 2712 2835443
## 2713 2835443
## 2714 2835443
## 2715 2835443
## 2716 2835443
## 2717 2835443
## 2718 2835443
## 2719 2835443
## 2720 2835443
## 2721 2835443
## 2722 2835443
## 2723 2835443
## 2724 2835443
## 2725 2835443
## 2726 2835443
## 2727 2835443
## 2728 2835443
## 2729 2835443
## 2730 2835443
## 2731 2835443
## 2732 2835443
## 2733 2835443
## 2734 2835443
## 2735 2835443
## 2736 2792167
## 2737 2792167
## 2738 2792167
## 2739 2792167
## 2740 2795475
## 2741 2795475
## 2742 2795475
## 2743 2795475
## 2744 2795475
## 2745 2795475
## 2746 2792167
## 2747 2792167
## 2748 2792167
## 2749 2792167
## 2750 2795475
## 2751 2795475
## 2752 2795475
## 2753 2795475
## 2754 2792167
## 2755 2792167
## 2756 2792167
## 2757 2792167
## 2758 2792167
## 2759 2795475
## 2760 2795475
## 2761 2795475
## 2762 2795475
## 2763 2792167
## 2764 2792167
## 2765 2792167
## 2766 2792167
## 2767 2792167
## 2768 2795475
## 2769 2795475
## 2770 2795475
## 2771 2795475
## 2772 2792167
## 2773 2792167
## 2774 2792167
## 2775 2792167
## 2776 2792167
## 2777 2795475
## 2778 2795475
## 2779 2795475
## 2780 2795489
## 2781 2795489
## 2782 2795489
## 2783 2795489
## 2784 2795489
## 2785 2795489
## 2786 2795489
## 2787 2795489
## 2788 2795489
## 2789 2795489
## 2790 2795489
## 2791 2795489
## 2792 2795489
## 2793 2795489
## 2794 2795489
## 2795 2795489
## 2796 2795489
## 2797 2795489
## 2798 2795489
## 2799 2795489
## 2800 2795489
## 2801 2795489
## 2802 2795489
## 2803 2795489
## 2804 2795489
## 2805 2795489
## 2806 2795489
## 2807 2795489
## 2808 2795489
## 2809 2795489
## 2810 2795489
## 2811 2795489
## 2812 3032124
## 2813 3032124
## 2814 3032124
## 2815 3032124
## 2816 3032124
## 2817 3032124
## 2818 3032124
## 2819 3032124
## 2820 3032124
## 2821 3032124
## 2822 3032124
## 2823 3032124
## 2824 3032124
## 2825 3032124
## 2826 3032124
## 2827 3032124
## 2828 3032124
## 2829 3032124
## 2830 3032124
## 2831 3032124
## 2832 3032124
## 2833 3032124
## 2834 3032124
## 2835 3032124
## 2836 3032124
## 2837 3032124
## 2838 3032124
## 2839 3032124
## 2840 3032124
## 2841 3032124
## 2842 3032124
## 2843 3032124
## 2844 3032124
## 2845 3032124
## 2846 3032124
## 2847 3032124
## 2848 3032124
## 2849 3032124
## 2850 3032124
## 2851 3032124
## 2852 3032124
## 2853 3032124
## 2854 3032124
## 2855 3097599
## 2856 3097599
## 2857 3097599
## 2858 3097599
## 2859 3097599
## 2860 3097599
## 2861 3097599
## 2862 3097599
## 2863 3097599
## 2864 3097599
## 2865 3097599
## 2866 3097599
## 2867 3097599
## 2868 3097599
## 2869 3097599
## 2870 3097599
## 2871 3097599
## 2872 3097599
## 2873 3097599
## 2874 3097599
## 2875 3097599
## 2876 3097599
## 2877 3097599
## 2878 3097599
## 2879 3097599
## 2880 3097599
## 2881 3097599
## 2882 3097599
## 2883 3097599
## 2884 3097599
## 2885 3097599
## 2886 3097599
## 2887 3097599
## 2888 3097599
## 2889 3097599
## 2890 3097599
## 2891 3097599
## 2892 3097599
## 2893 3097599
## 2894 3097599
## 2895 3097599
## 2896 3097599
## 2897 3097599
## 2898 3097599
## 2899 3097599
## 2900 3097599
## 2901 3097599
## 2902 3097599
## 2903 3097599
## 2904 3097599
## 2905 3196212
## 2906 3196212
## 2907 3196212
## 2908 3196212
## 2909 3196212
## 2910 3196212
## 2911 3196212
## 2912 3196212
## 2913 3196212
## 2914 3196212
## 2915 3196212
## 2916 3196212
## 2917 3196212
## 2918 3196212
## 2919 3196212
## 2920 3196212
## 2921 3196212
## 2922 3196212
## 2923 3196212
## 2924 3196212
## 2925 3196212
## 2926 3196212
## 2927 3196212
## 2928 3196212
## 2929 3196212
## 2930 3196212
## 2931 3196212
## 2932 3196212
## 2933 3196212
## 2934 2812126
## 2935 2812126
## 2936 2812126
## 2937 2812126
## 2938 2812126
## 2939 2803203
## 2940 2803203
## 2941 2803203
## 2942 2803203
## 2943 2803203
## 2944 2810210
## 2945 2810210
## 2946 2810210
## 2947 2810210
## 2948 2810210
## 2949 2800915
## 2950 2800915
## 2951 2800915
## 2952 2813653
## 2953 2813653
## 2954 2813653
## 2955 2806891
## 2956 2806891
## 2957 2806891
## 2958 2806891
## 2959 2806891
## 2960 2801664
## 2961 2801664
## 2962 2801664
## 2963 2801664
## 2964 2810210
## 2965 2810210
## 2966 2810210
## 2967 2812126
## 2968 2812126
## 2969 2812126
## 2970 2812126
## 2971 2800915
## 2972 2800915
## 2973 2800915
## 2974 2800915
## 2975 2800915
## 2976 2806891
## 2977 2806891
## 2978 2806891
## 2979 2806891
## 2980 2806891
## 2981 2813653
## 2982 2813653
## 2983 2813653
## 2984 2812126
## 2985 2812126
## 2986 2812126
## 2987 2812126
## 2988 2803203
## 2989 2803203
## 2990 2803203
## 2991 2803203
## 2992 2810210
## 2993 2810210
## 2994 2810210
## 2995 2810210
## 2996 2810210
## 2997 2800915
## 2998 2800915
## 2999 2800915
## 3000 2800915
## 3001 2800915
## 3002 2806891
## 3003 2806891
## 3004 2806891
## 3005 2801664
## 3006 2801664
## 3007 2801664
## 3008 2801664
## 3009 2801664
## 3010 2812126
## 3011 2812126
## 3012 2812126
## 3013 2812126
## 3014 2812126
## 3015 2812126
## 3016 2812126
## 3017 2812126
## 3018 2812126
## 3019 2812126
## 3020 2803203
## 3021 2803203
## 3022 2803203
## 3023 2803203
## 3024 2803203
## 3025 2810210
## 3026 2810210
## 3027 2800915
## 3028 2800915
## 3029 2800915
## 3030 2806891
## 3031 2806891
## 3032 2806891
## 3033 2801664
## 3034 2801664
## 3035 2801664
## 3036 2801664
## 3037 2801664
## 3038 2801664
## 3039 2801664
## 3040 2801664
## 3041 2801664
## 3042 2801664
## 3043 2801664
## 3044 2801664
## 3045 2801664
## 3046 2801664
## 3047 2801664
## 3048 2801664
## 3049 2801664
## 3050 2801664
## 3051 2801664
## 3052 2801664
## 3053 2801664
## 3054 2803203
## 3055 2803203
## 3056 2803203
## 3057 2803203
## 3058 2803203
## 3059 2803203
## 3060 2812126
## 3061 2812126
## 3062 2812126
## 3063 2812126
## 3064 2812126
## 3065 2812126
## 3066 2812126
## 3067 2812126
## 3068 2810210
## 3069 2810210
## 3070 2810210
## 3071 2810210
## 3072 2812126
## 3073 2812126
## 3074 2812126
## 3075 2812126
## 3076 2812126
## 3077 2812126
## 3078 2801664
## 3079 2801664
## 3080 2801664
## 3081 2801664
## 3082 2801664
## 3083 2801664
## 3084 2801664
## 3085 2801664
## 3086 2801664
## 3087 2801664
## 3088 2801664
## 3089 2801664
## 3090 2801664
## 3091 2801664
## 3092 2806891
## 3093 2806891
## 3094 2806891
## 3095 2806891
## 3096 2813653
## 3097 2813653
## 3098 2813653
## 3099 2813653
## 3100 2813653
## 3101 2813653
## 3102 2813653
## 3103 2813653
## 3104 2803203
## 3105 2803203
## 3106 2803203
## 3107 2803203
## 3108 2803203
## 3109 2803203
## 3110 2803203
## 3111 2803203
## 3112 2803203
## 3113 2803203
## 3114 2803203
## 3115 2803203
## 3116 2803203
## 3117 2803203
## 3118 2800915
## 3119 2800915
## 3120 2800915
## 3121 2800915
## 3122 2800915
## 3123 2800915
## 3124 2800915
## 3125 2800915
## 3126 2800915
## 3127 2800915
## 3128 2800915
## 3129 2800915
## 3130 2800915
## 3131 2800915
## 3132 2800915
## 3133 2800915
## 3134 2800915
## 3135 2800915
## 3136 2800915
## 3137 2810210
## 3138 2810210
## 3139 2810210
## 3140 2810210
## 3141 2810210
## 3142 2810210
## 3143 2810210
## 3144 2810210
## 3145 2810210
## 3146 2810210
## 3147 2810210
## 3148 2810210
## 3149 2810210
## 3150 2810210
## 3151 2810210
## 3152 2810210
## 3153 2810210
## 3154 2810210
## 3155 2777539
## 3156 2777539
## 3157 2777539
## 3158 2777539
## 3159 2777539
## 3160 2776436
## 3161 2776436
## 3162 2776436
## 3163 2776436
## 3164 2776436
## 3165 2777539
## 3166 2777539
## 3167 2777539
## 3168 2777539
## 3169 2777539
## 3170 2776436
## 3171 2776436
## 3172 2776436
## 3173 2776436
## 3174 2776436
## 3175 2777539
## 3176 2777539
## 3177 2777539
## 3178 2777539
## 3179 2777539
## 3180 2776436
## 3181 2776436
## 3182 2776436
## 3183 2776436
## 3184 2777539
## 3185 2777539
## 3186 2777539
## 3187 2776436
## 3188 2776436
## 3189 2776436
## 3190 2776436
## 3191 2776436
## 3192 2776436
## 3193 2776436
## 3194 2776436
## 3195 2776436
## 3196 2776436
## 3197 2776436
## 3198 2776436
## 3199 2776436
## 3200 2776436
## 3201 2776436
## 3202 2776436
## 3203 2776436
## 3204 2776436
## 3205 2776436
## 3206 2776436
## 3207 2776436
## 3208 2776436
## 3209 2776436
## 3210 2776436
## 3211 2776436
## 3212 2776436
## 3213 2776436
## 3214 2776436
## 3215 2776436
## 3216 2776436
## 3217 2776436
## 3218 2776436
## 3219 2776436
## 3220 2776436
## 3221 2776436
## 3222 2776436
## 3223 2776436
## 3224 2777539
## 3225 2777539
## 3226 2776436
## 3227 2776436
## 3228 2776436
## 3229 2776436
## 3230 2776436
## 3231 2776436
## 3232 2776436
## 3233 2776436
## 3234 2776436
## 3235 2776436
## 3236 2776436
## 3237 2776436
## 3238 2776436
## 3239 2776436
## 3240 2776436
## 3241 2776436
## 3242 2776436
## 3243 2776436
## 3244 2776436
## 3245 2776436
## 3246 2776436
## 3247 2776436
## 3248 2776436
## 3249 2776436
## 3250 2776436
## 3251 2835443
## 3252 2835443
## 3253 2835443
## 3254 2835443
## 3255 2835443
## 3256 2835443
## 3257 2835443
## 3258 2835443
## 3259 2835443
## 3260 2835443
## 3261 2835443
## 3262 2835443
## 3263 2810201
## 3264 2810201
## 3265 2810201
## 3266 2810201
## 3267 2810201
## 3268 2810201
## 3269 2810201
## 3270 2810201
## 3271 2810201
## 3272 2810201
## 3273 2810201
## 3274 2810201
## 3275 2810201
## 3276 2810201
## 3277 2813669
## 3278 2813669
## 3279 2813669
## 3280 2813669
## 3281 2813669
## 3282 2813669
## 3283 2813669
## 3284 2813669
## 3285 2813669
## 3286 2813669
## 3287 2813669
## 3288 2813669
## 3289 3032121
## 3290 3032121
## 3291 3032121
## 3292 3032121
## 3293 3032121
## 3294 3032121
## 3295 3032121
## 3296 3032121
## 3297 3032121
## 3298 3032121
## 3299 3032121
## 3300 3032121
## 3301 3032121
## 3302 3032121
## 3303 3032121
## 3304 3032121
## 3305 3032121
## 3306 3032121
## 3307 3032121
## 3308 3032121
## 3309 3032121
## 3310 2806891
## 3311 2806891
## 3312 2806891
## 3313 2806891
## 3314 2842386
## 3315 2842386
## 3316 2842386
## 3317 2842386
## 3318 2795475
## 3319 2795475
## 3320 2795475
## 3321 2795475
## 3322 2795475
## 3323 2795475
## 3324 2795475
## 3325 2812126
## 3326 2812126
## 3327 2812126
## 3328 2812126
## 3329 2812126
## 3330 2812126
## 3331 2795481
## 3332 2795481
## 3333 2795481
## 3334 2801522
## 3335 2801522
## 3336 2801522
## 3337 2801522
## 3338 2801522
## 3339 2801522
## 3340 3097587
## 3341 3097587
## 3342 3097587
## 3343 3097587
## 3344 3097587
## 3345 3097587
## 3346 3097587
## 3347 3097587
## 3348 3097587
## 3349 3097587
## 3350 3097587
## 3351 3097587
## 3352 3097587
## 3353 3097587
## 3354 3097587
## 3355 3097587
## 3356 3097587
## 3357 3097587
## 3358 3097587
## 3359 3097587
## 3360 3097587
## 3361 3097587
## 3362 3097587
## 3363 3097587
## 3364 3097587
## 3365 3097587
## 3366 3097587
## 3367 3097587
## 3368 3097587
## 3369 3097587
## 3370 3097587
## 3371 3097587
## 3372 3097587
## 3373 3097587
## 3374 3097587
## 3375 3097587
## 3376 3097587
## 3377 3097587
## 3378 3097587
## 3379 3097587
## 3380 3097587
## 3381 3097587
## 3382 3097587
## 3383 3097587
## 3384 3097587
## 3385 3097587
## 3386 3097587
## 3387 3097587
## 3388 3097587
## 3389 3097587
## 3390 3097587
## 3391 3097587
## 3392 3097587
## 3393 3097587
## 3394 3196220
## 3395 3196220
## 3396 3196220
## 3397 3196220
## 3398 3196220
## 3399 3196220
## 3400 3196220
## 3401 3196220
## 3402 3196220
## 3403 3196220
## 3404 3196220
## 3405 3196220
## 3406 3196220
## 3407 3196220
## 3408 3196220
## 3409 3196220
## 3410 3196220
## 3411 3196220
## 3412 3196220
## 3413 3196220
## 3414 3196220
## 3415 3196220
## 3416 3196220
## 3417 3196220
## 3418 3196220
## 3419 3196220
## 3420 3196220
## 3421 3196220
## 3422 3196220
## 3423 3196220
## 3424 3196220
## 3425 3196220
## 3426 3196220
## 3427 3196220
## 3428 3196220
## 3429 3196220
## 3430 3196220
## 3431 3196220
## 3432 3196220
## 3433 3196220
## 3434 3196220
## 3435 3196220
## 3436 3196220
## 3437 3196220
## 3438 3196220
## 3439 3196220
## 3440 3196220
## 3441 3196220
## 3442 3196220
## 3443 3196220
## 3444 3196220
## 3445 3196220
## 3446 3196220
## 3447 3196220

Don’t see any spatial dependencies.

Wing2Body

Removing Torn Wings

data_long = remove_torn_wings(data_long)

Winter 2020 vs. other dates

data_long$compare_dates <- -1
data_long$compare_dates[data_long$months_since_start==81] <- 1

compare_dates_model <- glm(wing2body~compare_dates + pophost_binom*sex_binom, data=data_long)

tidy_regression(compare_dates_model, is_color=FALSE)
## glm wing2body ~ compare_dates + pophost_binom * sex_binom data_long 
## AIC:  -9465.523 
## (Intercept)              coeff:  0.7267321   Pr(>|t|):  0 *
## compare_dates            coeff:  -0.0033779  Pr(>|t|):  3.509448e-09 *
## pophost_binom            coeff:  0.003761    Pr(>|t|):  4.844321e-15 *
## sex_binom                coeff:  -0.0018976  Pr(>|t|):  5.205055e-05 *
## pophost_binom:sex_binom  coeff:  0.0015475   Pr(>|t|):  0.0009182697 *

Yes, bugs from this collection date have detectably smaller wing2body ratios on average than other collection dates, even when controlling for sex and host plant.

Binomial Regressions

What effects wing2body ratio? sex? host plant? month of the year? months since start?

data_long$wing2body_c = (data_long$wing2body-mean(data_long$wing2body, na.rm=TRUE))
data_long$month_of_year_c = (data_long$month_of_year-mean(data_long$month_of_year, na.rm=TRUE))
data_long$months_since_start_c = (data_long$months_since_start-mean(data_long$months_since_start, na.rm=TRUE))
data<-data.frame(R=data_long$wing2body_c, # centered
                 A=data_long$sex_binom, # sex
                 B=data_long$pophost_binom, # host
                 C=data_long$month_of_year_c, 
                 D=data_long$months_since_start_c) 

model_script = paste0(source_path,"generic models-gaussian glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]      [,4]      
## AICs   -9467.881 -9466.061 -9465.893 -9464.071 
## models 11        14        15        17        
## probs  0.5187271 0.2088485 0.1919931 0.07721226
## 
## m11  glm(formula = R ~ A * B + C, family = gaussian, data = data)
## m14  glm(formula = R ~ A * B + A * C, family = gaussian, data = data)
## m15  glm(formula = R ~ A * B + B * C, family = gaussian, data = data)
## m17  glm(formula = R ~ A * B + A * C + B * C, family = gaussian, data = data)
anova(m15, m17, test="Chisq") # Adding A*C does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + B * C
## Model 2: R ~ A * B + A * C + B * C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1      1878    0.71999                       
## 2      1877    0.71992  1 6.8097e-05   0.6735
anova(m11, m15, test="Chisq") # Adding B*C does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + C
## Model 2: R ~ A * B + B * C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1      1879    0.72000                       
## 2      1878    0.71999  1 4.6482e-06   0.9123
anova(m8, m11, test="Chisq") # Adding C does improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B
## Model 2: R ~ A * B + C
##   Resid. Df Resid. Dev Df Deviance  Pr(>Chi)    
## 1      1880    0.73441                          
## 2      1879    0.72000  1 0.014412 8.635e-10 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
m = glm(wing2body_c ~ sex_binom*pophost_binom + month_of_year_c, data=data_long, family=gaussian) 
tidy_regression(m, is_color=FALSE) # m11
## glm wing2body_c ~ sex_binom * pophost_binom + month_of_year_c gaussian data_long 
## AIC:  -9467.881 
## (Intercept)              coeff:  -0.0006363  Pr(>|t|):  0.1790137
## sex_binom                coeff:  -0.0017895  Pr(>|t|):  0.0001285062 *
## pophost_binom            coeff:  0.0039735   Pr(>|t|):  5.304922e-17 *
## month_of_year_c          coeff:  0.0008666   Pr(>|t|):  1.049966e-09 *
## sex_binom:pophost_binom  coeff:  0.0017112   Pr(>|t|):  0.000249278 *
  • Males have larger wing2body ratios.
  • K.elegans bugs have larger wing2body ratios.
  • Females on K.elegans have longer wings than C.corindum females.
  • wing2body ratios are increasing moderately towards the present
temp = data_long %>% 
  filter(!is.na(wing2body_c))
check_spatial_dependencies(m, temp, temp$long, temp$lat, zone = 16, cutoff=10000, is_glm=TRUE)
## Warning in showSRID(uprojargs, format = "PROJ", multiline = "NO", prefer_proj
## = prefer_proj): Discarded datum Unknown based on WGS84 ellipsoid in Proj4
## definition
## Warning in proj4string(res): CRS object has comment, which is lost in output
## [1] "m"

##         pophost      population sex beak thorax  wing  body     month year
## 1     K.elegans        Ft.Myers   M 5.24   2.86  7.98 10.92     April 2013
## 2     K.elegans        Ft.Myers   M 5.72   3.09  8.27 11.58     April 2013
## 3     K.elegans        Ft.Myers   M 5.81   3.10  8.72 11.54     April 2013
## 4     K.elegans        Ft.Myers   M 4.60   2.51  6.57  8.95     April 2013
## 5     K.elegans        Ft.Myers   M 5.75   2.97  8.38 11.38     April 2013
## 6     K.elegans        Ft.Myers   M 5.42   2.96  7.85 10.80     April 2013
## 7     K.elegans        Ft.Myers   M 5.64   2.87  8.02 10.67     April 2013
## 8     K.elegans        Ft.Myers   M 5.22   2.60  7.36 10.14     April 2013
## 9     K.elegans        Ft.Myers   M 5.17   2.87  7.81 10.42     April 2013
## 10    K.elegans        Ft.Myers   F 6.99   3.78  9.93 13.50     April 2013
## 11    K.elegans        Ft.Myers   F 7.38   3.35  9.07 12.45     April 2013
## 12    K.elegans        Ft.Myers   M 5.09   2.81  7.77 10.45     April 2013
## 13    K.elegans        Ft.Myers   M 5.55   3.19  8.57 11.57     April 2013
## 14    K.elegans        Ft.Myers   M 5.81   3.33  8.51 11.58     April 2013
## 16    K.elegans        Ft.Myers   M 5.73   3.05  8.09 10.73     April 2013
## 17    K.elegans        Ft.Myers   M 5.26   3.05  8.09 10.96     April 2013
## 18    K.elegans        Ft.Myers   F 6.41   3.74 10.26 13.27     April 2013
## 19    K.elegans        Ft.Myers   M 5.50   3.05  8.45 11.37     April 2013
## 20    K.elegans        Ft.Myers   F 6.12   3.16  8.73 11.83     April 2013
## 21    K.elegans        Ft.Myers   F 7.99   3.47 10.02 13.48     April 2013
## 22    K.elegans        Ft.Myers   M 5.24   3.05  7.58 10.45     April 2013
## 23    K.elegans        Ft.Myers   F 7.29   3.49  9.94 13.33     April 2013
## 24    K.elegans        Ft.Myers   M 5.66   2.83  7.67 10.51     April 2013
## 25    K.elegans        Ft.Myers   F 7.87   3.52  9.79 13.35     April 2013
## 26    K.elegans        Ft.Myers   M 5.27   2.80  7.89 10.55     April 2013
## 104  C.corindum       Homestead   M 5.45   2.66  5.64  8.48       May 2013
## 105  C.corindum       Homestead   F 7.15   3.10  8.35 11.93       May 2013
## 106  C.corindum       Homestead   M 5.94   3.27  8.92 12.12       May 2013
## 107  C.corindum       Homestead   F 6.45   3.21  8.71 11.85       May 2013
## 109  C.corindum       Homestead   F 7.51   3.16  9.01 12.33       May 2013
## 110  C.corindum       Homestead   M 5.83   3.22  8.59 12.39       May 2013
## 111  C.corindum       Homestead   M 5.08   2.90  8.13 11.20       May 2013
## 112  C.corindum       Homestead   M 5.61   3.19  8.76 11.72       May 2013
## 114  C.corindum       Homestead   M 5.61   3.45  8.45 11.49       May 2013
## 141  C.corindum       Key_Largo   M 5.86   2.84  7.99 11.25     April 2013
## 142  C.corindum       Key_Largo   M 6.69   3.14  8.41 11.48     April 2013
## 143  C.corindum       Key_Largo   F 9.25   3.95  9.99 13.55     April 2013
## 144  C.corindum       Key_Largo   M 6.43   3.18  8.61 11.57     April 2013
## 146  C.corindum       Key_Largo   M 6.77   3.41  8.70 11.63     April 2013
## 147  C.corindum       Key_Largo   F 7.83   3.68  9.78 13.31     April 2013
## 148  C.corindum       Key_Largo   M 5.98   3.16  9.40 12.50     April 2013
## 149  C.corindum       Key_Largo   M 6.18   2.96  8.21 10.94     April 2013
## 150  C.corindum       Key_Largo   M 5.46   3.25  8.74 11.76     April 2013
## 152  C.corindum       Key_Largo   M 5.14   2.59  7.25  9.64     April 2013
## 153  C.corindum       Key_Largo   M 6.30   3.15  8.50 11.78     April 2013
## 202   K.elegans      Lake_Wales   M 5.42   3.11  7.96 10.93     April 2013
## 203   K.elegans      Lake_Wales   M 5.41   2.58  6.25  9.22     April 2013
## 204   K.elegans      Lake_Wales   M 5.35   3.13  8.25 11.79     April 2013
## 205   K.elegans      Lake_Wales   F 6.78   3.12  9.25 12.07     April 2013
## 206   K.elegans      Lake_Wales   M 5.32   2.71  7.66 10.66     April 2013
## 207   K.elegans      Lake_Wales   M 5.05   2.49  7.04  9.80     April 2013
## 208   K.elegans      Lake_Wales   F 7.63   3.35  9.12 12.38     April 2013
## 209   K.elegans      Lake_Wales   M 5.17   2.76  8.25 11.17     April 2013
## 210   K.elegans      Lake_Wales   M 5.48   2.51  6.23  9.12     April 2013
## 211   K.elegans      Lake_Wales   M 5.19   3.06  7.75 10.76     April 2013
## 213   K.elegans      Lake_Wales   F 6.81   3.49  9.76 13.51     April 2013
## 214   K.elegans      Lake_Wales   M 5.02   2.80  7.27 10.41     April 2013
## 215   K.elegans      Lake_Wales   F 7.56   3.20  8.07 11.65     April 2013
## 217   K.elegans      Lake_Wales   M 5.47   3.08  7.38 10.46     April 2013
## 219   K.elegans      Lake_Wales   F 6.18   2.91  7.77 11.11     April 2013
## 221   K.elegans      Lake_Wales   M 5.03   2.62  7.19  9.84     April 2013
## 222   K.elegans      Lake_Wales   M 5.68   2.79  7.41 10.24     April 2013
## 223   K.elegans      Lake_Wales   M 5.60   3.32  8.64 11.70     April 2013
## 224   K.elegans      Lake_Wales   M 5.28   2.98  8.16 11.12     April 2013
## 225   K.elegans      Lake_Wales   M 5.50   2.83  8.09 10.65     April 2013
## 226   K.elegans      Lake_Wales   F 6.47   3.02  8.00 11.03     April 2013
## 228   K.elegans      Lake_Wales   M 5.28   3.17  8.68 11.62     April 2013
## 229   K.elegans      Lake_Wales   M 5.53   3.14  8.19 11.18     April 2013
## 230   K.elegans      Lake_Wales   M 5.56   2.98  7.89 10.90     April 2013
## 837  C.corindum       Key_Largo   M 6.24   3.16  8.43 11.53     April 2014
## 839  C.corindum       Key_Largo   M 6.33   2.94  7.88 10.42     April 2014
## 840  C.corindum       Key_Largo   F 9.10   3.89 10.23 13.93     April 2014
## 841  C.corindum       Key_Largo   F 8.80   3.67 10.09 14.11     April 2014
## 844  C.corindum       Key_Largo   M 5.89   2.85  7.94 10.64     April 2014
## 845  C.corindum       Key_Largo   M 5.43   2.76  7.23  9.99     April 2014
## 847   K.elegans      Lake_Wales   F 7.69   3.35  9.32 12.31     April 2014
## 848   K.elegans      Lake_Wales   M 5.48   2.89  7.73 10.89     April 2014
## 849   K.elegans      Lake_Wales   M 5.67   2.90  8.19 10.88     April 2014
## 850   K.elegans      Lake_Wales   F 7.49   3.23  8.70 12.01     April 2014
## 851   K.elegans      Lake_Wales   F 7.23   3.33  9.08 12.21     April 2014
## 852   K.elegans      Lake_Wales   M 5.64   3.10  8.21 11.37     April 2014
## 853   K.elegans      Lake_Wales   F 6.42   3.67  9.86 13.18     April 2014
## 854   K.elegans      Lake_Wales   M 5.60   3.26  8.33 11.17     April 2014
## 856   K.elegans      Lake_Wales   M 5.63   3.00  8.12 10.91     April 2014
## 857   K.elegans      Lake_Wales   F 6.95   3.07  8.72 11.88     April 2014
## 858   K.elegans      Lake_Wales   M 5.52   3.23  8.52 11.29     April 2014
## 859   K.elegans      Lake_Wales   M 5.19   3.12  7.88 10.94     April 2014
## 860   K.elegans      Lake_Wales   F 7.24   3.27  8.93 12.21     April 2014
## 861   K.elegans      Lake_Wales   F 6.57   2.93  8.39 11.45     April 2014
## 862   K.elegans      Lake_Wales   M 5.33   2.73  7.72 10.52     April 2014
## 863   K.elegans      Lake_Wales   F 6.78   3.29  8.92 11.99     April 2014
## 865   K.elegans      Lake_Wales   M 5.56   2.91  7.63 10.40     April 2014
## 866   K.elegans      Lake_Wales   F 6.38   3.26  8.47 11.94     April 2014
## 867   K.elegans      Lake_Wales   M 5.28   3.03  8.34 11.00     April 2014
## 868   K.elegans      Lake_Wales   F 7.65   3.52  9.26 12.82     April 2014
## 870   K.elegans      Lake_Wales   F 6.62   3.29  8.77 11.71     April 2014
## 871   K.elegans      Lake_Wales   M 5.51   3.04  8.92 11.85     April 2014
## 872   K.elegans      Lake_Wales   F 6.87   3.55  8.72 13.09     April 2014
## 873   K.elegans      Lake_Wales   F 7.66   3.67  9.99 13.62     April 2014
## 874   K.elegans      Lake_Wales   F 6.67   2.94  7.42 10.57     April 2014
## 875   K.elegans      Lake_Wales   M 5.78   3.29  9.04 11.88     April 2014
## 877   K.elegans      Lake_Wales   F 6.59   2.90  7.91 10.83     April 2014
## 878   K.elegans      Lake_Wales   F 6.75   2.94  8.15 11.25     April 2014
## 879   K.elegans      Lake_Wales   M 5.49   3.04  8.38 11.59     April 2014
## 880   K.elegans      Lake_Wales   F 6.91   3.09  8.56 11.72     April 2014
## 881   K.elegans      Lake_Wales   M 5.60   3.15  8.83 12.01     April 2014
## 882   K.elegans      Lake_Wales   F 5.56   2.94  7.27 10.51     April 2014
## 883   K.elegans      Lake_Wales   F 6.87   3.08  7.48 10.62     April 2014
## 884   K.elegans      Lake_Wales   M 5.47   2.99  7.77 10.85     April 2014
## 886   K.elegans      Lake_Wales   F 7.07   3.27  8.92 12.21     April 2014
## 887   K.elegans      Lake_Wales   M 5.48   2.88  8.48 11.29     April 2014
## 888   K.elegans      Lake_Wales   F 5.99   3.01  8.21 11.50     April 2014
## 889   K.elegans      Lake_Wales   F 6.62   3.15  8.58 11.77     April 2014
## 890   K.elegans      Lake_Wales   F 6.50   3.20  8.42 11.68     April 2014
## 905  C.corindum  Plantation_Key   F 8.25   3.36  9.37 12.76     April 2014
## 907  C.corindum  Plantation_Key   M 5.56   2.88  7.86 10.70     April 2014
## 911  C.corindum  Plantation_Key   F 7.76   3.23  8.71 12.22     April 2014
## 912  C.corindum  Plantation_Key   M 5.67   3.09  8.06 10.94     April 2014
## 915  C.corindum  Plantation_Key   F 8.65   3.00  8.48 11.74     April 2014
## 917  C.corindum  Plantation_Key   F 6.98   3.34  8.77 11.98     April 2014
## 918  C.corindum  Plantation_Key   F 6.30   2.89  8.07 11.27     April 2014
## 975  C.corindum       Key_Largo   F 8.72   3.77  9.74 13.58     April 2015
## 978  C.corindum       Key_Largo   M 6.49   3.10  8.72 12.13     April 2015
## 986  C.corindum       Key_Largo   F 7.51   3.09  8.36 11.87     April 2015
## 990  C.corindum       Key_Largo   M 5.61   2.99  8.00 10.98     April 2015
## 993  C.corindum       Key_Largo   M 6.01   2.89  7.56 10.56     April 2015
## 995  C.corindum       Key_Largo   M 5.62   2.58  6.48  9.26     April 2015
## 996  C.corindum       Key_Largo   F 8.37   3.39  8.73 12.00     April 2015
## 997  C.corindum       Key_Largo   M 6.54   2.98  7.88 10.44     April 2015
## 1001 C.corindum       Key_Largo   M 6.42   3.10  8.05 11.16     April 2015
## 1012 C.corindum       Key_Largo   F 6.26   3.06  8.12 11.84     April 2015
## 1017 C.corindum       Key_Largo   M 6.42   3.02  8.22 11.73     April 2015
## 1023  K.elegans      Lake_Wales   M 5.69   3.21  8.55 11.70     April 2015
## 1024  K.elegans      Lake_Wales   M 5.36   3.07  8.30 11.87     April 2015
## 1025  K.elegans      Lake_Wales   F 7.58   3.72 10.72 13.96     April 2015
## 1026  K.elegans      Lake_Wales   M 5.72   3.09  8.44 11.72     April 2015
## 1027  K.elegans      Lake_Wales   F 7.98   3.85  9.90 13.90     April 2015
## 1028  K.elegans      Lake_Wales   M 5.41   3.27  8.33 11.73     April 2015
## 1029  K.elegans      Lake_Wales   M 5.71   3.16  8.45 11.75     April 2015
## 1030  K.elegans      Lake_Wales   F 7.41   3.97 10.22 14.70     April 2015
## 1031  K.elegans      Lake_Wales   M 5.68   3.07  8.26 11.68     April 2015
## 1032  K.elegans      Lake_Wales   F 6.58   3.44  9.07 12.32     April 2015
## 1033  K.elegans      Lake_Wales   M 5.16   3.29  8.39 11.17     April 2015
## 1034  K.elegans      Lake_Wales   M 5.78   2.91  8.54 11.50     April 2015
## 1035  K.elegans      Lake_Wales   M 5.39   3.30  8.71 11.77     April 2015
## 1036  K.elegans      Lake_Wales   F 7.43   3.99  9.71 13.85     April 2015
## 1037  K.elegans      Lake_Wales   M 5.47   3.00  7.91 11.06     April 2015
## 1038  K.elegans      Lake_Wales   F 8.04   3.74  9.98 13.34     April 2015
## 1039  K.elegans      Lake_Wales   F 8.07   3.58  9.80 13.50     April 2015
## 1040  K.elegans      Lake_Wales   F 7.00   3.58  9.63 12.80     April 2015
## 1041  K.elegans      Lake_Wales   F 6.12   3.38  8.34 12.07     April 2015
## 1042  K.elegans      Lake_Wales   M 5.18   3.01  8.07 11.43     April 2015
## 1043  K.elegans      Lake_Wales   F 6.95   3.57  9.18 12.41     April 2015
## 1044  K.elegans      Lake_Wales   M 5.08   2.86  7.36 10.51     April 2015
## 1045  K.elegans      Lake_Wales   M 5.34   3.08  8.07 11.58     April 2015
## 1046  K.elegans      Lake_Wales   F 6.39   3.39  9.17 12.89     April 2015
## 1047  K.elegans      Lake_Wales   F 6.96   3.60  9.92 12.90     April 2015
## 1048  K.elegans      Lake_Wales   F 7.27   3.52 10.37 14.36     April 2015
## 1049  K.elegans      Lake_Wales   M 5.73   3.28  8.74 11.77     April 2015
## 1050  K.elegans      Lake_Wales   F 6.44   3.65  9.55 12.93     April 2015
## 1051  K.elegans      Lake_Wales   M 5.51   3.15  8.52 11.53     April 2015
## 1052  K.elegans      Lake_Wales   M 5.52   3.13  8.55 12.09     April 2015
## 1054  K.elegans      Lake_Wales   M 5.74   3.17  8.66 12.32     April 2015
## 1055  K.elegans      Lake_Wales   M 5.73   3.13  8.35 11.64     April 2015
## 1056  K.elegans      Lake_Wales   F 6.61   3.79  9.87 13.86     April 2015
## 1057  K.elegans      Lake_Wales   F 7.83   3.76 10.02 13.39     April 2015
## 1058  K.elegans      Lake_Wales   F 6.76   3.65  9.83 13.23     April 2015
## 1059  K.elegans      Lake_Wales   F 6.51   3.55  9.43 12.79     April 2015
## 1060  K.elegans      Lake_Wales   F 7.41   3.52  9.35 12.72     April 2015
## 1061  K.elegans      Lake_Wales   M 5.79   3.27  8.72 11.89     April 2015
## 1062  K.elegans      Lake_Wales   F 6.89   3.78  9.65 13.05     April 2015
## 1063  K.elegans      Lake_Wales   M 5.52   3.19  8.49 11.61     April 2015
## 1064  K.elegans      Lake_Wales   M 5.69   3.20  8.51 12.22     April 2015
## 1065  K.elegans      Lake_Wales   F 6.97   3.80 10.40 14.15     April 2015
## 1066  K.elegans      Lake_Wales   F 6.15   3.54  9.34 12.69       May 2015
## 1067  K.elegans      Lake_Wales   M 5.36   3.04  8.26 11.22       May 2015
## 1068  K.elegans      Lake_Wales   F 6.51   3.64  9.63 12.93       May 2015
## 1069  K.elegans      Lake_Wales   F 6.33   3.36  9.37 12.57       May 2015
## 1070  K.elegans      Lake_Wales   M 5.20   3.23  8.21 11.34       May 2015
## 1071  K.elegans      Lake_Wales   F 7.71   3.75  9.77 13.89       May 2015
## 1072  K.elegans      Lake_Wales   M 5.85   3.16  8.68 12.14       May 2015
## 1073  K.elegans      Lake_Wales   F 6.97   3.78 10.06 13.64       May 2015
## 1074  K.elegans      Lake_Wales   M 5.86   3.26  8.90 12.17       May 2015
## 1075  K.elegans      Lake_Wales   M 5.70   3.08  8.48 11.41       May 2015
## 1076  K.elegans      Lake_Wales   F 7.30   3.63 10.48 14.11       May 2015
## 1077  K.elegans        Leesburg   F 6.51   3.62  9.11 13.07     April 2015
## 1078  K.elegans        Leesburg   M 5.60   3.15  8.81 12.21     April 2015
## 1079  K.elegans        Leesburg   M 5.61   3.27  8.95 12.32     April 2015
## 1080  K.elegans        Leesburg   F 6.70   3.59  9.92 13.62     April 2015
## 1081  K.elegans        Leesburg   F 6.55   3.31 10.00 13.92     April 2015
## 1082  K.elegans        Leesburg   F 6.24   3.03  7.78 11.69     April 2015
## 1083  K.elegans        Leesburg   M 5.61   3.24  8.84 12.04     April 2015
## 1084  K.elegans        Leesburg   M 5.43   3.10  8.81 11.92     April 2015
## 1085  K.elegans        Leesburg   M 5.24   2.99  8.75 11.91     April 2015
## 1086  K.elegans        Leesburg   F 7.62   3.90  9.97 14.01     April 2015
## 1088  K.elegans        Leesburg   M 5.08   2.91  8.48 11.56     April 2015
## 1089  K.elegans        Leesburg   M 5.57   2.98  8.34 11.42     April 2015
## 1090  K.elegans        Leesburg   M 5.36   3.06  8.61 11.84     April 2015
## 1091  K.elegans        Leesburg   F 6.61   3.52  9.48 12.67     April 2015
## 1092  K.elegans        Leesburg   M 5.58   3.18  9.14 12.34     April 2015
## 1093  K.elegans        Leesburg   M 5.81   2.85  8.06 11.18     April 2015
## 1094  K.elegans        Leesburg   F 6.37   3.19  8.79 12.44     April 2015
## 1095  K.elegans        Leesburg   M 5.56   3.01  8.32 11.28     April 2015
## 1096  K.elegans        Leesburg   F 6.00   3.64  9.33 13.11     April 2015
## 1097  K.elegans        Leesburg   F 6.38   3.54  9.14 12.76     April 2015
## 1098  K.elegans        Leesburg   F 7.39   3.32  9.34 13.13     April 2015
## 1099  K.elegans        Leesburg   M 5.84   3.25  9.04 11.79     April 2015
## 1100  K.elegans        Leesburg   F 6.18   3.47  9.20 12.49     April 2015
## 1101  K.elegans        Leesburg   M 5.09   2.86  7.79 10.79     April 2015
## 1103  K.elegans        Leesburg   F 7.10   3.45  9.44 13.45     April 2015
## 1104  K.elegans        Leesburg   F 6.49   3.63  9.37 12.63     April 2015
## 1105  K.elegans        Leesburg   F 6.57   3.63  8.17 12.03     April 2015
## 1106  K.elegans        Leesburg   M 5.31   3.08  8.47 11.77     April 2015
## 1107  K.elegans        Leesburg   M 5.53   2.80  7.45 10.40     April 2015
## 1108  K.elegans        Leesburg   M 5.67   2.87  8.09 11.34     April 2015
## 1110  K.elegans        Leesburg   M 5.47   3.09  9.42 11.46     April 2015
## 1111  K.elegans        Leesburg   M 5.36   3.05  8.37 11.35     April 2015
## 1112  K.elegans        Leesburg   M 5.45   3.06  7.94 10.81     April 2015
## 1117 C.corindum  Plantation_Key   F 6.48   3.05  7.76 11.35     April 2015
## 1118 C.corindum  Plantation_Key   F 7.56   3.69  9.26 13.69     April 2015
## 1119 C.corindum  Plantation_Key   F 6.79   3.78 10.13 14.07     April 2015
## 1121 C.corindum  Plantation_Key   F 7.57   3.48  9.05 12.59     April 2015
## 1122 C.corindum  Plantation_Key   F 7.61   3.33  8.63 11.71     April 2015
## 1124 C.corindum  Plantation_Key   F 7.87   3.56  9.22 12.86     April 2015
## 1125  K.elegans     Gainesville   M 5.50   3.26  8.36 11.36  December 2016
## 1126  K.elegans     Gainesville   F 7.43   3.47  9.52 12.91  December 2016
## 1127  K.elegans     Gainesville   M 5.75   3.09  9.29 12.33  December 2016
## 1128  K.elegans     Gainesville   M 5.60   3.01  8.10 11.15  December 2016
## 1129  K.elegans     Gainesville   F 7.71   3.15  8.96 12.43  December 2016
## 1130  K.elegans     Gainesville   F 7.84   3.89  9.88 13.32  December 2016
## 1131  K.elegans     Gainesville   F 7.93   3.79  9.76 13.09  December 2016
## 1132  K.elegans     Gainesville   F 8.02   3.56  9.45 12.86  December 2016
## 1133  K.elegans     Gainesville   F 7.54   3.59  9.43 13.10  December 2016
## 1134  K.elegans     Gainesville   F 7.62   3.59  9.46 13.32  December 2016
## 1135  K.elegans     Gainesville   M 5.54   2.99  7.96 10.99  December 2016
## 1136  K.elegans     Gainesville   F 7.64   3.57  9.79 13.28  December 2016
## 1137  K.elegans     Gainesville   M 6.06   3.24  8.84 12.09  December 2016
## 1138  K.elegans     Gainesville   M   NA   3.18  8.62 11.44  December 2016
## 1142  K.elegans     Gainesville   F 8.38   3.66  9.55 12.85  December 2016
## 1143  K.elegans     Gainesville   F 7.80   3.66  9.47 13.11  December 2016
## 1144  K.elegans     Gainesville   M 5.66   2.93  7.91 10.86  December 2016
## 1146  K.elegans     Gainesville   F 8.44   3.55  9.76 12.86  December 2016
## 1148  K.elegans     Gainesville   M 5.69   3.34  8.93 11.73  December 2016
## 1155  K.elegans     Gainesville   F 7.61   3.76  9.96 13.48  December 2016
## 1156  K.elegans     Gainesville   F 7.79   3.41  9.13 12.47  December 2016
## 1158  K.elegans     Gainesville   F 7.81   3.52  9.29 12.46  December 2016
## 1160  K.elegans     Gainesville   M 6.00   3.40  8.84 12.06  December 2016
## 1161  K.elegans     Gainesville   M 5.55   2.86  7.60 10.66  December 2016
## 1162  K.elegans     Gainesville   F 8.03   3.73  9.82 13.22  December 2016
## 1164  K.elegans     Gainesville   F 7.57   3.50  9.12 12.60  December 2016
## 1166  K.elegans     Gainesville   F 7.35   3.31  8.74 12.00  December 2016
## 1167  K.elegans     Gainesville   F 7.97   3.30  8.81 11.89  December 2016
## 1170  K.elegans     Gainesville   F 7.95   3.51  9.81 13.29  December 2016
## 1174  K.elegans     Gainesville   F 7.81   3.42  8.80 12.17  December 2016
## 1176  K.elegans     Gainesville   M 5.83   3.01  9.26 12.29  December 2016
## 1177  K.elegans     Gainesville   M 6.14   3.14  8.97 11.88  December 2016
## 1178  K.elegans     Gainesville   M 5.62   3.00  8.66 11.48  December 2016
## 1179  K.elegans     Gainesville   M 5.94   3.45  9.39 11.96  December 2016
## 1180  K.elegans     Gainesville   F 7.90   3.51  9.57 13.03  December 2016
## 1181  K.elegans     Gainesville   M 5.59   2.88  7.90 10.79  December 2016
## 1182  K.elegans       Homestead   M 5.32   3.20  8.96 11.63  December 2016
## 1185  K.elegans       Homestead   M 5.90   3.28  8.73 11.63  December 2016
## 1186  K.elegans       Homestead   M 5.60   3.29  9.05 12.18  December 2016
## 1188  K.elegans       Homestead   F 6.73   3.66 10.21 13.65  December 2016
## 1189  K.elegans       Homestead   M 5.42   2.95  8.12 10.88  December 2016
## 1191  K.elegans       Homestead   M 5.18   3.14  8.57 11.31  December 2016
## 1192  K.elegans       Homestead   M 5.25   3.16  9.13 11.74  December 2016
## 1193  K.elegans       Homestead   M 5.43   3.20  9.02 11.83  December 2016
## 1194  K.elegans       Homestead   M 5.45   3.23  8.83 11.76  December 2016
## 1203 C.corindum North_Key_Largo   F 8.02   3.48  9.47 12.89  December 2016
## 1204 C.corindum North_Key_Largo   F 8.10   3.24  7.81 11.16  December 2016
## 1205 C.corindum North_Key_Largo   F 7.77   3.94 10.13 13.51  December 2016
## 1208 C.corindum North_Key_Largo   M 5.94   2.80  7.88 10.75  December 2016
## 1209 C.corindum North_Key_Largo   M 6.60   3.22  8.14 11.48  December 2016
## 1210 C.corindum North_Key_Largo   M 6.54   3.34  8.72 11.91  December 2016
## 1213 C.corindum North_Key_Largo   F 7.32   3.56  9.48 12.67  December 2016
## 1215 C.corindum North_Key_Largo   M 6.21   3.21  8.72 11.74  December 2016
## 1217 C.corindum North_Key_Largo   M 6.24   3.51  8.32 11.68  December 2016
## 1219 C.corindum North_Key_Largo   F 8.77   3.47  9.25 12.35  December 2016
## 1221 C.corindum North_Key_Largo   F 7.70   3.78  9.35 12.94  December 2016
## 1222 C.corindum North_Key_Largo   F 6.89   3.68  9.41 12.99  December 2016
## 1225 C.corindum North_Key_Largo   M 6.78   3.41  8.51 11.84  December 2016
## 1228 C.corindum North_Key_Largo   F 6.61   3.60  9.55 13.07  December 2016
## 1230 C.corindum North_Key_Largo   M 6.46   3.11  8.67 11.52  December 2016
## 1235 C.corindum North_Key_Largo   F 9.26   3.59  9.31 12.57  December 2016
## 1238 C.corindum North_Key_Largo   F 7.10   3.53  8.77 12.39  December 2016
## 1239 C.corindum North_Key_Largo   M 5.56   3.25  8.62 11.38  December 2016
## 1241 C.corindum North_Key_Largo   M 6.37   3.24  9.04 12.10  December 2016
## 1246 C.corindum North_Key_Largo   M 5.69   2.80  7.57 10.44  December 2016
## 1247 C.corindum North_Key_Largo   M 6.84   3.11  8.11 11.37  December 2016
## 1248 C.corindum       Key_Largo   F 8.39   3.69  8.74 12.48  December 2016
## 1249 C.corindum       Key_Largo   M 5.92   2.95  8.19 11.18  December 2016
## 1250 C.corindum       Key_Largo   M 6.25   3.00  7.84 10.85  December 2016
## 1252 C.corindum       Key_Largo   M 6.12   3.17  7.80 10.84  December 2016
## 1253 C.corindum       Key_Largo   M 6.82   3.41  8.92 12.31  December 2016
## 1255 C.corindum       Key_Largo   F 7.61   3.45  9.18 12.22  December 2016
## 1257 C.corindum       Key_Largo   F 8.13   3.30  8.40 11.34  December 2016
## 1258 C.corindum       Key_Largo   M 6.81   3.21  8.61 11.55  December 2016
## 1268  K.elegans      Lake_Wales   M 5.37   3.06  8.67 11.34  December 2016
## 1272  K.elegans      Lake_Wales   M 5.67   2.85  8.04 10.79  December 2016
## 1276  K.elegans        Leesburg   F 7.25   3.33  8.91 12.45  December 2016
## 1281  K.elegans        Leesburg   F 6.87   3.44  9.77 13.39  December 2016
## 1285  K.elegans        Leesburg   M 5.32   2.89  8.12 10.62  December 2016
## 1289  K.elegans        Leesburg   M 5.19   2.58  8.07 10.78  December 2016
## 1290  K.elegans        Leesburg   M 5.69   3.07  8.80 11.87  December 2016
## 1291  K.elegans        Leesburg   F 7.25   3.32  9.00 12.03  December 2016
## 1292  K.elegans        Leesburg   M 5.36   3.03  8.27 11.44  December 2016
## 1294  K.elegans        Leesburg   M 5.83   3.45  8.51 11.70  December 2016
## 1295  K.elegans        Leesburg   F 7.66   3.54  9.83 13.52  December 2016
## 1296  K.elegans        Leesburg   F 7.81   3.45  9.01 12.58  December 2016
## 1297  K.elegans        Leesburg   F 7.62   3.66  9.26 12.79  December 2016
## 1298  K.elegans        Leesburg   F 7.63   3.58  9.32 12.70  December 2016
## 1299  K.elegans        Leesburg   F 7.37   3.45  9.65 13.04  December 2016
## 1300  K.elegans        Leesburg   F 7.47   3.84 10.54 14.37  December 2016
## 1301  K.elegans        Leesburg   M 5.64   3.05  8.83 11.81  December 2016
## 1302  K.elegans        Leesburg   F 7.67   3.45  9.38 12.64  December 2016
## 1303  K.elegans        Leesburg   F 7.54   3.30  9.39 12.72  December 2016
## 1304  K.elegans        Leesburg   F 6.91   3.40  9.19 12.07  December 2016
## 1306  K.elegans        Leesburg   M 5.78   3.28  8.31 11.40  December 2016
## 1307  K.elegans        Leesburg   M 5.94   2.86  8.10 10.60  December 2016
## 1308  K.elegans        Leesburg   F 7.38   3.26  9.00 12.16  December 2016
## 1309  K.elegans        Leesburg   M 5.71   2.96  8.19 11.03  December 2016
## 1310  K.elegans        Leesburg   M 5.56   3.10  7.93 10.61  December 2016
## 1311  K.elegans        Leesburg   F 7.57   3.48  9.30 12.87  December 2016
## 1312  K.elegans        Leesburg   F 7.84   3.63  9.71 13.17  December 2016
## 1313  K.elegans        Leesburg   F 6.96   3.18  9.46 12.48  December 2016
## 1315  K.elegans        Leesburg   M 5.57   3.25  8.13 11.07  December 2016
## 1316  K.elegans        Leesburg   M 5.77   3.38  9.54 12.29  December 2016
## 1317  K.elegans        Leesburg   F 8.46   3.99 10.60 14.32  December 2016
## 1318  K.elegans        Leesburg   M 5.29   2.84  7.65 10.39  December 2016
## 1319  K.elegans        Leesburg   M 5.65   3.24  8.16 11.31  December 2016
## 1320  K.elegans        Leesburg   F 7.78   3.48  9.32 12.56  December 2016
## 1321  K.elegans        Leesburg   F 7.74   3.47  9.79 13.20  December 2016
## 1322  K.elegans        Leesburg   F 7.44   3.29  8.65 12.28  December 2016
## 1323  K.elegans        Leesburg   F 7.95   3.90  9.89 13.58  December 2016
## 1324  K.elegans        Leesburg   F 7.03   3.24  8.41 11.73  December 2016
## 1325  K.elegans        Leesburg   M 5.34   3.01  8.24 11.57  December 2016
## 1326  K.elegans        Leesburg   F 7.85   3.49  9.56 12.87  December 2016
## 1327  K.elegans        Leesburg   M 5.51   3.10  8.46 11.39  December 2016
## 1328  K.elegans        Leesburg   M 5.53   2.93  7.87 10.89  December 2016
## 1329  K.elegans        Leesburg   F 8.14   3.60  9.86 13.38  December 2016
## 1330  K.elegans        Leesburg   F 7.57   3.59  9.45 12.59  December 2016
## 1331  K.elegans        Leesburg   M 5.75   2.99  8.31 11.22  December 2016
## 1332  K.elegans        Leesburg   F 7.08   3.28  8.82 12.31  December 2016
## 1333  K.elegans        Leesburg   M 5.80   3.02  8.09 11.35  December 2016
## 1334  K.elegans        Leesburg   M 5.71   3.11  8.65 11.50  December 2016
## 1335  K.elegans        Leesburg   M 5.96   3.13  9.04 11.73  December 2016
## 1336  K.elegans        Leesburg   M 5.80   3.16  8.35 11.48  December 2016
## 1337  K.elegans        Leesburg   M 5.76   3.13  8.55 11.54  December 2016
## 1338  K.elegans        Leesburg   M 5.36   3.01  8.16 11.00  December 2016
## 1340 C.corindum  Plantation_Key   M 6.08   3.07  8.34 11.39  December 2016
## 1341 C.corindum  Plantation_Key   M 6.01   2.91  8.53 11.43  December 2016
## 1343 C.corindum  Plantation_Key   F 7.97   3.46  9.34 12.57  December 2016
## 1344 C.corindum  Plantation_Key   M 5.99   3.11  8.52 11.44  December 2016
## 1346 C.corindum  Plantation_Key   M 5.29   2.81  7.84 10.53  December 2016
## 1347 C.corindum  Plantation_Key   F 8.61   3.57  9.31 12.50  December 2016
## 1349 C.corindum  Plantation_Key   F 7.50   3.12  8.53 11.87  December 2016
## 1354 C.corindum  Plantation_Key   F 8.05   3.24  8.63 12.11  December 2016
## 1355 C.corindum  Plantation_Key   M 5.74   3.03  7.24 10.23  December 2016
## 1356 C.corindum  Plantation_Key   F 8.89   3.63  9.78 13.30  December 2016
## 1357 C.corindum  Plantation_Key   F 7.93   3.22  9.41 12.58  December 2016
## 1358 C.corindum  Plantation_Key   F 7.88   3.61 10.08 13.71  December 2016
## 1361 C.corindum  Plantation_Key   M 5.89   2.82  8.18 11.14  December 2016
## 1364 C.corindum  Plantation_Key   M 5.88   2.65  7.23  9.97  December 2016
## 1365 C.corindum  Plantation_Key   M 6.04   3.03  7.82 10.65  December 2016
## 1367 C.corindum  Plantation_Key   F 7.30   3.30  8.84 12.17  December 2016
## 1368 C.corindum  Plantation_Key   M 5.92   2.99  7.88 10.97  December 2016
## 1369 C.corindum  Plantation_Key   M 6.73   3.45  8.99 12.31  December 2016
## 1370 C.corindum  Plantation_Key   M 5.37   2.69  7.03  9.69  December 2016
## 1371 C.corindum  Plantation_Key   M 6.31   3.06  8.33 11.30  December 2016
## 1372 C.corindum  Plantation_Key   M 6.11   2.97  7.86 10.74  December 2016
## 1375 C.corindum  Plantation_Key   M 5.90   2.89  7.57 10.37  December 2016
## 1545  K.elegans     Gainesville   M 5.92   3.08  8.53 11.48    August 2017
## 1546  K.elegans     Gainesville   M 5.57   2.98  8.21 11.43    August 2017
## 1547  K.elegans     Gainesville   F 7.84   3.57  9.31 12.80    August 2017
## 1549  K.elegans     Gainesville   M 5.73   3.10  8.73 11.91    August 2017
## 1550  K.elegans     Gainesville   M 5.59   2.67  7.42 10.22    August 2017
## 1552  K.elegans     Gainesville   F 6.40   3.22  8.52 11.83    August 2017
## 1553  K.elegans     Gainesville   F 6.84   3.61  9.66 12.85    August 2017
## 1554  K.elegans     Gainesville   M 5.80   3.18  8.77 12.05    August 2017
## 1555  K.elegans     Gainesville   M 5.69   3.05  8.19 11.34    August 2017
## 1556  K.elegans     Gainesville   M 5.44   2.80  7.65 10.58    August 2017
## 1557  K.elegans     Gainesville   F 7.53   3.33  8.69 11.96    August 2017
## 1558  K.elegans     Gainesville   F 6.69   3.51  9.35 12.90    August 2017
## 1559  K.elegans     Gainesville   M 5.67   2.87  8.20 11.05    August 2017
## 1560  K.elegans     Gainesville   M 5.48   2.96  7.91 10.97    August 2017
## 1562  K.elegans     Gainesville   F 7.34   3.51  9.05 12.46    August 2017
## 1563  K.elegans     Gainesville   F 6.73   3.35  8.46 12.03    August 2017
## 1565  K.elegans     Gainesville   F 8.99   3.80 10.70 14.25    August 2017
## 1566  K.elegans     Gainesville   F 7.06   3.34  8.79 12.06    August 2017
## 1567  K.elegans     Gainesville   M 5.39   2.81  7.89 10.62    August 2017
## 1568  K.elegans     Gainesville   M 5.56   2.92  7.81 10.51    August 2017
## 1569  K.elegans     Gainesville   M 5.66   2.98  8.13 11.11    August 2017
## 1571  K.elegans     Gainesville   F 7.65   3.46  9.35 12.88    August 2017
## 1572  K.elegans     Gainesville   F 7.47   3.27  7.99 11.70    August 2017
## 1573  K.elegans     Gainesville   M 5.60   2.97  8.06 10.96    August 2017
## 1574  K.elegans     Gainesville   F 7.11   3.19  8.55 11.78    August 2017
## 1575  K.elegans     Gainesville   F 7.03   3.30  8.85 12.31    August 2017
## 1576  K.elegans     Gainesville   F 7.48   3.55  9.14 12.64    August 2017
## 1577  K.elegans     Gainesville   M 5.87   3.17  8.08 11.19    August 2017
## 1578  K.elegans     Gainesville   M 5.50   3.04  8.48 11.37    August 2017
## 1579  K.elegans     Gainesville   M 5.95   3.27  8.95 12.13    August 2017
## 1580  K.elegans     Gainesville   M 5.25   2.90  7.83 11.04    August 2017
## 1581  K.elegans     Gainesville   F 6.84   3.58  9.81 13.52    August 2017
## 1582  K.elegans     Gainesville   F 7.43   3.45  9.42 12.99    August 2017
## 1583  K.elegans     Gainesville   M 5.46   3.03  8.37 11.48    August 2017
## 1584  K.elegans     Gainesville   M 5.92   2.91  7.79 10.71    August 2017
## 1585  K.elegans     Gainesville   F 7.82   3.55  9.68 13.31    August 2017
## 1586  K.elegans     Gainesville   M 5.68   3.31  8.98 12.32    August 2017
## 1587  K.elegans     Gainesville   F 7.85   3.54  9.65 12.38    August 2017
## 1589  K.elegans     Gainesville   M 5.37   3.03  8.44 11.02    August 2017
## 1590  K.elegans     Gainesville   F 8.10   3.60  9.91 13.67    August 2017
## 1591  K.elegans     Gainesville   M 5.48   2.97  8.37 11.40    August 2017
## 1592  K.elegans     Gainesville   M 5.62   2.93  8.18 11.02    August 2017
## 1593  K.elegans     Gainesville   F 7.08   3.33  8.85 12.11    August 2017
## 1594  K.elegans     Gainesville   M 5.44   2.86  7.20  9.91    August 2017
## 1595  K.elegans     Gainesville   M 5.47   3.14  8.59 11.77    August 2017
## 1596  K.elegans     Gainesville   F 7.67   3.49  9.80 13.48    August 2017
## 1597  K.elegans     Gainesville   M 5.67   3.08  8.41 11.17    August 2017
## 1598  K.elegans     Gainesville   F 8.56   3.55  9.73 13.25    August 2017
## 1599  K.elegans     Gainesville   F 6.92   3.44  8.95 12.66    August 2017
## 1600  K.elegans     Gainesville   M 5.83   2.87  7.83 10.82    August 2017
## 1601  K.elegans     Gainesville   F 7.11   3.42  8.95 12.28    August 2017
## 1602  K.elegans     Gainesville   F 7.46   3.51  9.30 12.71    August 2017
## 1603  K.elegans     Gainesville   M 5.28   2.68  7.70 10.47    August 2017
## 1605  K.elegans       Homestead   M 5.80   3.21  8.46 11.62    August 2017
## 1607  K.elegans       Homestead   F 7.39   3.46  9.09 12.39    August 2017
## 1608  K.elegans       Homestead   M 6.02   3.24  8.55 11.33    August 2017
## 1610  K.elegans       Homestead   F 7.83   3.43  9.25 12.60    August 2017
## 1611  K.elegans       Homestead   F 8.89   3.90  9.99 13.76    August 2017
## 1612  K.elegans       Homestead   F 7.86   3.58  8.99 12.49    August 2017
## 1613  K.elegans       Homestead   M 5.68   3.00  8.08 10.99    August 2017
## 1614  K.elegans       Homestead   M 5.48   2.79  7.98 10.65    August 2017
## 1615  K.elegans       Homestead   M 5.78   2.99  8.22 11.16    August 2017
## 1616  K.elegans       Homestead   F 8.81   3.74 10.08 13.82    August 2017
## 1617  K.elegans       Homestead   M 5.90   3.18  8.18 11.30    August 2017
## 1618  K.elegans       Homestead   F 7.85   3.46  9.00 12.34    August 2017
## 1620  K.elegans       Homestead   M 5.89   3.14  8.51 11.60    August 2017
## 1621  K.elegans       Homestead   M 5.68   2.84  7.25 10.43    August 2017
## 1622  K.elegans       Homestead   M 5.71   2.95  7.97 10.84    August 2017
## 1624  K.elegans       Homestead   M 5.95   3.20  8.29 11.55    August 2017
## 1625  K.elegans       Homestead   M 5.88   3.31  9.01 12.33    August 2017
## 1626  K.elegans       Homestead   F 7.43   3.14  8.55 11.90    August 2017
## 1627  K.elegans       Homestead   M 6.10   3.28  8.68 11.80    August 2017
## 1628  K.elegans       Homestead   M 6.02   3.29  8.93 12.16    August 2017
## 1629  K.elegans       Homestead   F 7.89   3.54  9.28 12.84    August 2017
## 1630  K.elegans       Homestead   M 6.08   3.46  8.94 11.94    August 2017
## 1631  K.elegans       Homestead   M 6.29   3.49  9.01 12.29    August 2017
## 1632  K.elegans       Homestead   M 5.63   3.10  7.92 10.91    August 2017
## 1634  K.elegans       Homestead   M 5.95   3.18  8.97 12.01    August 2017
## 1635  K.elegans       Homestead   F 7.95   3.48  9.70 13.37    August 2017
## 1636  K.elegans       Homestead   F 7.56   3.40  8.15 12.18    August 2017
## 1641  K.elegans       Homestead   F 8.61   3.86 10.35 13.76    August 2017
## 1642  K.elegans       Homestead   F 7.69   3.44  9.22 12.66    August 2017
## 1643  K.elegans       Homestead   M 6.06   2.83  7.57 10.48    August 2017
## 1644  K.elegans       Homestead   M 6.13   3.27  9.02 11.98    August 2017
## 1645  K.elegans       Homestead   F 7.26   3.26  8.58 11.58    August 2017
## 1646  K.elegans       Homestead   F 8.12   3.49  9.35 13.06    August 2017
## 1647  K.elegans       Homestead   M 5.61   2.89  7.78 10.63    August 2017
## 1648  K.elegans       Homestead   F 8.63   3.88 10.09 13.61    August 2017
## 1651  K.elegans       Homestead   M 5.42   2.81  7.66 10.58    August 2017
## 1652  K.elegans       Homestead   F 7.54   3.30  9.21 12.52    August 2017
## 1654  K.elegans       Homestead   M 5.71   2.93  7.47 10.63    August 2017
## 1655  K.elegans       Homestead   F 8.36   3.54  9.73 13.10    August 2017
## 1656  K.elegans       Homestead   F 8.13   3.57  9.59 12.98    August 2017
## 1657  K.elegans       Homestead   M 5.96   3.22  8.88 11.78    August 2017
## 1658  K.elegans       Homestead   F 7.46   3.39  9.62 12.76    August 2017
## 1659  K.elegans       Homestead   M 5.65   3.13  8.47 11.50    August 2017
## 1660  K.elegans       Homestead   F 7.49   3.43  9.13 12.26    August 2017
## 1661  K.elegans       Homestead   F 8.49   3.95 10.46 14.13    August 2017
## 1662  K.elegans       Homestead   F 7.61   3.53  9.00 11.89    August 2017
## 1663  K.elegans       Homestead   F 6.95   3.32  8.99 12.18    August 2017
## 1664  K.elegans       Homestead   M 5.76   3.12  8.63 11.80    August 2017
## 1665  K.elegans       Homestead   F 8.66   3.94 10.97 14.80    August 2017
## 1666  K.elegans       Homestead   F 8.79   3.92 10.20 13.80    August 2017
## 1667  K.elegans       Homestead   F 8.29   3.95 10.72 14.11    August 2017
## 1668  K.elegans       Homestead   M 5.81   3.40  9.35 12.42    August 2017
## 1669  K.elegans       Homestead   M 5.88   3.37  8.93 11.73    August 2017
## 1670  K.elegans       Homestead   F 8.76   4.02 10.54 14.41    August 2017
## 1671  K.elegans       Homestead   M 6.02   3.10  8.54 11.67    August 2017
## 1672  K.elegans       Homestead   M 6.07   3.26  8.94 12.04    August 2017
## 1673  K.elegans       Homestead   M 6.10   3.25  8.98 12.14    August 2017
## 1674  K.elegans       Homestead   M 6.11   3.29  8.55 11.61    August 2017
## 1675  K.elegans       Homestead   M 5.71   3.09  8.73 11.55    August 2017
## 1676  K.elegans       Homestead   M 5.88   3.11  8.59 11.26    August 2017
## 1677  K.elegans       Homestead   F 8.35   4.13 10.51 13.98    August 2017
## 1678  K.elegans       Homestead   F 8.46   3.81 10.46 14.05    August 2017
## 1679  K.elegans       Homestead   M 5.63   3.03  7.93 10.62    August 2017
## 1680  K.elegans       Homestead   M 5.70   3.17  8.76 11.99    August 2017
## 1681  K.elegans       Homestead   F 8.05   3.95 10.64 13.99    August 2017
## 1682  K.elegans       Homestead   M 5.79   3.21  8.85 12.08    August 2017
## 1683  K.elegans       Homestead   F 8.38   3.55 10.41 13.74    August 2017
## 1684  K.elegans       Homestead   M 5.78   3.30  8.95 12.07    August 2017
## 1685  K.elegans       Homestead   F 8.62   3.70  9.84 13.65    August 2017
## 1686  K.elegans       Homestead   M 5.74   2.80  8.00 10.92    August 2017
## 1687  K.elegans       Homestead   M 5.64   3.27  8.67 11.82    August 2017
## 1688  K.elegans       Homestead   F 7.66   3.72 10.19 13.52    August 2017
## 1689  K.elegans       Homestead   M 5.73   3.26  8.71 11.80    August 2017
## 1690  K.elegans       Homestead   M 5.73   3.14  8.46 11.66    August 2017
## 1691  K.elegans       Homestead   F 8.41   4.06 10.39 14.07    August 2017
## 1692  K.elegans       Homestead   F 8.06   3.58  9.77 12.98    August 2017
## 1693  K.elegans       Homestead   M 5.62   3.05  8.23 10.99    August 2017
## 1694  K.elegans       Homestead   F 8.02   3.69  9.92 14.00    August 2017
## 1695  K.elegans       Homestead   M 5.82   3.42  9.26 12.24    August 2017
## 1696  K.elegans       Homestead   F 7.96   3.87 10.32 13.76    August 2017
## 1697  K.elegans       Homestead   F 8.24   3.63  9.63 13.12    August 2017
## 1698  K.elegans       Homestead   F 8.15   3.85 10.44 13.75    August 2017
## 1699  K.elegans       Homestead   F 8.17   3.61 10.16 13.78    August 2017
## 1700  K.elegans       Homestead   M 5.81   3.22  8.71 11.87    August 2017
## 1701  K.elegans       Homestead   F 8.02   3.54  9.53 12.87    August 2017
## 1702  K.elegans       Homestead   M 5.69   3.15  8.83 11.59    August 2017
## 1703  K.elegans       Homestead   M 5.53   2.78  7.84 10.78    August 2017
## 1704  K.elegans       Homestead   M 6.04   3.25  8.95 12.14    August 2017
## 1705  K.elegans       Homestead   F 8.48   4.09 10.25 13.57    August 2017
## 1706  K.elegans       Homestead   F 8.25   3.75  9.95 13.07    August 2017
## 1707  K.elegans       Homestead   M 6.04   3.43  8.84 11.98    August 2017
## 1708  K.elegans       Homestead   F 7.96   3.54  9.45 12.63    August 2017
## 1709  K.elegans       Homestead   F 8.14   3.76 10.05 13.51    August 2017
## 1710  K.elegans       Homestead   F 8.05   3.71  9.58 13.32    August 2017
## 1711  K.elegans       Homestead   F 8.42   3.68  9.65 13.50    August 2017
## 1712  K.elegans       Homestead   F 7.85   3.82  9.99 13.14    August 2017
## 1713  K.elegans       Homestead   M 5.89   3.22  8.52 11.31    August 2017
## 1714  K.elegans       Homestead   F 7.97   3.98 10.60 14.21    August 2017
## 1715  K.elegans       Homestead   F 8.57   3.78  9.82 13.34    August 2017
## 1716  K.elegans       Homestead   F 8.02   3.36  9.43 12.81    August 2017
## 1717  K.elegans       Homestead   F 7.97   3.73 10.15 13.65    August 2017
## 1718  K.elegans       Homestead   F 8.81   3.85 10.26 13.62    August 2017
## 1719  K.elegans       Homestead   M 5.69   2.92  8.13 10.95    August 2017
## 1720  K.elegans       Homestead   M 6.14   3.27  9.00 12.19    August 2017
## 1721  K.elegans       Homestead   M 5.95   3.23  8.92 12.04    August 2017
## 1722  K.elegans       Homestead   F 7.60   3.07  8.50 11.54    August 2017
## 1723  K.elegans       Homestead   M 6.06   3.27  8.80 12.00    August 2017
## 1724  K.elegans       Homestead   M 5.85   3.26  8.84 11.70    August 2017
## 1725  K.elegans       Homestead   F 8.24   3.62  9.87 13.35    August 2017
## 1726  K.elegans       Homestead   M 5.85   3.15  8.50 11.34    August 2017
## 1727  K.elegans       Homestead   F 8.39   3.73 10.50 14.35    August 2017
## 1728  K.elegans       Homestead   M 6.05   3.10  8.79 11.74    August 2017
## 1729  K.elegans       Homestead   M 5.65   3.33  9.08 11.91    August 2017
## 1730  K.elegans       Homestead   F 8.62   3.78  9.92 13.67    August 2017
## 1731  K.elegans       Homestead   M 5.99   3.13  8.54 11.67    August 2017
## 1732  K.elegans       Homestead   M 5.99   3.26  9.14 12.08    August 2017
## 1733  K.elegans       Homestead   M 5.71   2.97  8.82 11.42    August 2017
## 1734 C.corindum       Key_Largo   F 8.89   3.62  9.34 12.55    August 2017
## 1735 C.corindum       Key_Largo   M 5.97   3.01  8.30 10.89    August 2017
## 1736 C.corindum       Key_Largo   M 6.20   2.90  8.36 11.30    August 2017
## 1738 C.corindum       Key_Largo   F 7.90   3.12  8.64 12.02    August 2017
## 1739 C.corindum       Key_Largo   M 6.29   3.10  8.06 11.34    August 2017
## 1740 C.corindum       Key_Largo   M 5.79   2.74  7.53 10.50    August 2017
## 1741 C.corindum       Key_Largo   M 5.31   2.75  7.39 10.03    August 2017
## 1742 C.corindum       Key_Largo   F 8.29   3.47  9.34 12.95    August 2017
## 1743 C.corindum       Key_Largo   M 5.86   2.94  7.64 10.65    August 2017
## 1744 C.corindum       Key_Largo   F 7.95   3.34  9.20 12.71    August 2017
## 1746 C.corindum       Key_Largo   M 6.08   3.07  8.14 11.48    August 2017
## 1747 C.corindum       Key_Largo   M 6.24   3.05  7.92 10.78    August 2017
## 1748 C.corindum       Key_Largo   M 6.35   2.89  8.13 11.08    August 2017
## 1749 C.corindum       Key_Largo   F 7.33   3.32  8.24 11.52    August 2017
## 1750 C.corindum       Key_Largo   M 6.07   3.10  7.99 11.07    August 2017
## 1751 C.corindum       Key_Largo   M 5.80   3.08  8.58 11.59    August 2017
## 1752 C.corindum       Key_Largo   F 8.03   3.44  9.05 12.44    August 2017
## 1753 C.corindum       Key_Largo   F 7.96   3.33  8.46 11.96    August 2017
## 1754 C.corindum       Key_Largo   F 8.09   3.43  8.98 12.46    August 2017
## 1755 C.corindum       Key_Largo   F 7.86   3.62  9.39 13.27    August 2017
## 1758 C.corindum       Key_Largo   F 7.96   3.04  8.80 11.94    August 2017
## 1759 C.corindum       Key_Largo   F 8.38   3.67 10.16 13.81    August 2017
## 1760 C.corindum       Key_Largo   M 5.90   3.21  8.31 11.65    August 2017
## 1761 C.corindum       Key_Largo   M 5.50   2.63  6.79  9.59    August 2017
## 1762 C.corindum       Key_Largo   F 9.01   3.67  9.96 13.60    August 2017
## 1763 C.corindum       Key_Largo   F 7.00   3.54  9.55 12.94    August 2017
## 1764 C.corindum       Key_Largo   M 5.90   3.09  8.13 11.13    August 2017
## 1765 C.corindum       Key_Largo   M 5.79   2.73  7.36 10.02    August 2017
## 1766 C.corindum       Key_Largo   M 6.20   2.82  7.73 10.70    August 2017
## 1768 C.corindum       Key_Largo   M 6.11   2.88  7.90 10.99    August 2017
## 1769 C.corindum       Key_Largo   M 6.85   3.40  9.18 12.30    August 2017
## 1770 C.corindum       Key_Largo   F 8.90   3.48  9.10 12.57    August 2017
## 1771 C.corindum       Key_Largo   M 6.32   3.03  8.02 10.63    August 2017
## 1772 C.corindum       Key_Largo   F 8.16   3.47  9.17 12.60    August 2017
## 1774 C.corindum       Key_Largo   M 6.36   3.26  8.97 12.28    August 2017
## 1775 C.corindum       Key_Largo   F 8.04   3.78 10.20 13.79    August 2017
## 1776 C.corindum       Key_Largo   F 7.49   3.14  8.41 11.86    August 2017
## 1779 C.corindum       Key_Largo   M 6.01   3.29  8.20 11.51    August 2017
## 1780 C.corindum       Key_Largo   F 8.72   3.48  9.27 12.82    August 2017
## 1782 C.corindum       Key_Largo   M 6.65   3.04  8.49 11.63    August 2017
## 1785 C.corindum       Key_Largo   F 9.40   3.65  9.76 13.39    August 2017
## 1786 C.corindum       Key_Largo   M 6.01   3.04  8.89 11.88    August 2017
## 1788 C.corindum       Key_Largo   M 6.20   2.99  7.84 10.77    August 2017
## 1789 C.corindum       Key_Largo   M 5.65   2.79  7.59 10.45    August 2017
## 1790 C.corindum       Key_Largo   F 9.17   3.99 10.33 14.32    August 2017
## 1791 C.corindum       Key_Largo   M 5.94   3.00  8.39 11.52    August 2017
## 1793 C.corindum       Key_Largo   M 6.88   3.26  9.02 12.12    August 2017
## 1800 C.corindum       Key_Largo   M 5.98   2.64  7.43 10.46    August 2017
## 1802 C.corindum       Key_Largo   M 5.68   2.87  7.89 10.77    August 2017
## 1805 C.corindum       Key_Largo   M 6.01   3.01  8.24 11.47    August 2017
## 1806 C.corindum North_Key_Largo   F 8.52   3.71  9.07 12.95    August 2017
## 1807 C.corindum North_Key_Largo   F 8.07   3.64 10.06 13.91    August 2017
## 1808 C.corindum North_Key_Largo   F 8.40   3.32  8.88 12.19    August 2017
## 1809 C.corindum North_Key_Largo   M 5.78   2.89  8.58 11.32    August 2017
## 1810 C.corindum North_Key_Largo   F 8.38   3.30  9.07 12.35    August 2017
## 1811 C.corindum North_Key_Largo   F 8.47   3.57  9.89 13.69    August 2017
## 1812 C.corindum North_Key_Largo   F 7.40   3.14  8.50 11.70    August 2017
## 1813 C.corindum North_Key_Largo   M 6.27   3.31  8.77 11.71    August 2017
## 1814 C.corindum North_Key_Largo   M 5.51   2.79  7.09 10.07    August 2017
## 1815 C.corindum North_Key_Largo   F 8.70   3.58  9.94 13.77    August 2017
## 1816 C.corindum North_Key_Largo   M 5.63   3.07  9.36 12.35    August 2017
## 1817 C.corindum North_Key_Largo   M 6.37   2.90  7.77 10.61    August 2017
## 1819 C.corindum North_Key_Largo   M 5.29   2.43  6.82  9.57    August 2017
## 1821 C.corindum North_Key_Largo   F 7.79   3.24  8.43 11.77    August 2017
## 1822 C.corindum North_Key_Largo   M 5.64   2.75  7.54 10.07    August 2017
## 1823 C.corindum North_Key_Largo   F 8.38   3.31  9.40 12.82    August 2017
## 1824 C.corindum North_Key_Largo   F 6.40   3.00  7.98 11.03    August 2017
## 1826  K.elegans      Lake_Wales   M 5.60   3.09  8.75 11.98    August 2017
## 1827  K.elegans      Lake_Wales   F 7.54   3.79  9.84 13.27    August 2017
## 1828  K.elegans      Lake_Wales   F 7.18   3.33  9.00 12.33    August 2017
## 1829  K.elegans      Lake_Wales   M 5.52   3.01  7.97 10.92    August 2017
## 1831  K.elegans      Lake_Wales   M 5.52   3.10  8.26 11.30    August 2017
## 1832  K.elegans      Lake_Wales   F 7.53   3.44  9.56 12.97    August 2017
## 1833  K.elegans      Lake_Wales   M 5.85   3.06  8.25 11.23    August 2017
## 1834  K.elegans      Lake_Wales   F 8.08   3.66  9.70 13.37    August 2017
## 1835  K.elegans      Lake_Wales   M 5.58   2.74  7.81 10.65    August 2017
## 1836  K.elegans      Lake_Wales   M 5.79   2.87  7.94 10.97    August 2017
## 1837  K.elegans      Lake_Wales   M 5.71   3.04  8.45 11.55    August 2017
## 1838  K.elegans      Lake_Wales   F 8.23   3.64  9.75 13.28    August 2017
## 1839  K.elegans      Lake_Wales   F 7.58   3.53  9.39 12.81    August 2017
## 1840  K.elegans      Lake_Wales   F 7.55   3.48  9.09 12.45    August 2017
## 1842  K.elegans      Lake_Wales   F 7.82   3.49  9.23 12.49    August 2017
## 1844  K.elegans      Lake_Wales   M 5.32   2.98  7.59 10.58    August 2017
## 1845  K.elegans      Lake_Wales   F 7.72   3.47  9.48 13.06    August 2017
## 1846  K.elegans      Lake_Wales   M 6.03   3.22  8.52 11.54    August 2017
## 1847  K.elegans      Lake_Wales   M 5.68   3.14  8.26 10.91    August 2017
## 1848  K.elegans      Lake_Wales   M 5.86   3.12  8.50 11.28    August 2017
## 1849  K.elegans      Lake_Wales   F 7.45   3.63  9.27 12.65    August 2017
## 1850  K.elegans      Lake_Wales   M 5.69   3.26  8.49 11.99    August 2017
## 1852  K.elegans      Lake_Wales   F 7.71   3.61  9.40 12.95    August 2017
## 1853  K.elegans      Lake_Wales   M 5.63   2.88  7.81 10.49    August 2017
## 1854  K.elegans      Lake_Wales   M 5.68   3.26  8.37 11.14    August 2017
## 1855  K.elegans      Lake_Wales   M 5.51   2.83  7.89 10.83    August 2017
## 1856  K.elegans      Lake_Wales   F 7.21   3.31  9.06 12.56    August 2017
## 1857  K.elegans      Lake_Wales   M 5.71   3.30  8.83 12.12    August 2017
## 1858  K.elegans      Lake_Wales   F 8.49   3.70 10.05 14.07    August 2017
## 1859  K.elegans      Lake_Wales   M 5.47   2.98  8.13 11.14    August 2017
## 1862  K.elegans      Lake_Wales   M 5.51   3.16  8.89 12.16    August 2017
## 1863  K.elegans      Lake_Wales   F 7.78   3.51  9.07 12.70    August 2017
## 1864  K.elegans      Lake_Wales   F 7.71     NA  9.59 13.19    August 2017
## 1867  K.elegans      Lake_Wales   M 5.48   2.88  8.10 11.41    August 2017
## 1868  K.elegans      Lake_Wales   M 5.83   3.18  8.51 11.70    August 2017
## 1871  K.elegans      Lake_Wales   M 5.26   3.03  8.57 11.48    August 2017
## 1874  K.elegans      Lake_Wales   F 8.71   3.87 10.51 14.12    August 2017
## 1876  K.elegans      Lake_Wales   M 5.60   3.07  8.46 11.46    August 2017
## 1878  K.elegans      Lake_Wales   F 6.69   3.64  9.40 13.15    August 2017
## 1879  K.elegans      Lake_Wales   M 5.83   3.08  8.87 11.86    August 2017
## 1881  K.elegans      Lake_Wales   M 5.71   3.34  9.49 12.62    August 2017
## 1882  K.elegans      Lake_Wales   M 5.62   3.19  8.79 11.93    August 2017
## 1884  K.elegans      Lake_Wales   F 6.54   3.33  9.59 13.00    August 2017
## 1885  K.elegans      Lake_Wales   M 5.24   3.34  8.06 11.17    August 2017
## 1887  K.elegans      Lake_Wales   F 7.73   3.87  9.78 13.24    August 2017
## 1892  K.elegans      Lake_Wales   M 5.32   2.95  7.95 11.17    August 2017
## 1894  K.elegans      Lake_Wales   M 5.26   3.02  8.62 11.69    August 2017
## 1895  K.elegans      Lake_Wales   M 5.40   3.06  8.37 11.57    August 2017
## 1896  K.elegans      Lake_Wales   M 5.86   2.90  7.61 10.53    August 2017
## 1897  K.elegans      Lake_Wales   M 5.65   3.01  8.17 11.16    August 2017
## 1898  K.elegans      Lake_Wales   F 6.76   3.12  8.47 11.78    August 2017
## 1901  K.elegans      Lake_Wales   F 7.35   3.32  8.86 12.26    August 2017
## 1905  K.elegans      Lake_Wales   M 5.60     NA  8.65 11.87    August 2017
## 1907  K.elegans      Lake_Wales   M 4.97   2.69  7.22 10.15    August 2017
## 1912  K.elegans      Lake_Wales   M 5.49   3.03  7.89 10.80    August 2017
## 1914  K.elegans      Lake_Wales   M 5.81   3.19  8.97 12.09    August 2017
## 1915  K.elegans      Lake_Wales   M 5.37   2.54  6.17  9.14    August 2017
## 1917  K.elegans        Leesburg   M 5.23   3.05  8.75 11.43    August 2017
## 1918  K.elegans        Leesburg   F 7.20   3.29  9.05 12.30    August 2017
## 1922  K.elegans        Leesburg   M 6.05   3.26  8.61 11.63    August 2017
## 1923  K.elegans        Leesburg   F 7.11   3.20  9.13 12.30    August 2017
## 1924  K.elegans        Leesburg   M 5.78   2.86  8.16 11.39    August 2017
## 1925  K.elegans        Leesburg   M 5.72   2.89  7.89 10.72    August 2017
## 1927  K.elegans        Leesburg   M 5.35   2.80  7.71 10.49    August 2017
## 1928  K.elegans        Leesburg   F 7.77   3.82 10.22 13.70    August 2017
## 1929  K.elegans        Leesburg   F 8.44   3.66  9.83 13.58    August 2017
## 1930  K.elegans        Leesburg   M 5.60   2.64  7.39 10.28    August 2017
## 1933  K.elegans        Leesburg   F 7.75   3.48  9.70 13.37    August 2017
## 1935  K.elegans        Leesburg   F 8.14   3.70  9.78 13.30    August 2017
## 1936  K.elegans        Leesburg   M 5.39   2.96  8.40 11.39    August 2017
## 1937  K.elegans        Leesburg   M 5.87   3.00  8.18 11.47    August 2017
## 1938  K.elegans        Leesburg   M 5.30   2.81  7.67 10.40    August 2017
## 1939  K.elegans        Leesburg   M 5.17   2.72  7.45  9.98    August 2017
## 1941  K.elegans        Leesburg   M 5.36   2.75  7.85 10.61    August 2017
## 1942  K.elegans        Leesburg   F 7.14   3.37  9.21 12.69    August 2017
## 1944  K.elegans        Leesburg   M 5.56   2.81  8.31 11.24    August 2017
## 1945  K.elegans        Leesburg   F 7.01   3.15  8.52 11.79    August 2017
## 1946  K.elegans        Leesburg   M 5.58   2.96  8.22 11.14    August 2017
## 1947  K.elegans        Leesburg   M 5.55   3.00  8.20 11.17    August 2017
## 1948  K.elegans        Leesburg   F 7.35   3.49  9.39 12.62    August 2017
## 1949  K.elegans        Leesburg   M 5.41   3.07  8.53 11.59    August 2017
## 1952  K.elegans        Leesburg   M 5.41   2.65  7.65 10.62    August 2017
## 1953  K.elegans        Leesburg   M 5.27   2.87  8.08 11.12    August 2017
## 1955  K.elegans        Leesburg   M 6.27   2.84  7.42 10.06    August 2017
## 1956  K.elegans        Leesburg   F 7.14   3.37  9.52 12.83    August 2017
## 1958  K.elegans        Leesburg   M 5.69   2.87  8.18 11.20    August 2017
## 1959  K.elegans        Leesburg   F 7.82   3.43  9.52 13.21    August 2017
## 1960  K.elegans        Leesburg   M 5.62   3.22  8.76 11.80    August 2017
## 1963  K.elegans        Leesburg   M 5.86   2.74  7.90 10.71    August 2017
## 1964  K.elegans        Leesburg   M 5.15   2.59  7.16  9.86    August 2017
## 1965  K.elegans        Leesburg   M 5.52   3.09  7.91 10.68    August 2017
## 1973  K.elegans        Leesburg   F 6.72   3.05  8.26 11.43    August 2017
## 1975  K.elegans     Gainesville   M 5.59   2.77  7.70 10.83 September 2018
## 1976  K.elegans     Gainesville   M 5.48   2.89  8.43 11.23 September 2018
## 1977  K.elegans     Gainesville   M 5.66   3.02  8.78 11.95 September 2018
## 1978  K.elegans     Gainesville   F 8.29   3.85 10.26 14.18 September 2018
## 1979  K.elegans     Gainesville   F 7.54   3.42  9.12 12.19 September 2018
## 1980  K.elegans     Gainesville   M 5.32   2.66  7.37 10.08 September 2018
## 1981  K.elegans     Gainesville   M 5.72   3.14  8.98 11.90 September 2018
## 1982  K.elegans     Gainesville   F 7.12   3.30  9.11 12.36 September 2018
## 1983  K.elegans     Gainesville   F 6.43   3.40  9.34 12.37 September 2018
## 1984  K.elegans     Gainesville   F 7.25   3.65 10.40 13.81 September 2018
## 1985  K.elegans     Gainesville   F 7.36   3.25  8.89 12.16 September 2018
## 1986  K.elegans     Gainesville   F 8.03   3.55  9.73 13.38 September 2018
## 1987  K.elegans     Gainesville   F 7.21   3.01  8.60 11.69 September 2018
## 1988  K.elegans     Gainesville   F 6.93   3.49  9.82 13.11 September 2018
## 1989  K.elegans     Gainesville   F 6.06   3.22  9.32 12.63 September 2018
## 1990  K.elegans     Gainesville   F 7.68   3.50  9.42 13.15 September 2018
## 1992  K.elegans     Gainesville   M 5.66   2.94  8.45 11.49 September 2018
## 1993  K.elegans     Gainesville   M 5.78   3.04  8.60 11.67 September 2018
## 1994  K.elegans     Gainesville   M 5.58   2.95  8.59 11.56 September 2018
## 1995  K.elegans     Gainesville   M 5.32   2.94  8.11 10.81 September 2018
## 1996  K.elegans     Gainesville   M 5.50   3.07  8.05 11.26 September 2018
## 1997  K.elegans     Gainesville   F 6.59   3.26  8.64 11.64 September 2018
## 1998  K.elegans     Gainesville   M 5.42   2.87  8.27 11.08 September 2018
## 1999  K.elegans     Gainesville   F 6.51   3.47  9.26 13.25 September 2018
## 2000  K.elegans     Gainesville   F 6.61   3.19  8.67 11.67 September 2018
## 2001  K.elegans     Gainesville   M 5.11   2.70  7.81 10.50 September 2018
## 2002  K.elegans     Gainesville   M 5.52   2.97  8.48 11.46 September 2018
## 2003  K.elegans     Gainesville   M 5.93   2.89  7.87 11.04 September 2018
## 2004  K.elegans     Gainesville   M 5.29   2.96  7.68 10.94 September 2018
## 2005  K.elegans     Gainesville   F 7.80   3.32  9.45 12.82 September 2018
## 2006  K.elegans     Gainesville   F 6.42   3.46  9.10 12.45 September 2018
## 2007  K.elegans     Gainesville   F 7.69   3.74  9.71 13.17 September 2018
## 2008  K.elegans     Gainesville   M 5.51   2.79  8.34 11.01 September 2018
## 2009  K.elegans     Gainesville   F 7.16   3.24  8.73 11.84 September 2018
## 2010  K.elegans     Gainesville   M 5.79   3.09  8.78 12.04 September 2018
## 2011  K.elegans     Gainesville   M 5.78   3.25  9.07 12.37 September 2018
## 2012  K.elegans     Gainesville   M 5.89   3.10  8.75 11.86 September 2018
## 2013  K.elegans     Gainesville   F 6.68   3.53  9.45 12.73 September 2018
## 2014  K.elegans     Gainesville   M 5.49   2.71  7.55 10.66 September 2018
## 2015  K.elegans     Gainesville   F 7.69   3.51  9.63 13.27 September 2018
## 2016  K.elegans     Gainesville   F 7.26   3.68 10.03 13.45 September 2018
## 2017  K.elegans     Gainesville   F 7.26   3.72 10.29 13.78 September 2018
## 2018  K.elegans     Gainesville   M 5.53   2.76  8.02 10.72 September 2018
## 2019  K.elegans     Gainesville   M 5.61   2.98  8.17 11.09 September 2018
## 2020  K.elegans     Gainesville   F 7.42   3.47  9.64 12.99 September 2018
## 2021  K.elegans     Gainesville   M 5.71   2.79  7.95 11.04 September 2018
## 2022  K.elegans     Gainesville   M 5.28   2.95  7.96 11.14 September 2018
## 2023  K.elegans     Gainesville   M 5.84   3.01  8.33 11.29 September 2018
## 2024  K.elegans     Gainesville   F 7.98   3.40  9.51 13.08 September 2018
## 2025  K.elegans     Gainesville   F 7.10   3.17  9.26 12.82 September 2018
## 2026  K.elegans     Gainesville   F 7.69   3.34  9.78 13.10 September 2018
## 2027  K.elegans     Gainesville   M 6.15   3.03  8.56 11.63 September 2018
## 2028  K.elegans     Gainesville   M 5.07   2.68  7.40 10.06 September 2018
## 2029  K.elegans     Gainesville   F 7.15   3.51  9.40 13.13 September 2018
## 2031  K.elegans     Gainesville   F 7.32   3.28  8.69 11.92 September 2018
## 2032  K.elegans     Gainesville   F 6.43   3.40  9.11 12.58 September 2018
## 2033  K.elegans     Gainesville   M 5.47   2.81  7.82 10.70 September 2018
## 2034  K.elegans     Gainesville   M 5.65   3.01  8.76 11.76 September 2018
## 2036  K.elegans     Gainesville   M 5.41   2.92  8.00 10.86 September 2018
## 2037  K.elegans     Gainesville   F 7.94   3.54  9.18 12.89 September 2018
## 2038  K.elegans     Gainesville   M 6.00   2.95  8.46 11.51 September 2018
## 2039 C.corindum North_Key_Largo   M 6.19   3.10  8.67 11.95 September 2018
## 2040 C.corindum North_Key_Largo   M 6.02   3.19  8.47 11.62 September 2018
## 2041 C.corindum North_Key_Largo   M 6.20   2.82  7.96 11.07 September 2018
## 2042 C.corindum North_Key_Largo   F 7.07   3.01  7.82 10.87 September 2018
## 2047 C.corindum North_Key_Largo   F 9.38   3.80  9.79 13.56 September 2018
## 2050 C.corindum North_Key_Largo   F 7.25   2.81  7.74 10.73 September 2018
## 2053 C.corindum North_Key_Largo   M 5.74   2.80  7.61 10.59 September 2018
## 2055 C.corindum North_Key_Largo   F 8.48   3.51  9.53 13.02 September 2018
## 2057 C.corindum North_Key_Largo   F 7.67   3.16  7.74 11.51 September 2018
## 2058 C.corindum North_Key_Largo   M 6.53   3.15  8.60 11.85 September 2018
## 2059 C.corindum North_Key_Largo   M 6.00   3.07  8.55 11.57 September 2018
## 2062 C.corindum North_Key_Largo   F 8.75   3.49  9.08 12.79 September 2018
## 2064 C.corindum North_Key_Largo   F 8.61   3.60  9.76 13.37 September 2018
## 2065 C.corindum North_Key_Largo   M 6.31   3.22  8.62 11.85 September 2018
## 2069 C.corindum North_Key_Largo   F 9.36   3.55 10.00 13.64 September 2018
## 2071 C.corindum North_Key_Largo   M 5.69   2.77  7.57 10.38 September 2018
## 2072 C.corindum North_Key_Largo   M 5.77   2.94  7.41 10.66 September 2018
## 2073 C.corindum North_Key_Largo   F 6.67   2.94  7.33 10.69 September 2018
## 2079 C.corindum North_Key_Largo   F 8.61   3.55  9.45 12.97 September 2018
## 2081 C.corindum North_Key_Largo   F 7.83   3.32  8.77 12.27 September 2018
## 2082 C.corindum North_Key_Largo   M 6.35   3.15  8.35 11.45 September 2018
## 2083 C.corindum North_Key_Largo   F 8.51   3.64  9.26 12.66 September 2018
## 2085 C.corindum North_Key_Largo   M 6.41   3.15  8.69 12.03 September 2018
## 2086 C.corindum North_Key_Largo   M 5.58   2.80  7.70 10.39 September 2018
## 2087 C.corindum North_Key_Largo   F 7.95   3.21  8.78 12.09 September 2018
## 2088 C.corindum North_Key_Largo   F 7.65   3.28  9.35 12.44 September 2018
## 2091 C.corindum North_Key_Largo   F 7.78   3.24  8.32 11.75 September 2018
## 2094 C.corindum North_Key_Largo   M 5.41   2.63  7.44  9.94 September 2018
## 2095 C.corindum North_Key_Largo   F 8.36   3.45  9.23 12.76 September 2018
## 2097 C.corindum North_Key_Largo   F 7.89   3.19  9.47 12.89 September 2018
## 2099 C.corindum North_Key_Largo   M 5.56   2.75  7.86 10.83 September 2018
## 2101 C.corindum North_Key_Largo   F 7.95   3.27  8.61 11.85 September 2018
## 2103 C.corindum North_Key_Largo   M 6.30   2.91  8.45 11.32 September 2018
## 2107  K.elegans      Lake_Wales   F 7.16   3.29  9.14 12.49 September 2018
## 2108  K.elegans      Lake_Wales   F 7.02   3.13  8.44 11.80 September 2018
## 2109  K.elegans      Lake_Wales   F 7.60   3.45  9.26 12.71 September 2018
## 2110  K.elegans      Lake_Wales   M 5.84   3.05  8.23 11.43 September 2018
## 2111  K.elegans      Lake_Wales   M 5.52   2.69  7.76 10.47 September 2018
## 2112  K.elegans      Lake_Wales   F 6.83   3.11  8.94 12.27 September 2018
## 2113  K.elegans      Lake_Wales   F 6.88   3.13  9.10 12.47 September 2018
## 2115  K.elegans      Lake_Wales   F 6.70   3.09  8.36 11.61 September 2018
## 2116  K.elegans      Lake_Wales   M 5.71   3.00  8.08 11.00 September 2018
## 2117  K.elegans      Lake_Wales   F 7.48   3.12  9.41 12.66 September 2018
## 2118  K.elegans      Lake_Wales   F 7.83   3.42 10.21 14.19 September 2018
## 2119  K.elegans      Lake_Wales   M 5.61   3.09  8.59 11.67 September 2018
## 2120  K.elegans      Lake_Wales   F 7.46   3.65  9.93 13.34 September 2018
## 2121  K.elegans      Lake_Wales   M 5.77   2.94  8.22 11.27 September 2018
## 2122  K.elegans      Lake_Wales   F 7.51   3.26  9.33 12.56 September 2018
## 2123  K.elegans      Lake_Wales   F 7.35   3.26  8.73 12.22 September 2018
## 2124  K.elegans      Lake_Wales   M 5.81   3.07  8.68 11.71 September 2018
## 2125  K.elegans      Lake_Wales   F 8.47   3.64 10.07 14.02 September 2018
## 2126  K.elegans      Lake_Wales   F 7.32   3.58 10.19 13.51 September 2018
## 2127  K.elegans      Lake_Wales   F 7.19   3.30  9.02 12.47 September 2018
## 2128  K.elegans      Lake_Wales   M 5.68   2.65  7.56 10.60 September 2018
## 2129  K.elegans      Lake_Wales   M 5.82   3.25  8.65 11.71 September 2018
## 2130  K.elegans      Lake_Wales   F 6.05   3.08  8.14 11.49 September 2018
## 2131  K.elegans      Lake_Wales   M 5.57   2.86  7.89 11.03 September 2018
## 2133  K.elegans      Lake_Wales   M 5.26   2.79  7.97 10.73 September 2018
## 2134  K.elegans      Lake_Wales   F 6.80   3.15  8.74 11.85 September 2018
## 2136  K.elegans      Lake_Wales   F 7.82   3.76 10.17 14.19 September 2018
## 2137  K.elegans      Lake_Wales   M 5.85   3.12  8.64 12.00 September 2018
## 2138  K.elegans      Lake_Wales   F 7.78   3.50  9.32 13.17 September 2018
## 2139  K.elegans      Lake_Wales   F 7.55   3.38  9.58 12.82 September 2018
## 2140  K.elegans      Lake_Wales   F 7.58   3.60  9.69 13.14 September 2018
## 2141  K.elegans      Lake_Wales   F 7.43   3.45  9.56 12.91 September 2018
## 2142  K.elegans      Lake_Wales   F 7.29   3.23  9.22 12.56 September 2018
## 2143  K.elegans      Lake_Wales   F 7.75   3.66  9.87 13.53 September 2018
## 2144  K.elegans      Lake_Wales   M 5.57   2.79  7.56 10.74 September 2018
## 2145  K.elegans      Lake_Wales   M 5.79   3.29  8.68 11.50 September 2018
## 2146  K.elegans      Lake_Wales   M 5.40   2.75  7.60 10.55 September 2018
## 2147  K.elegans        Leesburg   M 5.45   2.98  8.12 11.05 September 2018
## 2148  K.elegans     Gainesville   F 7.48   3.44  9.12 12.60       May 2019
## 2149  K.elegans     Gainesville   F 7.66   3.58  9.94 13.63       May 2019
## 2150  K.elegans     Gainesville   M 5.14   2.63  7.51 10.21       May 2019
## 2151  K.elegans     Gainesville   F 7.68   3.73 10.13 13.47       May 2019
## 2152  K.elegans     Gainesville   M 5.91   3.31  8.83 12.47       May 2019
## 2154  K.elegans     Gainesville   F 7.87   3.75  9.93 13.35       May 2019
## 2155  K.elegans     Gainesville   M 5.22   2.73  7.10  9.88       May 2019
## 2156  K.elegans     Gainesville   M 5.34   2.86  8.11 10.90       May 2019
## 2157  K.elegans     Gainesville   F 7.60   3.95  9.67 13.80       May 2019
## 2158  K.elegans     Gainesville   F 6.98   3.60  8.95 12.30       May 2019
## 2159  K.elegans     Gainesville   F 5.91   3.20  8.80 11.86       May 2019
## 2160  K.elegans     Gainesville   M 6.24   3.47  9.09 12.80       May 2019
## 2161  K.elegans     Gainesville   F 6.30   3.56  9.09 11.94       May 2019
## 2162  K.elegans     Gainesville   F 8.09   3.55 10.02 13.84       May 2019
## 2163  K.elegans     Gainesville   F 7.98   3.91  9.75 13.98       May 2019
## 2164  K.elegans     Gainesville   F 8.64   3.54  9.31 13.34       May 2019
## 2165  K.elegans     Gainesville   F 5.74   3.28  8.81 11.81       May 2019
## 2166  K.elegans     Gainesville   F 8.28   3.83  9.90 13.64       May 2019
## 2168  K.elegans     Gainesville   F 5.42   2.96  7.71 10.13       May 2019
## 2169  K.elegans     Gainesville   F 7.80   3.45 10.34 13.52       May 2019
## 2170  K.elegans     Gainesville   F 8.16   3.80 10.10 13.21       May 2019
## 2171  K.elegans     Gainesville   F 8.22   4.05  9.98 13.50       May 2019
## 2172  K.elegans     Gainesville   M 6.19   2.98  9.11 12.05       May 2019
## 2173  K.elegans     Gainesville   F 6.10   2.77  8.05 10.45       May 2019
## 2174  K.elegans     Gainesville   F 8.83   3.64 10.62 13.59       May 2019
## 2175  K.elegans     Gainesville   M 8.63   4.09 10.17 14.07       May 2019
## 2176  K.elegans     Gainesville   F 7.73   3.43  9.08 12.52       May 2019
## 2177  K.elegans     Gainesville   F 6.96   2.75  7.98 11.29       May 2019
## 2178  K.elegans     Gainesville   M 6.00   3.07  8.58 11.37       May 2019
## 2179  K.elegans     Gainesville   F 5.76   3.11  8.56 10.96       May 2019
## 2180  K.elegans     Gainesville   F 7.94   3.68 10.38 13.63       May 2019
## 2181  K.elegans     Gainesville   F 8.55   3.79 10.35 14.16       May 2019
## 2182  K.elegans     Gainesville   F 5.71   3.19  7.81 10.87       May 2019
## 2183  K.elegans     Gainesville   F 5.68   2.89  7.87 10.53       May 2019
## 2184  K.elegans     Gainesville   F 5.48   2.91  8.12 11.38       May 2019
## 2185  K.elegans     Gainesville   F 7.96   3.74 10.23 13.69       May 2019
## 2186  K.elegans     Gainesville   F 5.95   3.11  8.84 11.05       May 2019
## 2187  K.elegans     Gainesville   F 5.34   3.05  8.07 10.83       May 2019
## 2188  K.elegans     Gainesville   F 8.15   3.92 10.21 13.99       May 2019
## 2189  K.elegans     Gainesville   F 5.89   3.31  8.68 11.40       May 2019
## 2190  K.elegans     Gainesville   M 6.44   3.29  9.33 12.58       May 2019
## 2191  K.elegans     Gainesville   F 7.27   3.47  9.27 12.69       May 2019
## 2192  K.elegans     Gainesville   F 5.77   3.39  8.59 11.61       May 2019
## 2193  K.elegans     Gainesville   F 5.74   2.96  8.42 11.34       May 2019
## 2194  K.elegans     Gainesville   F 8.25   3.41 10.46 13.77       May 2019
## 2195  K.elegans     Gainesville   F 8.11   3.47  9.69 13.42       May 2019
## 2196  K.elegans     Gainesville   F 5.68   3.20  8.13 11.37       May 2019
## 2198  K.elegans       Homestead   M 7.32   3.05  8.09 11.32       May 2019
## 2199  K.elegans       Homestead   F 5.50   2.53  4.63  7.37       May 2019
## 2200  K.elegans       Homestead   F 6.10   2.88  7.11 10.12       May 2019
## 2201  K.elegans       Homestead   M 5.37   2.68  7.29 10.01       May 2019
## 2202  K.elegans       Homestead   M 5.94   2.99  8.30 11.24       May 2019
## 2204  K.elegans       Homestead   M 5.34   2.59  4.94  7.80       May 2019
## 2212  K.elegans       Homestead   M 5.51   2.91  7.84 10.66       May 2019
## 2213  K.elegans       Homestead   F 7.49   3.30  7.31 10.63       May 2019
## 2218 C.corindum       Key_Largo   M 5.63   2.69  6.50  9.31       May 2019
## 2219 C.corindum       Key_Largo   F 8.52   3.70  9.46 12.75       May 2019
## 2220 C.corindum       Key_Largo   M 5.83   2.91  7.90 10.75       May 2019
## 2221 C.corindum       Key_Largo   M 5.45   2.73  7.29 10.19       May 2019
## 2228 C.corindum       Key_Largo   F 7.43   3.18  8.17 11.61       May 2019
## 2232 C.corindum       Key_Largo   F 8.20   3.33  8.98 12.25       May 2019
## 2233 C.corindum       Key_Largo   M 6.14   2.94  8.04 11.04       May 2019
## 2234 C.corindum       Key_Largo   M 5.59   2.80  7.03  9.98       May 2019
## 2235 C.corindum       Key_Largo   M 5.74   2.79  7.30 10.09       May 2019
## 2237 C.corindum       Key_Largo   M 6.14   3.19  8.26 11.03       May 2019
## 2238 C.corindum       Key_Largo   M 6.26   3.01  8.48 11.78       May 2019
## 2240 C.corindum       Key_Largo   M 8.71   3.55  9.32 13.06       May 2019
## 2245 C.corindum       Key_Largo   M 6.00   2.89  7.90 10.75       May 2019
## 2247 C.corindum       Key_Largo   M 5.54   3.19  8.50 11.95       May 2019
## 2251 C.corindum       Key_Largo   M 6.25   3.06  7.77 10.42       May 2019
## 2256 C.corindum       Key_Largo   M 5.89   2.87  7.75 10.51       May 2019
## 2261 C.corindum       Key_Largo   M 5.67   2.77  6.50  9.22       May 2019
## 2262 C.corindum       Key_Largo   F 7.91   3.40  8.90 12.33       May 2019
## 2263 C.corindum       Key_Largo   M 5.66   2.76  7.51 10.41       May 2019
## 2266 C.corindum       Key_Largo   M 6.26   2.99  8.15 10.85       May 2019
## 2268 C.corindum       Key_Largo   M 6.57   3.15  8.49 11.60       May 2019
## 2270 C.corindum       Key_Largo   M 5.84   2.88  7.30 10.19       May 2019
## 2274 C.corindum       Key_Largo   F 7.33   3.13  8.33 11.78       May 2019
## 2282 C.corindum       Key_Largo   M 5.20   2.50  6.72  9.71       May 2019
## 2285 C.corindum       Key_Largo   M 6.42   3.08  8.51 11.34       May 2019
## 2288 C.corindum       Key_Largo   M 5.71   2.63  7.06  9.78       May 2019
## 2291  K.elegans     Lake_Placid   F 5.34   3.15  8.25 11.32       May 2019
## 2292  K.elegans     Lake_Placid   F 5.86   2.89  8.09 11.20       May 2019
## 2293  K.elegans     Lake_Placid   F 6.65   2.94  7.56 11.37       May 2019
## 2294  K.elegans     Lake_Placid   F 8.04   3.07  9.40 12.70       May 2019
## 2295  K.elegans     Lake_Placid   F 7.22   3.50  9.50 13.00       May 2019
## 2296  K.elegans     Lake_Placid   F 7.51   3.48  9.86 13.29       May 2019
## 2297  K.elegans     Lake_Placid   F 7.78   3.81 10.12 13.14       May 2019
## 2298  K.elegans     Lake_Placid   F 5.16   2.99  8.37 11.13       May 2019
## 2300  K.elegans     Lake_Placid   F 7.53   3.85  9.15 12.61       May 2019
## 2302  K.elegans     Lake_Placid   F 8.57   4.05 10.50 13.99       May 2019
## 2305  K.elegans     Lake_Placid   F 8.27   3.48 10.12 12.86       May 2019
## 2306  K.elegans     Lake_Placid   M 5.89   3.03  8.87 12.06       May 2019
## 2308  K.elegans     Lake_Placid   F 5.22   2.72  8.01 10.65       May 2019
## 2310  K.elegans     Lake_Placid   F 5.49   2.85  7.22 10.06       May 2019
## 2312  K.elegans     Lake_Placid   F 5.98   3.13  8.34 12.41       May 2019
## 2313  K.elegans     Lake_Placid   F 5.61   3.15  8.68 11.28       May 2019
## 2314  K.elegans     Lake_Placid   F 8.49   3.59  9.49 13.13       May 2019
## 2315  K.elegans     Lake_Placid   F 7.88   3.48  9.68 12.85       May 2019
## 2316  K.elegans     Lake_Placid   F 5.25   2.91  8.44 11.34       May 2019
## 2317  K.elegans     Lake_Placid   M 5.79   3.29  8.80 11.93       May 2019
## 2318  K.elegans     Lake_Placid   F 6.36   3.28  9.53 12.03       May 2019
## 2319  K.elegans     Lake_Placid   F 5.53   3.55  8.09 11.33       May 2019
## 2320  K.elegans     Lake_Placid   F 6.94   3.20  8.69 11.45       May 2019
## 2321  K.elegans     Lake_Placid   F 8.29   4.22  9.49 13.15       May 2019
## 2322  K.elegans     Lake_Placid   F 8.39   3.45  9.61 12.97       May 2019
## 2323  K.elegans     Lake_Placid   F 8.12   3.98  7.91 13.70       May 2019
## 2324  K.elegans     Lake_Placid   F 5.79   2.97  8.34 11.29       May 2019
## 2325  K.elegans     Lake_Placid   F 5.54   2.59  7.83 11.64       May 2019
## 2326  K.elegans     Lake_Placid   F 5.04   3.18  7.59 10.55       May 2019
## 2327  K.elegans     Lake_Placid   F 8.56   4.05 10.14 13.77       May 2019
## 2328  K.elegans     Lake_Placid   F 6.25   3.21  8.75 10.86       May 2019
## 2329  K.elegans     Lake_Placid   F 6.48   2.78  6.18  9.33       May 2019
## 2330  K.elegans     Lake_Placid   F 4.88   2.67  7.77 10.19       May 2019
## 2331  K.elegans     Lake_Placid   F 5.36   3.22  8.59 10.98       May 2019
## 2332  K.elegans     Lake_Placid   F 6.82   3.15  8.41 11.61       May 2019
## 2333  K.elegans     Lake_Placid   F 8.49   3.45  9.43 12.33       May 2019
## 2334  K.elegans     Lake_Placid   F 8.11   3.65  9.43 12.79       May 2019
## 2335  K.elegans     Lake_Placid   F 7.93   3.68 10.00 12.98       May 2019
## 2337  K.elegans     Lake_Placid   F 6.70   3.22  8.70 11.39       May 2019
## 2338  K.elegans     Lake_Placid   F 7.39   3.43  9.82 13.14       May 2019
## 2340  K.elegans     Lake_Placid   M 5.75   3.12  8.75 11.56       May 2019
## 2342  K.elegans     Lake_Placid   M 5.81   3.09  8.56 12.14       May 2019
## 2343  K.elegans     Lake_Placid   F 7.49   3.55  9.41 12.23       May 2019
## 2344  K.elegans     Lake_Placid   M 5.13   2.80  7.63 10.64       May 2019
## 2345  K.elegans     Lake_Placid   F 7.72   3.78  9.90 13.51       May 2019
## 2346  K.elegans     Lake_Placid   M 5.66   3.01  7.76 11.07       May 2019
## 2347  K.elegans     Lake_Placid   F 7.64   3.25  9.80 13.89       May 2019
## 2348  K.elegans     Lake_Placid   F 5.63   3.13  8.43 10.67       May 2019
## 2349  K.elegans     Lake_Placid   F 7.80   3.52  9.79 12.53       May 2019
## 2350  K.elegans     Lake_Placid   F 5.26   3.12  7.94 11.15       May 2019
## 2351  K.elegans     Lake_Placid   F 5.40   2.88  7.92 10.51       May 2019
## 2352  K.elegans     Lake_Placid   F 5.66   3.34  8.58 11.75       May 2019
## 2353  K.elegans     Lake_Placid   M 5.75   3.16  8.29 11.25       May 2019
## 2354 C.corindum North_Key_Largo   F 8.48   3.57  9.14 12.92       May 2019
## 2355 C.corindum North_Key_Largo   M 6.27   3.04  8.40 11.46       May 2019
## 2356 C.corindum North_Key_Largo   M 5.83   2.70  7.46 10.24       May 2019
## 2357 C.corindum North_Key_Largo   M 5.83   3.12  8.40 11.43       May 2019
## 2359 C.corindum North_Key_Largo   F 8.12   3.33  9.08 12.40       May 2019
## 2361 C.corindum North_Key_Largo   M 6.50   3.09  8.10 11.04       May 2019
## 2362 C.corindum North_Key_Largo   F 8.73   3.59 10.16 13.64       May 2019
## 2363 C.corindum North_Key_Largo   M 6.03   2.96  8.02 10.92       May 2019
## 2365 C.corindum North_Key_Largo   M 5.64   2.71  7.75 10.58       May 2019
## 2366 C.corindum North_Key_Largo   M 6.23   3.10  8.35 11.35       May 2019
## 2367 C.corindum North_Key_Largo   M 5.66   2.61  7.34 10.10       May 2019
## 2368 C.corindum North_Key_Largo   M 5.50   2.75  7.38 10.10       May 2019
## 2370 C.corindum North_Key_Largo   M 6.19   2.99  8.40 11.30       May 2019
## 2371 C.corindum North_Key_Largo   M 5.60   2.73  7.34 10.22       May 2019
## 2372 C.corindum North_Key_Largo   M 6.75   3.07  8.23 11.19       May 2019
## 2373 C.corindum North_Key_Largo   M 6.32   3.28  8.75 11.80       May 2019
## 2374 C.corindum North_Key_Largo   M 6.61   3.08  8.27 11.12       May 2019
## 2376 C.corindum North_Key_Largo   M 6.54   3.13  8.64 11.66       May 2019
## 2379 C.corindum North_Key_Largo   M 6.29   2.94  7.89 10.84       May 2019
## 2381 C.corindum North_Key_Largo   F 8.23   3.52  8.89 12.12       May 2019
## 2383 C.corindum North_Key_Largo   M 5.62   2.93  7.63 10.70       May 2019
## 2386 C.corindum North_Key_Largo   F 7.09   3.06  8.14 11.49       May 2019
## 2387 C.corindum North_Key_Largo   M 6.17   3.08  8.54 11.11       May 2019
## 2388 C.corindum North_Key_Largo   M 5.56   2.89  7.83 10.56       May 2019
## 2389 C.corindum North_Key_Largo   F 6.80   3.01  7.98 11.10       May 2019
## 2390 C.corindum North_Key_Largo   F 7.55   3.35  8.91 12.04       May 2019
## 2391 C.corindum North_Key_Largo   F 7.07   3.16  8.43 11.51       May 2019
## 2392 C.corindum North_Key_Largo   M 6.25   3.11  8.24 11.24       May 2019
## 2394 C.corindum North_Key_Largo   F 8.04   3.36  8.93 12.34       May 2019
## 2395 C.corindum North_Key_Largo   F 6.37   2.68  7.29 10.29       May 2019
## 2398 C.corindum North_Key_Largo   F 7.20   3.17  7.87 11.16       May 2019
## 2399 C.corindum North_Key_Largo   M 6.98   3.14  8.39 11.65       May 2019
## 2400 C.corindum North_Key_Largo   F 7.65   3.52  8.94 12.39       May 2019
## 2401 C.corindum North_Key_Largo   M 6.09   2.80  7.72 10.39       May 2019
## 2403 C.corindum North_Key_Largo   M 7.15   3.38  9.10 12.57       May 2019
## 2404 C.corindum North_Key_Largo   M 5.43   2.61  7.30  9.97       May 2019
## 2406 C.corindum North_Key_Largo   M 5.25   2.67  7.72 10.48       May 2019
## 2408 C.corindum North_Key_Largo   F 8.98   3.81  9.92 13.40       May 2019
## 2409 C.corindum North_Key_Largo   M 5.96   2.87  7.76 10.64       May 2019
## 2410 C.corindum North_Key_Largo   M 5.73   2.91  7.49 10.56       May 2019
## 2417 C.corindum North_Key_Largo   F 7.54   3.56  9.03 12.33       May 2019
## 2418 C.corindum North_Key_Largo   M 5.76   2.79  7.43 10.63       May 2019
## 2420 C.corindum North_Key_Largo   F 7.50   3.24  8.72 11.94       May 2019
## 2421 C.corindum North_Key_Largo   F 8.22   3.74  9.87 13.73       May 2019
## 2422 C.corindum North_Key_Largo   F 9.78   3.74  9.92 13.49       May 2019
## 2423 C.corindum North_Key_Largo   F 6.63   3.08  7.69 10.77       May 2019
## 2425 C.corindum North_Key_Largo   M 5.92   3.02  8.06 10.91       May 2019
## 2428 C.corindum North_Key_Largo   M 5.93   2.78  7.83 10.63       May 2019
## 2429 C.corindum North_Key_Largo   F 7.79   3.75  9.81 13.10       May 2019
## 2431 C.corindum North_Key_Largo   M 5.98   2.98  7.86 10.87       May 2019
## 2432 C.corindum North_Key_Largo   M 5.72   2.75  7.50 10.28       May 2019
## 2434 C.corindum North_Key_Largo   M 5.73   2.73  7.56 10.58       May 2019
## 2436 C.corindum North_Key_Largo   M 6.06   3.05  8.42 11.41       May 2019
## 2439 C.corindum North_Key_Largo   M 5.78   2.78  7.69 10.75       May 2019
## 2440 C.corindum North_Key_Largo   M 5.50   2.63  7.33 10.10       May 2019
## 2441 C.corindum North_Key_Largo   M 5.99   2.95  8.05 11.10       May 2019
## 2447 C.corindum North_Key_Largo   M 5.33   2.46  6.85  9.35       May 2019
## 2452 C.corindum North_Key_Largo   M 5.73   2.87  7.73 10.69       May 2019
## 2456 C.corindum North_Key_Largo   F 8.11   3.58  9.45 12.86       May 2019
## 2457 C.corindum North_Key_Largo   M 5.91   2.85  7.61 10.42       May 2019
## 2459 C.corindum North_Key_Largo   M 5.93   2.84  7.56 10.29       May 2019
## 2466 C.corindum North_Key_Largo   F 7.89   3.44  8.95 12.39       May 2019
## 2469 C.corindum North_Key_Largo   F 7.77   3.42  9.07 12.61       May 2019
## 2470 C.corindum North_Key_Largo   M 6.30   3.06  7.84 10.76       May 2019
## 2472 C.corindum North_Key_Largo   F 8.73   3.90 10.42 14.30       May 2019
## 2473 C.corindum North_Key_Largo   M 6.73   3.31  8.99 12.06       May 2019
## 2476 C.corindum North_Key_Largo   M 6.17   3.42  8.80 11.94       May 2019
## 2477 C.corindum North_Key_Largo   M 6.08   3.03  8.21 11.08       May 2019
## 2478 C.corindum North_Key_Largo   F 8.43   3.27  8.68 12.17       May 2019
## 2479 C.corindum North_Key_Largo   F 8.73   3.73  9.51 13.01       May 2019
## 2480 C.corindum North_Key_Largo   F 8.79   3.73 10.31 13.87       May 2019
## 2482 C.corindum North_Key_Largo   M 6.13   3.11  8.11 11.14       May 2019
## 2484 C.corindum North_Key_Largo   F 7.41   3.26  8.23 11.43       May 2019
## 2487 C.corindum North_Key_Largo   M 6.31   3.39  7.94 11.35       May 2019
## 2496 C.corindum North_Key_Largo   M 6.20   3.05  8.04 10.90       May 2019
## 2497 C.corindum North_Key_Largo   M 5.97   3.01  8.08 10.97       May 2019
## 2498 C.corindum North_Key_Largo   F 8.16   3.50  8.92 12.44       May 2019
## 2499 C.corindum North_Key_Largo   F 8.35   3.90  9.53 13.14       May 2019
## 2501 C.corindum North_Key_Largo   M 6.03   2.79  7.32  9.96       May 2019
## 2502 C.corindum North_Key_Largo   F 8.02   3.73  9.65 13.41       May 2019
## 2503 C.corindum North_Key_Largo   F 8.28   3.63  9.08 12.60       May 2019
## 2504 C.corindum North_Key_Largo   M 6.09   2.90  8.24 11.35       May 2019
## 2505 C.corindum North_Key_Largo   M 5.95   2.70  7.65 10.58       May 2019
## 2507 C.corindum North_Key_Largo   F 7.83   3.42  8.92 12.28       May 2019
## 2510 C.corindum North_Key_Largo   F 8.32   3.33  8.82 12.31       May 2019
## 2512 C.corindum North_Key_Largo   M 6.02   3.05  8.40 11.35       May 2019
## 2514 C.corindum North_Key_Largo   F 8.52   3.51  9.63 12.95       May 2019
## 2518 C.corindum North_Key_Largo   F 8.23   3.57  9.52 12.80       May 2019
## 2519 C.corindum North_Key_Largo   F 7.39   3.15  8.47 11.62       May 2019
## 2521 C.corindum North_Key_Largo   M 5.93   2.92  7.94 10.86       May 2019
## 2523 C.corindum North_Key_Largo   M 6.01   3.07  8.20 11.22       May 2019
## 2524 C.corindum North_Key_Largo   M 6.22   3.24  8.32 11.46       May 2019
## 2525 C.corindum North_Key_Largo   M 5.83   2.79  7.17 10.15       May 2019
## 2526 C.corindum North_Key_Largo   F 8.56   3.62  9.23 12.44       May 2019
## 2527 C.corindum North_Key_Largo   F 8.22   3.73  9.36 12.69       May 2019
## 2530 C.corindum North_Key_Largo   F 7.60   3.20  8.69 12.19       May 2019
## 2535 C.corindum North_Key_Largo   F 8.75   3.73  9.47 13.07       May 2019
## 2537 C.corindum North_Key_Largo   F 8.17   3.65  9.16 12.56       May 2019
## 2541 C.corindum North_Key_Largo   M 5.74   2.91  8.26 11.18       May 2019
## 2543 C.corindum North_Key_Largo   M 5.63   2.90  8.40 11.29       May 2019
## 2544 C.corindum North_Key_Largo   M 5.89   2.95  8.03 10.77       May 2019
## 2545 C.corindum North_Key_Largo   M 5.91   2.84  7.23 10.09       May 2019
## 2546 C.corindum North_Key_Largo   F 8.73   3.65  9.64 12.92       May 2019
## 2549 C.corindum North_Key_Largo   M 6.09   2.84  7.42 10.38       May 2019
## 2554 C.corindum North_Key_Largo   F 6.87   3.20  8.61 11.87       May 2019
## 2561 C.corindum North_Key_Largo   M 5.97   2.92  7.90 10.89       May 2019
## 2566 C.corindum North_Key_Largo   M 6.22   3.09  8.24 11.48       May 2019
## 2567 C.corindum North_Key_Largo   F 8.12   3.72  9.08 12.61       May 2019
## 2568 C.corindum North_Key_Largo   F 7.53   3.67  9.57 12.90       May 2019
## 2569 C.corindum North_Key_Largo   F 6.54   3.07  7.63 10.85       May 2019
## 2570 C.corindum North_Key_Largo   M 6.53   3.34  9.46 12.50       May 2019
## 2572 C.corindum North_Key_Largo   M 5.92   3.17  8.55 11.76       May 2019
## 2573 C.corindum North_Key_Largo   F 9.11   3.69  9.84 13.46       May 2019
## 2574 C.corindum North_Key_Largo   F 8.15   3.43  9.08 12.23       May 2019
## 2575 C.corindum North_Key_Largo   M 6.02   3.62 10.07 13.23       May 2019
## 2576 C.corindum North_Key_Largo   F 7.98   3.33  8.83 12.04       May 2019
## 2577 C.corindum North_Key_Largo   M 5.96   2.81  7.79 10.71       May 2019
## 2578 C.corindum North_Key_Largo   F 7.94   3.64  9.61 13.23       May 2019
## 2579 C.corindum North_Key_Largo   M 6.41   3.06  8.31 11.68       May 2019
## 2580 C.corindum North_Key_Largo   M 4.96   2.65  6.97  9.80       May 2019
## 2581 C.corindum North_Key_Largo   F 7.25   3.23  8.40 11.60       May 2019
## 2582 C.corindum North_Key_Largo   M 5.96   2.95  7.89 10.83       May 2019
## 2584 C.corindum North_Key_Largo   M 6.16   2.84  7.89 10.89       May 2019
## 2585 C.corindum North_Key_Largo   F 6.62   3.82 10.01 13.65       May 2019
## 2586 C.corindum North_Key_Largo   M 5.75   2.97  9.03 10.96       May 2019
## 2587 C.corindum North_Key_Largo   F 8.43   3.54  9.34 12.55       May 2019
## 2588 C.corindum North_Key_Largo   M 6.19   3.08  8.16 11.37       May 2019
## 2590 C.corindum North_Key_Largo   F 9.84   4.11 10.91 15.02       May 2019
## 2591 C.corindum North_Key_Largo   M 6.05   3.03  7.85 10.85       May 2019
## 2592 C.corindum North_Key_Largo   M 5.77   3.04  7.74 10.84       May 2019
## 2593 C.corindum North_Key_Largo   M 5.95   2.82  7.63 10.57       May 2019
## 2595 C.corindum North_Key_Largo   M 5.81   2.85  7.36  9.92       May 2019
## 2596 C.corindum North_Key_Largo   F 7.77   3.36  8.77 12.28       May 2019
## 2597 C.corindum North_Key_Largo   F 8.33   3.42  8.94 12.64       May 2019
## 2598 C.corindum North_Key_Largo   F 8.37   3.49  9.35 12.71       May 2019
## 2600 C.corindum North_Key_Largo   F 8.17   3.31  8.73 12.37       May 2019
## 2604 C.corindum  Plantation_Key   M 5.57   2.58  7.07  9.84       May 2019
## 2606 C.corindum  Plantation_Key   M 6.01   3.22  8.72 11.55       May 2019
## 2607 C.corindum  Plantation_Key   M 6.26   3.15  7.99 11.20       May 2019
## 2608 C.corindum  Plantation_Key   F 8.50   3.69  9.52 13.16       May 2019
## 2614 C.corindum  Plantation_Key   M 6.37   2.96  8.23 11.22       May 2019
## 2622 C.corindum  Plantation_Key   M 5.63   2.72  7.30 10.17       May 2019
## 2624 C.corindum  Plantation_Key   M 6.14   2.96  7.90 11.18       May 2019
## 2625 C.corindum  Plantation_Key   M 6.17   2.93  7.69 11.07       May 2019
## 2628 C.corindum  Plantation_Key   M 5.98   3.07  7.75 10.84       May 2019
## 2629 C.corindum  Plantation_Key   F 8.56   3.79 10.06 13.66       May 2019
## 2634 C.corindum  Plantation_Key   F 8.07   3.48  9.28 12.55       May 2019
## 2637  K.elegans     Gainesville   F 7.81   3.58  9.57 13.13   October 2019
## 2638  K.elegans     Gainesville   M 6.54   3.36  8.93 12.33   October 2019
## 2639  K.elegans     Gainesville   M 5.64   3.20  8.34 11.50   October 2019
## 2640  K.elegans     Gainesville   F 7.86   3.59  9.82 13.37   October 2019
## 2641  K.elegans     Gainesville   F 8.57   3.90 11.30 14.72   October 2019
## 2645  K.elegans     Gainesville   M 5.72   3.18  8.53 11.55   October 2019
## 2647  K.elegans     Gainesville   F 6.78   3.25  9.03 11.85   October 2019
## 2651  K.elegans     Gainesville   M 5.79   3.37  9.34 12.55   October 2019
## 2652  K.elegans     Gainesville   M 5.60   3.41  9.25 12.19   October 2019
## 2653  K.elegans       Homestead   M 6.20   3.31  8.85 12.20   October 2019
## 2654  K.elegans       Homestead   F 7.94   3.75 10.28 13.41   October 2019
## 2655  K.elegans       Homestead   M 5.93   3.21  8.53 11.82   October 2019
## 2656  K.elegans       Homestead   M 5.92   3.19  8.71 11.52   October 2019
## 2657  K.elegans       Homestead   F 8.37   3.80 10.22 14.17   October 2019
## 2658  K.elegans       Homestead   M 5.69   3.10  8.70 11.60   October 2019
## 2659  K.elegans       Homestead   F 7.88   4.07 10.46 14.08   October 2019
## 2660  K.elegans       Homestead   M 5.95   3.03  8.89 11.69   October 2019
## 2661  K.elegans       Homestead   M 5.84   3.15  8.74 11.55   October 2019
## 2662  K.elegans       Homestead   F 8.54   3.59  9.63 13.36   October 2019
## 2663  K.elegans       Homestead   M 5.86   3.12  8.64 11.82   October 2019
## 2664  K.elegans       Homestead   F 8.02   3.69  9.86 13.57   October 2019
## 2665  K.elegans       Homestead   F 8.33   3.74  9.30 12.73   October 2019
## 2666  K.elegans       Homestead   F 7.96   3.67 10.00 13.34   October 2019
## 2667  K.elegans       Homestead   F 7.98   3.66 10.23 13.60   October 2019
## 2669  K.elegans       Homestead   M 5.38   3.00  8.22 10.99   October 2019
## 2670  K.elegans       Homestead   M 5.88   3.15  8.60 11.69   October 2019
## 2671  K.elegans       Homestead   M 6.00   3.23  9.32 12.26   October 2019
## 2672  K.elegans       Homestead   M 6.08   3.05  8.29 11.20   October 2019
## 2673  K.elegans       Homestead   M 5.74   3.15  8.74 11.78   October 2019
## 2674  K.elegans       Homestead   M 5.57   3.04  8.33 11.11   October 2019
## 2675  K.elegans       Homestead   M 5.70   3.23  8.54 11.59   October 2019
## 2676  K.elegans       Homestead   M 6.12   3.26  9.14 12.22   October 2019
## 2677  K.elegans       Homestead   M 6.06   3.29  8.80 12.10   October 2019
## 2678  K.elegans       Homestead   M 6.14   3.19  9.02 12.10   October 2019
## 2679  K.elegans       Homestead   M 5.88   3.39  9.00 12.18   October 2019
## 2683  K.elegans       Homestead   F 7.97   3.91  9.98 13.19   October 2019
## 2684  K.elegans       Homestead   M 5.75   3.32  9.04 11.98   October 2019
## 2685  K.elegans       Homestead   M 5.27   3.16  8.45 11.21   October 2019
## 2686  K.elegans       Homestead   F 7.61   3.46  9.41 12.90   October 2019
## 2687  K.elegans       Homestead   M 5.50   3.01  8.61 11.37   October 2019
## 2693 C.corindum       Key_Largo   F 8.56   3.55  9.12 12.58   October 2019
## 2695 C.corindum       Key_Largo   M 6.25   3.37  8.67 11.84   October 2019
## 2697 C.corindum       Key_Largo   M 3.60   2.37  7.13  9.19   October 2019
## 2698 C.corindum       Key_Largo   M 5.91   2.86  7.62 10.64   October 2019
## 2701 C.corindum       Key_Largo   F 7.58   3.23  8.24 11.90   October 2019
## 2704  K.elegans     Lake_Placid   M 5.30   3.16  8.59 11.62   October 2019
## 2705  K.elegans     Lake_Placid   F 7.58   3.10  8.07 11.40   October 2019
## 2706  K.elegans     Lake_Placid   F 7.75   3.60  9.68 13.39   October 2019
## 2707  K.elegans     Lake_Placid   M 5.61   3.02  8.38 11.54   October 2019
## 2709  K.elegans     Lake_Placid   F 6.97   3.64 10.09 13.49   October 2019
## 2710  K.elegans     Lake_Placid   F 7.64   3.51  9.50 13.20   October 2019
## 2711  K.elegans     Lake_Placid   F 8.79   3.96 10.25 14.29   October 2019
## 2712  K.elegans     Lake_Placid   M 5.83   3.22  8.29 11.55   October 2019
## 2713  K.elegans     Lake_Placid   F 7.99   3.65 10.04 13.85   October 2019
## 2716  K.elegans     Lake_Placid   F 7.64   3.51  9.40 12.83   October 2019
## 2717  K.elegans     Lake_Placid   F 7.04   3.56  9.86 12.73   October 2019
## 2718  K.elegans     Lake_Placid   F 7.35   3.29  8.79 12.27   October 2019
## 2719  K.elegans     Lake_Placid   M 5.41   2.90  8.04 10.86   October 2019
## 2720  K.elegans     Lake_Placid   F 8.51   3.85 10.32 14.10   October 2019
## 2721  K.elegans     Lake_Placid   F 7.72   3.54  9.30 12.79   October 2019
## 2722  K.elegans     Lake_Placid   M 5.69   3.33  9.49 12.73   October 2019
## 2723  K.elegans     Lake_Placid   M 5.74   2.99  8.38 11.33   October 2019
## 2724  K.elegans     Lake_Placid   F 7.97   3.86  9.85 13.47   October 2019
## 2725  K.elegans     Lake_Placid   M 5.73   3.27  9.02 12.22   October 2019
## 2726  K.elegans     Lake_Placid   M 5.46   3.04  8.09 11.18   October 2019
## 2727  K.elegans     Lake_Placid   F 7.86   3.28  8.98 12.41   October 2019
## 2728  K.elegans     Lake_Placid   M 5.87   3.23  8.59 11.76   October 2019
## 2730  K.elegans     Lake_Placid   F 8.19   3.58  9.47 13.32   October 2019
## 2731  K.elegans     Lake_Placid   M 5.78   3.19  8.86 11.93   October 2019
## 2733  K.elegans     Lake_Placid   M 5.55   2.98  8.23 11.32   October 2019
## 2734  K.elegans     Lake_Placid   F 7.79   3.72  9.73 13.44   October 2019
## 2735  K.elegans     Lake_Placid   F 7.70   3.27  9.00 12.50   October 2019
## 2736  K.elegans     Lake_Placid   M 5.92   3.34  8.90 11.94   October 2019
## 2737  K.elegans     Lake_Placid   M 6.08   3.41  8.60 11.88   October 2019
## 2738  K.elegans     Lake_Placid   F 7.43   3.51  9.38 12.71   October 2019
## 2739  K.elegans     Lake_Placid   F 7.97   3.47  9.65 13.23   October 2019
## 2740  K.elegans     Lake_Placid   M 5.70   2.71  7.56 10.58   October 2019
## 2741  K.elegans     Lake_Placid   M 5.45   2.74  7.52 10.31   October 2019
## 2742  K.elegans     Lake_Placid   M 5.66   3.08  7.97 10.97   October 2019
## 2743  K.elegans     Lake_Placid   M 6.15   3.27  8.47 11.54   October 2019
## 2744  K.elegans     Lake_Placid   M 6.20   3.12  8.73 11.82   October 2019
## 2745  K.elegans     Lake_Placid   M 5.62   3.07  8.09 11.08   October 2019
## 2747  K.elegans      Lake_Wales   F 6.97   3.45  9.61 12.86   October 2019
## 2748  K.elegans      Lake_Wales   F 7.62   3.49  9.78 13.42   October 2019
## 2749  K.elegans      Lake_Wales   F 8.27   3.77 10.10 13.86   October 2019
## 2752  K.elegans      Lake_Wales   M 6.16   3.22  8.75 11.93   October 2019
## 2754  K.elegans      Lake_Wales   F 7.72   3.54 10.05 13.24   October 2019
## 2756  K.elegans      Lake_Wales   M 5.54   2.64  5.53  8.33   October 2019
## 2757  K.elegans      Lake_Wales   M 5.51   3.18  8.44 11.46   October 2019
## 2758  K.elegans      Lake_Wales   F 8.10   3.90 10.31 14.12   October 2019
## 2759  K.elegans      Lake_Wales   M 5.85   3.20  8.94 12.08   October 2019
## 2760  K.elegans      Lake_Wales   F 8.11   3.68  9.99 13.67   October 2019
## 2761  K.elegans      Lake_Wales   F 7.52   3.39  9.67 13.10   October 2019
## 2763  K.elegans      Lake_Wales   M 5.61   2.98  8.03 11.21   October 2019
## 2764  K.elegans      Lake_Wales   M 5.76   3.23  8.37 11.35   October 2019
## 2765  K.elegans      Lake_Wales   F 8.25   3.82 10.40 14.32   October 2019
## 2767  K.elegans      Lake_Wales   M 5.65   3.09  8.35 11.43   October 2019
## 2768  K.elegans      Lake_Wales   F 7.92   3.49  9.17 12.87   October 2019
## 2769  K.elegans      Lake_Wales   F 6.98   3.88  9.70 13.06   October 2019
## 2772  K.elegans        Leesburg   F 8.27   3.71 10.48 14.35   October 2019
## 2773  K.elegans        Leesburg   F 8.13   3.71  9.98 13.78   October 2019
## 2774  K.elegans        Leesburg   F 8.15   3.47  9.36 13.06   October 2019
## 2777  K.elegans        Leesburg   M 5.22   2.80  7.42 10.60   October 2019
## 2779  K.elegans        Leesburg   F 7.49   3.25  8.54 11.88   October 2019
## 2780  K.elegans        Leesburg   M 5.65   3.06  8.46 11.52   October 2019
## 2781  K.elegans        Leesburg   M 5.67   2.94  7.15 10.36   October 2019
## 2782  K.elegans        Leesburg   F 8.21   3.90 10.35 13.85   October 2019
## 2784  K.elegans        Leesburg   M 5.53   2.99  8.42 11.40   October 2019
## 2785  K.elegans        Leesburg   M 5.85   2.99  8.04 11.10   October 2019
## 2786  K.elegans        Leesburg   M 5.23   2.75  7.36 10.14   October 2019
## 2787  K.elegans        Leesburg   F 8.20   3.66  9.55 13.17   October 2019
## 2788  K.elegans        Leesburg   M 5.97   2.69  6.04  8.88   October 2019
## 2789  K.elegans        Leesburg   M 5.76   3.28  8.84 11.73   October 2019
## 2791  K.elegans        Leesburg   F 7.59   3.65  9.85 12.89   October 2019
## 2792  K.elegans        Leesburg   M 6.05   3.12  8.66 11.77   October 2019
## 2794  K.elegans        Leesburg   F 8.42   3.91 10.56 14.66   October 2019
## 2795  K.elegans        Leesburg   F 7.79   3.69  9.86 13.21   October 2019
## 2797  K.elegans        Leesburg   M 6.04   3.25  8.34 11.57   October 2019
## 2798 C.corindum North_Key_Largo   F 8.10   3.42  8.88 12.66   October 2019
## 2799 C.corindum North_Key_Largo   M 6.23   2.94  7.76 10.94   October 2019
## 2800 C.corindum North_Key_Largo   F 8.26   3.77 10.11 13.74   October 2019
## 2801 C.corindum North_Key_Largo   F 8.74   3.43  8.99 12.55   October 2019
## 2802 C.corindum North_Key_Largo   M 5.92   3.07  8.41 11.38   October 2019
## 2806 C.corindum North_Key_Largo   M 6.60   2.89  7.98 11.27   October 2019
## 2807 C.corindum North_Key_Largo   M 6.31   3.09  8.15 11.11   October 2019
## 2808 C.corindum North_Key_Largo   M 6.62   2.99  8.62 11.57   October 2019
## 2810 C.corindum North_Key_Largo   M 6.19   2.84  7.69 10.69   October 2019
## 2812 C.corindum North_Key_Largo   M 6.56   3.06  8.04 10.92   October 2019
## 2813 C.corindum North_Key_Largo   F 8.98   3.68  9.06 12.81   October 2019
## 2816 C.corindum North_Key_Largo   M 6.03   3.04  8.25 11.01   October 2019
## 2820 C.corindum North_Key_Largo   F 7.51   3.00  8.21 11.68   October 2019
## 2823 C.corindum North_Key_Largo   F 7.79   3.45  9.24 12.54   October 2019
## 2826 C.corindum North_Key_Largo   F 8.86   3.75  9.60 13.42   October 2019
## 2830 C.corindum North_Key_Largo   F 9.07   3.66  9.48 13.11   October 2019
## 2831 C.corindum North_Key_Largo   F 8.57   3.59  8.91 12.73   October 2019
## 2833 C.corindum North_Key_Largo   M 6.34   2.91  8.08 11.25   October 2019
## 2834 C.corindum North_Key_Largo   F 7.66   3.16  8.36 11.67   October 2019
## 2835 C.corindum North_Key_Largo   F 8.64   3.99  9.71 13.56   October 2019
## 2836 C.corindum North_Key_Largo   F 9.09   3.66  9.75 13.43   October 2019
## 2837 C.corindum North_Key_Largo   F 7.79   3.37  8.52 12.15   October 2019
## 2839 C.corindum North_Key_Largo   F 8.77   3.51  9.26 12.35   October 2019
## 2841 C.corindum North_Key_Largo   F 9.07   3.67  9.91 13.69   October 2019
## 2842 C.corindum North_Key_Largo   F 8.22   3.50  8.73 12.27   October 2019
## 2844 C.corindum North_Key_Largo   F 8.40   3.46  9.33 12.94   October 2019
## 2845 C.corindum North_Key_Largo   F 8.50   3.75  9.46 13.32   October 2019
## 2847 C.corindum North_Key_Largo   M 6.23   3.10  8.29 11.01   October 2019
## 2848 C.corindum North_Key_Largo   F 9.25   3.93 10.08 13.78   October 2019
## 2850 C.corindum North_Key_Largo   M 6.60   3.23  8.34 11.71   October 2019
## 2851 C.corindum North_Key_Largo   M 6.16   3.10  8.34 11.57   October 2019
## 2853 C.corindum North_Key_Largo   M 6.28   3.11  8.59 11.75   October 2019
## 2854 C.corindum North_Key_Largo   F 6.56   3.19  8.32 11.34   October 2019
## 2855 C.corindum North_Key_Largo   M 5.95   3.05  8.21 11.33   October 2019
## 2856 C.corindum North_Key_Largo   F 8.85   3.30  8.85 12.36   October 2019
## 2859 C.corindum North_Key_Largo   M 6.66   3.23  8.63 11.63   October 2019
## 2860 C.corindum North_Key_Largo   F 9.35   3.78 10.19 14.01   October 2019
## 2862 C.corindum North_Key_Largo   M 5.69   2.88  7.83 10.83   October 2019
## 2863 C.corindum North_Key_Largo   M 6.17   3.24  8.40 11.61   October 2019
## 2864 C.corindum North_Key_Largo   M 6.49   3.29  8.87 12.41   October 2019
## 2868 C.corindum North_Key_Largo   F 8.61   3.68  9.53 13.47   October 2019
## 2869 C.corindum North_Key_Largo   M 5.73   2.85  7.25 10.10   October 2019
## 2871 C.corindum North_Key_Largo   M 5.94   3.07  7.99 10.94   October 2019
## 2878 C.corindum North_Key_Largo   F 8.43   3.32  8.88 12.02   October 2019
## 2884 C.corindum  Plantation_Key   F 8.50   3.67  9.20 12.91   October 2019
## 2886 C.corindum  Plantation_Key   M 6.01   2.97  7.62 10.51   October 2019
## 2887 C.corindum  Plantation_Key   F 7.76   3.44  9.12 12.56   October 2019
## 2891 C.corindum  Plantation_Key   M 6.36   3.53  9.33 11.98   October 2019
## 2892 C.corindum  Plantation_Key   F 8.10   3.32  8.38 11.68   October 2019
## 2893 C.corindum  Plantation_Key   M 5.87   2.70  7.40 10.53   October 2019
## 2895 C.corindum  Plantation_Key   F 9.08   3.88  9.80 13.68   October 2019
## 2896 C.corindum  Plantation_Key   M 5.72   2.97  7.96 11.05   October 2019
## 2897  K.elegans     Gainesville   M 6.03   3.36  8.90 12.29  February 2020
## 2899  K.elegans     Gainesville   M 5.18   3.05  8.23 11.06  February 2020
## 2900  K.elegans     Gainesville   M 5.65   3.05  8.35 11.34  February 2020
## 2901  K.elegans     Gainesville   M 5.56   3.10  8.23 11.32  February 2020
## 2904  K.elegans     Gainesville   M 5.61   3.31  8.84 11.93  February 2020
## 2905  K.elegans     Gainesville   M 5.65   2.99  7.95 11.06  February 2020
## 2906  K.elegans     Gainesville   M 5.34   2.80  7.67 10.67  February 2020
## 2907  K.elegans     Gainesville   F 6.49   3.22  8.96 12.25  February 2020
## 2908  K.elegans     Gainesville   M 5.67   2.97  8.31 11.47  February 2020
## 2911  K.elegans     Gainesville   M 5.23   3.08  8.14 11.03  February 2020
## 2912  K.elegans     Gainesville   M 5.12   3.03  7.77 10.64  February 2020
## 2914  K.elegans     Gainesville   F 6.65   3.52  9.59 12.99  February 2020
## 2917  K.elegans     Gainesville   M 5.26   3.02  8.11 11.26  February 2020
## 2919  K.elegans     Gainesville   M 5.07   2.90  8.04 10.80  February 2020
## 2921  K.elegans     Gainesville   M 6.11   3.14  7.87 10.81  February 2020
## 2923  K.elegans     Gainesville   M 5.02   2.83  7.44 10.22  February 2020
## 2929  K.elegans     Gainesville   M 6.13   3.44  9.16 12.60  February 2020
## 2930  K.elegans     Gainesville   F 5.25   3.07  8.26 11.03  February 2020
## 2931  K.elegans     Gainesville   M 5.22   3.16  8.30 11.16  February 2020
## 2932  K.elegans     Gainesville   M 5.51   3.08  8.28 11.13  February 2020
## 2933  K.elegans       Homestead   M 5.59   2.84  7.50 10.55  February 2020
## 2934  K.elegans       Homestead   F 7.47   3.82  9.66 13.31  February 2020
## 2935  K.elegans       Homestead   F 7.70   3.53  9.43 12.83  February 2020
## 2936  K.elegans       Homestead   F 6.14   2.95  7.81 11.09  February 2020
## 2937  K.elegans       Homestead   F 7.74   3.38  9.09 12.86  February 2020
## 2939  K.elegans       Homestead   M 5.14   2.55  7.08  9.77  February 2020
## 2940  K.elegans       Homestead   F 7.83   3.40  8.98 12.67  February 2020
## 2944  K.elegans       Homestead   M 5.17   2.69  6.93  9.64  February 2020
## 2945  K.elegans       Homestead   M 5.32   2.57  7.47 10.35  February 2020
## 2947  K.elegans       Homestead   F 7.01   3.25  8.17 11.63  February 2020
## 2948  K.elegans       Homestead   F 6.63   3.15  8.18 11.58  February 2020
## 2949  K.elegans       Homestead   F 7.09   3.13  8.73 12.08  February 2020
## 2950  K.elegans       Homestead   M 5.27   2.55  7.03  9.72  February 2020
## 2951  K.elegans       Homestead   M 5.19   2.75  7.24  9.97  February 2020
## 2952  K.elegans       Homestead   F 6.98   3.15  8.23 11.59  February 2020
## 2953  K.elegans       Homestead   M 5.81   2.80  7.91 10.81  February 2020
## 2954  K.elegans       Homestead   F 7.68   3.76 10.40 14.34  February 2020
## 2955  K.elegans       Homestead   F 6.21   3.04  8.11 11.33  February 2020
## 2956  K.elegans       Homestead   M 5.19   2.61  6.48  9.30  February 2020
## 2957  K.elegans       Homestead   M 5.42   2.78  7.72 10.74  February 2020
## 2958  K.elegans       Homestead   M 5.49   2.65  7.22 10.07  February 2020
## 2959  K.elegans       Homestead   M 5.19   2.68  7.12  9.99  February 2020
## 2960  K.elegans       Homestead   M 4.98   2.49  6.24  8.84  February 2020
## 2964  K.elegans       Homestead   M 5.13   2.89  7.42 10.08  February 2020
## 2965  K.elegans       Homestead   M 5.04   3.25  8.62 11.62  February 2020
## 2970  K.elegans       Homestead   F 7.26   3.06  8.52 11.96  February 2020
## 2971  K.elegans       Homestead   M 5.54   2.84  7.72 10.60  February 2020
## 2972  K.elegans       Homestead   M 5.62   3.04  8.29 11.42  February 2020
## 2973  K.elegans       Homestead   M 5.40   3.29  8.90 11.88  February 2020
## 2974  K.elegans       Homestead   M 5.73   3.11  8.39 11.14  February 2020
## 2975 C.corindum       Key_Largo   M 5.88   3.14  8.39 11.68  February 2020
## 2976 C.corindum       Key_Largo   F 8.79   3.86 10.07 14.00  February 2020
## 2978 C.corindum       Key_Largo   M 5.25   2.72  7.87 10.31  February 2020
## 2979 C.corindum       Key_Largo   M 6.53   3.08  8.08 11.31  February 2020
## 2980 C.corindum       Key_Largo   F 6.33   3.33  8.78 12.13  February 2020
## 2981 C.corindum       Key_Largo   M 6.18   3.03  8.04 10.94  February 2020
## 2982 C.corindum       Key_Largo   M 6.08   2.97  7.80 10.95  February 2020
## 2983 C.corindum       Key_Largo   F 7.54   3.41  8.42 11.99  February 2020
## 2984 C.corindum       Key_Largo   M 8.73   3.59  9.71 13.59  February 2020
## 2985 C.corindum       Key_Largo   F 8.45   3.65  9.24 13.04  February 2020
## 2986 C.corindum       Key_Largo   F 7.94   3.27  8.52 11.96  February 2020
## 2987 C.corindum       Key_Largo   M 5.63   3.01  8.64 11.48  February 2020
## 2988 C.corindum       Key_Largo   M 5.98   3.19  8.32 11.62  February 2020
## 2990 C.corindum       Key_Largo   F 7.57   3.33  8.38 12.11  February 2020
## 2991 C.corindum       Key_Largo   M 5.57   3.01  8.53 11.47  February 2020
## 2992 C.corindum       Key_Largo   F 6.96   3.18  8.31 11.78  February 2020
## 2994 C.corindum       Key_Largo   F 7.70   3.36  9.15 12.65  February 2020
## 2995 C.corindum       Key_Largo   M 6.11   3.01  8.43 11.32  February 2020
## 2997 C.corindum       Key_Largo   F 7.98   3.57  8.95 12.72  February 2020
## 2998 C.corindum       Key_Largo   M 6.16   3.09  8.38 11.50  February 2020
## 2999 C.corindum       Key_Largo   M 6.54   2.99  8.03 11.33  February 2020
## 3000 C.corindum       Key_Largo   F 8.10   3.79  9.83 13.54  February 2020
## 3001 C.corindum       Key_Largo   M 5.94   3.04  8.70 11.56  February 2020
## 3002 C.corindum       Key_Largo   F 7.62   3.14  8.16 11.49  February 2020
## 3004 C.corindum       Key_Largo   M 5.72   3.06  8.40 11.36  February 2020
## 3005 C.corindum       Key_Largo   M 5.63   3.02  8.20 11.33  February 2020
## 3006 C.corindum       Key_Largo   F 7.92   3.47  9.99 13.92  February 2020
## 3007 C.corindum       Key_Largo   M 5.37   3.08  8.01 10.80  February 2020
## 3009 C.corindum       Key_Largo   F 7.51   3.31  9.00 12.27  February 2020
## 3010 C.corindum       Key_Largo   F 7.84   3.37  8.61 12.22  February 2020
## 3011 C.corindum       Key_Largo   M 6.22   3.13  8.02 11.31  February 2020
## 3013 C.corindum       Key_Largo   M 6.69   3.25  8.53 11.76  February 2020
## 3014 C.corindum       Key_Largo   M 5.56   3.35  8.80 12.08  February 2020
## 3015 C.corindum       Key_Largo   M 5.35   3.23  8.61 11.71  February 2020
## 3016 C.corindum       Key_Largo   M 5.98   3.12  8.40 11.48  February 2020
## 3019 C.corindum       Key_Largo   M 5.40   2.63  7.17  9.73  February 2020
## 3020 C.corindum       Key_Largo   M 6.28   3.28  8.80 11.96  February 2020
## 3045 C.corindum       Key_Largo   F 8.83   3.54  9.23 12.92  February 2020
## 3050 C.corindum       Key_Largo   F 7.22   3.60  9.21 12.56  February 2020
## 3052 C.corindum       Key_Largo   M 6.09   2.92  5.42  8.52  February 2020
## 3053 C.corindum       Key_Largo   M 6.48   3.18  8.06 11.20  February 2020
## 3054  K.elegans     Lake_Placid   M 5.46   3.00  8.23 11.57  February 2020
## 3055  K.elegans     Lake_Placid   F 8.31   3.71  9.77 13.61  February 2020
## 3056  K.elegans     Lake_Placid   F 6.44   3.38  9.42 12.99  February 2020
## 3057  K.elegans     Lake_Placid   M 5.85   2.98  8.35 11.53  February 2020
## 3058  K.elegans     Lake_Placid   M 5.31   2.96  7.77 10.89  February 2020
## 3059  K.elegans     Lake_Placid   F 6.06   3.20  9.63 12.74  February 2020
## 3060  K.elegans     Lake_Placid   F 6.55   3.27  9.44 12.93  February 2020
## 3061  K.elegans     Lake_Placid   F 6.38   3.46  9.10 12.75  February 2020
## 3062  K.elegans     Lake_Placid   M 4.77   2.62  6.73  9.41  February 2020
## 3063  K.elegans     Lake_Placid   F 7.38   3.40  9.21 12.73  February 2020
## 3064  K.elegans     Lake_Placid   M 5.88   3.05  9.00 12.01  February 2020
## 3066  K.elegans     Lake_Placid   M 5.41   3.01  8.68 11.48  February 2020
## 3067  K.elegans     Lake_Placid   M 5.41   2.99  8.30 11.21  February 2020
## 3068  K.elegans     Lake_Placid   F 8.01   3.46  9.39 12.63  February 2020
## 3069  K.elegans     Lake_Placid   M 5.18   2.87  7.29 10.06  February 2020
## 3070  K.elegans     Lake_Placid   F 6.44   3.36  8.43 11.86  February 2020
## 3071  K.elegans     Lake_Placid   M 5.17   2.76  7.84 10.65  February 2020
## 3072  K.elegans     Lake_Placid   M 5.56   3.10  8.99 12.33  February 2020
## 3073  K.elegans     Lake_Placid   M 5.58   2.84  7.80 10.96  February 2020
## 3074  K.elegans     Lake_Placid   F 6.98   3.71  9.85 13.50  February 2020
## 3075  K.elegans     Lake_Placid   M 5.43   2.88  7.66 10.56  February 2020
## 3076  K.elegans     Lake_Placid   M 5.37   2.84  7.73 10.82  February 2020
## 3077  K.elegans     Lake_Placid   F 7.92   3.37  9.53 13.16  February 2020
## 3078  K.elegans     Lake_Placid   F 6.96   3.59  9.18 12.80  February 2020
## 3079  K.elegans     Lake_Placid   M 5.56   2.96  7.91 10.89  February 2020
## 3080  K.elegans     Lake_Placid   F 7.61   3.44  9.09 12.74  February 2020
## 3081  K.elegans     Lake_Placid   F 6.51   3.36  8.88 12.00  February 2020
## 3082  K.elegans     Lake_Placid   M 5.14   2.75  6.93  9.83  February 2020
## 3083  K.elegans     Lake_Placid   M 5.45   2.95  7.64 10.72  February 2020
## 3084  K.elegans     Lake_Placid   M 5.72   3.00  8.36 11.56  February 2020
## 3085  K.elegans     Lake_Placid   M 5.46   2.98  7.47 10.46  February 2020
## 3086  K.elegans     Lake_Placid   M 5.24   3.14  8.71 11.91  February 2020
## 3087  K.elegans     Lake_Placid   M 5.26   2.93  7.93 10.82  February 2020
## 3088  K.elegans     Lake_Placid   F 6.88   3.50  9.48 12.92  February 2020
## 3089  K.elegans     Lake_Placid   M 5.37   2.85  7.63 10.52  February 2020
## 3090  K.elegans     Lake_Placid   F 7.67   3.68  9.78 13.35  February 2020
## 3091  K.elegans     Lake_Placid   M 4.97   2.72  7.62 10.18  February 2020
## 3092  K.elegans     Lake_Placid   M 5.34   2.85  8.15 11.03  February 2020
## 3093  K.elegans     Lake_Placid   M 5.14   2.73  6.58  9.23  February 2020
## 3094  K.elegans     Lake_Placid   F 8.05   3.76 10.18 13.84  February 2020
## 3095  K.elegans     Lake_Placid   M 5.30   3.01  8.36 11.44  February 2020
## 3096  K.elegans     Lake_Placid   M 6.31   3.38  8.83 11.96  February 2020
## 3097  K.elegans      Lake_Wales   M 5.41   2.98  8.03 11.18  February 2020
## 3098  K.elegans      Lake_Wales   F 7.75   3.58  9.34 13.26  February 2020
## 3099  K.elegans      Lake_Wales   M 5.46   2.90  8.21 11.14  February 2020
## 3100  K.elegans      Lake_Wales   F 7.44   3.33  8.98 12.36  February 2020
## 3101  K.elegans      Lake_Wales   F 7.50   3.28  8.63 12.08  February 2020
## 3102  K.elegans      Lake_Wales   F 6.99   3.39  8.98 12.65  February 2020
## 3103  K.elegans      Lake_Wales   F 7.59   3.31  9.21 12.82  February 2020
## 3105  K.elegans      Lake_Wales   M 5.31   2.68  7.65 10.44  February 2020
## 3107  K.elegans      Lake_Wales   M 5.27   2.74  8.04 10.94  February 2020
## 3108  K.elegans      Lake_Wales   M 5.73   2.99  7.88 11.13  February 2020
## 3109  K.elegans      Lake_Wales   M 5.96   3.37  8.93 12.11  February 2020
## 3110  K.elegans      Lake_Wales   F 7.02   3.53  9.35 12.62  February 2020
## 3111  K.elegans      Lake_Wales   F 7.16   3.37  9.22 12.66  February 2020
## 3112  K.elegans      Lake_Wales   M 5.54   3.14  8.32 11.48  February 2020
## 3113  K.elegans      Lake_Wales   M 5.16   3.04  7.99 11.03  February 2020
## 3115  K.elegans      Lake_Wales   F 7.25   3.85  9.90 13.48  February 2020
## 3116  K.elegans      Lake_Wales   M 5.47   3.21  8.33 11.21  February 2020
## 3117  K.elegans      Lake_Wales   M 6.26   2.89  8.07 10.93  February 2020
## 3118  K.elegans      Lake_Wales   F 6.44   3.63  9.21 12.82  February 2020
## 3119  K.elegans      Lake_Wales   M 5.40   2.90  8.08 11.02  February 2020
## 3120  K.elegans      Lake_Wales   F 7.60   3.44  9.21 12.52  February 2020
## 3121  K.elegans      Lake_Wales   M 5.05   2.79  7.91 10.82  February 2020
## 3122  K.elegans      Lake_Wales   F 6.44   3.68  9.52 12.91  February 2020
## 3123  K.elegans      Lake_Wales   F 7.58   3.36  9.24 12.63  February 2020
## 3124  K.elegans      Lake_Wales   M 5.54   3.00  7.98 10.91  February 2020
## 3125  K.elegans      Lake_Wales   M 5.29   2.67  7.47 10.23  February 2020
## 3126  K.elegans      Lake_Wales   F 7.28   3.32  9.46 12.61  February 2020
## 3127  K.elegans      Lake_Wales   F 7.68   3.28  9.13 12.48  February 2020
## 3128  K.elegans      Lake_Wales   F 6.61   3.59  9.57 12.89  February 2020
## 3129  K.elegans      Lake_Wales   M 5.56   2.85  7.61 10.46  February 2020
## 3131  K.elegans      Lake_Wales   F 6.74   3.23  8.77 11.70  February 2020
## 3132  K.elegans      Lake_Wales   M 5.85   3.09  8.13 11.21  February 2020
## 3133  K.elegans      Lake_Wales   M 5.87   3.05  8.64 11.58  February 2020
## 3134  K.elegans      Lake_Wales   M 5.51   2.79  7.19  9.69  February 2020
## 3135  K.elegans      Lake_Wales   M 7.41   3.36  9.13 12.34  February 2020
## 3136  K.elegans      Lake_Wales   M 5.73   3.13  8.61 11.54  February 2020
## 3137  K.elegans      Lake_Wales   F 6.47   3.54  9.08 12.37  February 2020
## 3138  K.elegans      Lake_Wales   M 5.48   2.98  8.32 11.23  February 2020
## 3139  K.elegans      Lake_Wales   M 5.22   2.87  7.38 10.01  February 2020
## 3140  K.elegans      Lake_Wales   M 5.37   2.88  8.24 10.93  February 2020
## 3141  K.elegans      Lake_Wales   F 7.85   3.60  9.49 12.76  February 2020
## 3142  K.elegans      Lake_Wales   M 5.02   2.68  8.13 10.86  February 2020
## 3143  K.elegans      Lake_Wales   F 6.70   3.35  8.00 11.37  February 2020
## 3144  K.elegans      Lake_Wales   F 6.50   3.49  8.99 12.20  February 2020
## 3145  K.elegans      Lake_Wales   M 5.64   3.04  8.22 10.85  February 2020
## 3146  K.elegans      Lake_Wales   M 5.04   2.86  7.87 10.61  February 2020
## 3147  K.elegans        Leesburg   M 5.32   2.94  7.39 10.85  February 2020
## 3148  K.elegans        Leesburg   M 5.89   3.32  8.37 11.70  February 2020
## 3149  K.elegans        Leesburg   M 5.11   2.81  7.98 10.98  February 2020
## 3150  K.elegans        Leesburg   M 5.42   2.98  8.49 11.19  February 2020
## 3151  K.elegans        Leesburg   M 5.59   2.99  7.82 11.02  February 2020
## 3152  K.elegans        Leesburg   M 5.35   2.92  7.45 10.24  February 2020
## 3153  K.elegans        Leesburg   F 6.14   3.66  8.79 12.14  February 2020
## 3154  K.elegans        Leesburg   F 6.17   2.97  8.04 11.35  February 2020
## 3155  K.elegans        Leesburg   F 6.07   3.45  8.93 12.33  February 2020
## 3157  K.elegans        Leesburg   M 5.14   2.72  6.94  9.98  February 2020
## 3158  K.elegans        Leesburg   M 5.72   3.10  8.59 11.72  February 2020
## 3159  K.elegans        Leesburg   F 6.47   3.50  9.35 12.66  February 2020
## 3160  K.elegans        Leesburg   M 5.54   2.94  8.29 11.12  February 2020
## 3162  K.elegans        Leesburg   F 6.41   3.00  7.97 11.17  February 2020
## 3164  K.elegans        Leesburg   M 4.87   2.96  7.94 10.68  February 2020
## 3165  K.elegans        Leesburg   M 5.53   3.19  8.56 11.64  February 2020
## 3167  K.elegans        Leesburg   M 5.51   3.31  8.82 12.06  February 2020
## 3168  K.elegans        Leesburg   M 5.05   2.89  8.15 10.94  February 2020
## 3169  K.elegans        Leesburg   M 5.00   2.99  8.36 11.05  February 2020
## 3170  K.elegans        Leesburg   F 6.54   3.46  9.50 13.09  February 2020
## 3171  K.elegans        Leesburg   F 6.31   3.47  9.17 12.53  February 2020
## 3172  K.elegans        Leesburg   M 5.60   3.10  7.95 11.32  February 2020
## 3175  K.elegans        Leesburg   M 5.40   3.05  8.11 10.98  February 2020
## 3176  K.elegans        Leesburg   M 4.99   2.96  7.30 10.28  February 2020
## 3177 C.corindum North_Key_Largo   M 6.03   2.90  7.68 10.67  February 2020
## 3178 C.corindum North_Key_Largo   M 5.75   2.94  8.30 11.40  February 2020
## 3180 C.corindum North_Key_Largo   M 6.07   3.24  8.40 11.40  February 2020
## 3181 C.corindum North_Key_Largo   F 8.03   3.42  9.08 12.77  February 2020
## 3182 C.corindum North_Key_Largo   F 7.15   3.01  7.91 11.29  February 2020
## 3183 C.corindum North_Key_Largo   F 7.58   3.55  8.72 12.28  February 2020
## 3185 C.corindum North_Key_Largo   F 6.24   2.98  7.58 10.98  February 2020
## 3186 C.corindum North_Key_Largo   F 7.56   3.26  8.18 11.71  February 2020
## 3187 C.corindum North_Key_Largo   F 8.12   3.25  8.28 11.71  February 2020
## 3189 C.corindum North_Key_Largo   M 6.05   3.38  8.39 11.52  February 2020
## 3190 C.corindum North_Key_Largo   M 6.21   3.25  8.58 11.64  February 2020
## 3191 C.corindum North_Key_Largo   M 5.99   2.99  7.55 10.80  February 2020
## 3192 C.corindum North_Key_Largo   M 5.95   3.10  8.20 11.48  February 2020
## 3193 C.corindum North_Key_Largo   F 7.44   3.07  7.86 11.20  February 2020
## 3194 C.corindum North_Key_Largo   M 5.72   2.82  7.46 10.43  February 2020
## 3196 C.corindum North_Key_Largo   F 7.85   3.73  9.71 13.20  February 2020
## 3197 C.corindum North_Key_Largo   F 7.19   3.32  8.56 12.21  February 2020
## 3198 C.corindum North_Key_Largo   M 6.30   3.04  8.07 11.40  February 2020
## 3199 C.corindum North_Key_Largo   F 8.18   3.48  8.57 12.28  February 2020
## 3200 C.corindum North_Key_Largo   F 8.45   3.95 10.00 14.16  February 2020
## 3201 C.corindum North_Key_Largo   M 6.23   2.97  7.76 10.83  February 2020
## 3202 C.corindum North_Key_Largo   M 5.58   2.77  7.22 10.02  February 2020
## 3203 C.corindum North_Key_Largo   M 6.41   3.25  8.62 11.65  February 2020
## 3205 C.corindum North_Key_Largo   M 6.13   2.99  7.43 10.56  February 2020
## 3206 C.corindum North_Key_Largo   M 6.44   3.09  8.24 11.42  February 2020
## 3207 C.corindum North_Key_Largo   M 5.91   3.22  8.43 11.41  February 2020
## 3209 C.corindum North_Key_Largo   M 5.94   2.92  7.98 10.85  February 2020
## 3210 C.corindum North_Key_Largo   F 9.02   3.71  9.47 13.43  February 2020
## 3211 C.corindum North_Key_Largo   M 5.93   2.94  8.16 11.08  February 2020
## 3212 C.corindum North_Key_Largo   F 8.29   3.64  9.99 13.81  February 2020
## 3213 C.corindum North_Key_Largo   F 8.44   3.70  9.31 13.44  February 2020
## 3214 C.corindum North_Key_Largo   F 8.64   3.27  8.90 12.61  February 2020
## 3215 C.corindum North_Key_Largo   F 7.58   3.32  8.58 12.21  February 2020
## 3216 C.corindum North_Key_Largo   M 6.07   3.15  8.18 11.15  February 2020
## 3218 C.corindum North_Key_Largo   M 5.75   2.92  7.78 10.93  February 2020
## 3219 C.corindum North_Key_Largo   F 9.08   3.71  9.68 13.81  February 2020
## 3220 C.corindum North_Key_Largo   F 6.91   3.02  7.75 11.25  February 2020
## 3221 C.corindum North_Key_Largo   F 9.87   4.14 10.47 14.34  February 2020
## 3222 C.corindum North_Key_Largo   M 5.78   2.83  7.38 10.46  February 2020
## 3223 C.corindum North_Key_Largo   M 6.09   2.90  8.08 10.86  February 2020
## 3224 C.corindum North_Key_Largo   M 6.88   3.16  8.84 12.06  February 2020
## 3226 C.corindum North_Key_Largo   F 8.04   3.32  8.36 11.72  February 2020
## 3227 C.corindum North_Key_Largo   F 7.41   3.79  9.98 13.66  February 2020
## 3229 C.corindum North_Key_Largo   F 7.61   3.82  9.80 13.86  February 2020
## 3230 C.corindum North_Key_Largo   M 5.72   3.06  7.80 10.72  February 2020
## 3231 C.corindum North_Key_Largo   M 6.85   3.08  8.92 11.99  February 2020
## 3232 C.corindum North_Key_Largo   M 5.34   2.93  7.63 10.63  February 2020
## 3234 C.corindum North_Key_Largo   F 7.90   3.33  8.50 12.37  February 2020
## 3235 C.corindum North_Key_Largo   M 6.39   3.18  8.41 11.86  February 2020
## 3236 C.corindum North_Key_Largo   F 8.17   3.48  9.37 13.09  February 2020
## 3237 C.corindum North_Key_Largo   M 5.78   2.94  7.97 11.14  February 2020
## 3238 C.corindum North_Key_Largo   M 5.94   2.89  7.83 11.00  February 2020
## 3239 C.corindum North_Key_Largo   M 6.40   3.08  8.37 11.69  February 2020
## 3240 C.corindum North_Key_Largo   F 6.39   2.88  7.56 10.70  February 2020
## 3241 C.corindum North_Key_Largo   F 7.35   3.74  9.77 13.20  February 2020
## 3242 C.corindum North_Key_Largo   M 5.58   3.11  8.65 11.52  February 2020
## 3243 C.corindum North_Key_Largo   M 6.17   2.61  8.01 10.53  February 2020
## 3244 C.corindum North_Key_Largo   F 8.51   3.67  9.15 12.95  February 2020
## 3246 C.corindum North_Key_Largo   M 5.42   2.82  7.60 10.59  February 2020
## 3247 C.corindum North_Key_Largo   M 6.16   3.20  8.37 11.71  February 2020
## 3248 C.corindum North_Key_Largo   M 6.15   3.04  8.24 11.48  February 2020
## 3249 C.corindum North_Key_Largo   F 7.99   3.50  8.71 12.31  February 2020
## 3250 C.corindum North_Key_Largo   M 6.38   2.99  7.66 10.66  February 2020
## 3251 C.corindum North_Key_Largo   M 5.77   2.91  7.40 10.49  February 2020
## 3252 C.corindum North_Key_Largo   M 6.35   3.17  8.53 11.52  February 2020
## 3253 C.corindum North_Key_Largo   M 5.95   3.11  8.26 11.56  February 2020
## 3254 C.corindum North_Key_Largo   M 5.79   3.06  8.16 11.14  February 2020
## 3255 C.corindum North_Key_Largo   F 8.15   4.04 10.52 14.50  February 2020
## 3256 C.corindum North_Key_Largo   F 9.17   3.73  9.38 12.86  February 2020
## 3257 C.corindum North_Key_Largo   F 8.28   3.46  8.71 12.32  February 2020
## 3258 C.corindum North_Key_Largo   M 6.41   3.02  8.13 11.12  February 2020
## 3259 C.corindum North_Key_Largo   M 6.67   3.20  8.46 11.40  February 2020
## 3260 C.corindum North_Key_Largo   M 5.71   3.34  8.49 11.61  February 2020
## 3261 C.corindum North_Key_Largo   F 9.44   4.00 10.17 14.13  February 2020
## 3262 C.corindum North_Key_Largo   F 6.90   3.05  7.79 11.22  February 2020
## 3263 C.corindum North_Key_Largo   F 8.04   3.53  9.18 12.63  February 2020
## 3264 C.corindum North_Key_Largo   F 8.49   3.25  8.52 12.17  February 2020
## 3265 C.corindum North_Key_Largo   F 8.54   3.50  9.35 13.05  February 2020
## 3266 C.corindum North_Key_Largo   M 5.97   2.88  7.99 10.86  February 2020
## 3267 C.corindum North_Key_Largo   M 5.84   2.87  7.55 10.62  February 2020
## 3268 C.corindum North_Key_Largo   M 5.78   2.85  7.10 10.18  February 2020
## 3269 C.corindum North_Key_Largo   F 8.32   3.39  9.09 12.47  February 2020
## 3270 C.corindum North_Key_Largo   M 5.54   3.01  7.68 10.57  February 2020
## 3271 C.corindum North_Key_Largo   F 7.84   3.49  9.01 12.59  February 2020
## 3273 C.corindum North_Key_Largo   F 7.53   3.27  8.13 12.13  February 2020
## 3274 C.corindum North_Key_Largo   M 6.05   3.03  8.31 11.52  February 2020
## 3279 C.corindum North_Key_Largo   M 5.47   2.92  8.29 11.29  February 2020
## 3280 C.corindum North_Key_Largo   M 5.84   2.98  7.83 10.88  February 2020
## 3281 C.corindum North_Key_Largo   M 6.16   3.01  7.88 10.90  February 2020
## 3282 C.corindum North_Key_Largo   M 5.51   2.75  7.11  9.94  February 2020
## 3283 C.corindum North_Key_Largo   M 6.43   3.27  8.85 11.84  February 2020
## 3285 C.corindum North_Key_Largo   M 5.69   2.94  7.27 10.38  February 2020
## 3287 C.corindum North_Key_Largo   M 5.98   2.76  7.15 10.13  February 2020
## 3288 C.corindum North_Key_Largo   M 5.24   2.49  6.06  8.89  February 2020
## 3289 C.corindum North_Key_Largo   M 5.52   2.64  7.17  9.95  February 2020
## 3290 C.corindum North_Key_Largo   F 8.50   3.28  8.65 12.35  February 2020
## 3291 C.corindum North_Key_Largo   M 6.08   2.98  7.63 10.70  February 2020
## 3292 C.corindum North_Key_Largo   M 5.77   2.77  7.30 10.22  February 2020
## 3293 C.corindum North_Key_Largo   M 5.99   3.26  8.25 11.39  February 2020
## 3294 C.corindum North_Key_Largo   M 6.12   3.10  8.56 11.66  February 2020
## 3295 C.corindum North_Key_Largo   M 5.78   3.00  8.35 11.27  February 2020
## 3296 C.corindum North_Key_Largo   M 6.07   2.82  7.53 10.73  February 2020
## 3297 C.corindum North_Key_Largo   M 6.56   2.91  8.02 11.22  February 2020
## 3300 C.corindum North_Key_Largo   M 6.65   3.31  8.30 11.50  February 2020
## 3301 C.corindum North_Key_Largo   M 5.83   2.69  7.11 10.03  February 2020
## 3302 C.corindum North_Key_Largo   F 7.32   3.05  8.34 11.68  February 2020
## 3303 C.corindum North_Key_Largo   M 6.17   2.91  7.57 10.44  February 2020
## 3304 C.corindum North_Key_Largo   M 6.03   3.05  8.01 11.00  February 2020
## 3305 C.corindum North_Key_Largo   M 5.81   2.78  7.32 10.12  February 2020
## 3306 C.corindum North_Key_Largo   F 6.35   3.03  7.38 10.93  February 2020
## 3307 C.corindum North_Key_Largo   F 7.51   3.09  7.91 11.42  February 2020
## 3308 C.corindum North_Key_Largo   M 6.13   3.22  8.68 11.83  February 2020
## 3309 C.corindum North_Key_Largo   M 6.59   2.96  7.87 11.05  February 2020
## 3311 C.corindum North_Key_Largo   M 6.30   2.99  7.93 11.11  February 2020
## 3312 C.corindum North_Key_Largo   M 5.93   3.03  7.89 10.85  February 2020
## 3313 C.corindum North_Key_Largo   M 5.92   3.35  8.93 12.04  February 2020
## 3314 C.corindum North_Key_Largo   F 6.79   3.61  9.77 13.39  February 2020
## 3315 C.corindum North_Key_Largo   M 5.68   2.78  7.72 10.29  February 2020
## 3316 C.corindum North_Key_Largo   M 6.23   3.34  8.89 12.04  February 2020
## 3317 C.corindum North_Key_Largo   M 5.86   2.91  7.99 11.06  February 2020
## 3318 C.corindum North_Key_Largo   M 5.56   3.24  8.16 11.42  February 2020
## 3319 C.corindum North_Key_Largo   M 6.29   2.90  7.78 10.89  February 2020
## 3320 C.corindum North_Key_Largo   M 5.33   2.95  7.70 10.75  February 2020
## 3321 C.corindum North_Key_Largo   M 5.97   2.92  8.10 10.84  February 2020
## 3322 C.corindum North_Key_Largo   F 7.71   3.47  8.42 11.78  February 2020
## 3323 C.corindum North_Key_Largo   F 8.23   3.76  9.40 13.00  February 2020
## 3325 C.corindum North_Key_Largo   F 8.59   3.68  9.92 13.59  February 2020
## 3327 C.corindum North_Key_Largo   M 5.50   3.02  8.18 11.11  February 2020
## 3332 C.corindum North_Key_Largo   F 8.79   3.65  9.15 12.49  February 2020
## 3339 C.corindum North_Key_Largo   M 5.76   2.86  7.33 10.26  February 2020
## 3340 C.corindum North_Key_Largo   F 8.53   3.58  8.92 12.60  February 2020
## 3341 C.corindum North_Key_Largo   F 8.21   3.60  9.06 12.65  February 2020
## 3342 C.corindum North_Key_Largo   M 5.89   3.00  7.67 10.66  February 2020
## 3343 C.corindum North_Key_Largo   M 5.36   2.69  7.59 10.46  February 2020
## 3348 C.corindum North_Key_Largo   F 7.97   3.67  9.36 12.93  February 2020
## 3350 C.corindum North_Key_Largo   M 5.41   3.18  8.00 11.02  February 2020
## 3351 C.corindum North_Key_Largo   F 8.51   3.69  9.63 13.47  February 2020
## 3379 C.corindum North_Key_Largo   F 8.22   3.70  9.58 13.14  February 2020
## 3391 C.corindum North_Key_Largo   F 7.32   3.25  8.61 11.88  February 2020
## 3394 C.corindum North_Key_Largo   F 6.57   3.20  8.36 11.92  February 2020
## 3396 C.corindum North_Key_Largo   M 6.48   3.19  8.69 11.99  February 2020
## 3398 C.corindum North_Key_Largo   F 7.53   3.25  8.75 12.00  February 2020
## 3399 C.corindum North_Key_Largo   F 8.37   3.85 10.09 14.09  February 2020
## 3400 C.corindum North_Key_Largo   M 5.85   2.83  6.92  9.83  February 2020
## 3401 C.corindum North_Key_Largo   F 8.25   3.54  8.75 12.44  February 2020
## 3402 C.corindum North_Key_Largo   M 5.40   3.19  8.22 11.20  February 2020
## 3404 C.corindum  Plantation_Key   M 5.64   3.12  7.88 11.09  February 2020
## 3405 C.corindum  Plantation_Key   M 5.75   3.36  8.48 11.90  February 2020
## 3406 C.corindum  Plantation_Key   M 6.21   2.97  7.87 10.90  February 2020
## 3407 C.corindum  Plantation_Key   F 7.47   3.32  8.33 11.89  February 2020
## 3408 C.corindum  Plantation_Key   M 5.76   3.04  8.03 11.00  February 2020
## 3409 C.corindum  Plantation_Key   F 8.19   3.64  9.30 13.02  February 2020
## 3410 C.corindum  Plantation_Key   F 8.39   3.54  9.38 13.09  February 2020
## 3411 C.corindum  Plantation_Key   M 6.10   3.39  9.06 12.14  February 2020
## 3412 C.corindum  Plantation_Key   M 6.09   3.28  8.56 12.21  February 2020
## 3414 C.corindum  Plantation_Key   M 5.69   3.11  8.41 11.60  February 2020
## 3415 C.corindum  Plantation_Key   F 8.26   3.53  9.00 12.53  February 2020
## 3418 C.corindum  Plantation_Key   F 7.29   3.16  8.15 11.51  February 2020
## 3419 C.corindum  Plantation_Key   M 5.67   3.13  8.17 11.13  February 2020
## 3420 C.corindum  Plantation_Key   M 6.06   3.26  8.50 11.93  February 2020
## 3421 C.corindum  Plantation_Key   F 6.76   3.59  9.29 12.87  February 2020
## 3422 C.corindum  Plantation_Key   M 5.61   2.70  7.20  9.96  February 2020
## 3423 C.corindum  Plantation_Key   M 5.72   3.05  8.13 11.52  February 2020
## 3424 C.corindum  Plantation_Key   M 5.59   3.13  8.35 11.45  February 2020
## 3425 C.corindum  Plantation_Key   M 5.82   3.34  8.52 11.93  February 2020
## 3426 C.corindum  Plantation_Key   M 5.79   2.70  7.65 10.51  February 2020
## 3428 C.corindum  Plantation_Key   M 5.51   2.82  7.41 10.82  February 2020
## 3429 C.corindum  Plantation_Key   M 5.77   2.86  8.00 11.06  February 2020
## 3430 C.corindum  Plantation_Key   M 5.99   2.96  7.84 10.83  February 2020
## 3431 C.corindum  Plantation_Key   F 9.02   3.45  9.36 13.06  February 2020
## 3432 C.corindum  Plantation_Key   M 6.20   3.15  8.75 11.74  February 2020
## 3433 C.corindum  Plantation_Key   M 5.54   3.20  8.52 11.64  February 2020
## 3434 C.corindum  Plantation_Key   M 5.53   2.95  8.12 10.90  February 2020
## 3435 C.corindum  Plantation_Key   M 6.25   3.16  8.57 11.73  February 2020
## 3436 C.corindum  Plantation_Key   M 5.52   2.88  7.48 10.51  February 2020
## 3437 C.corindum  Plantation_Key   F 8.04   3.40  9.11 12.60  February 2020
## 3438 C.corindum  Plantation_Key   M 5.84   2.93  7.77 10.76  February 2020
## 3439 C.corindum  Plantation_Key   M 6.12   2.94  8.00 11.00  February 2020
## 3440 C.corindum  Plantation_Key   M 5.63   2.77  7.55 10.32  February 2020
## 3441 C.corindum  Plantation_Key   M 6.30   3.31  8.78 11.97  February 2020
## 3442 C.corindum  Plantation_Key   M 5.70   2.91  7.79 10.77  February 2020
## 3443 C.corindum  Plantation_Key   F 7.77   3.30  9.02 12.44  February 2020
## 3444 C.corindum  Plantation_Key   F 6.58   3.21  8.32 11.70  February 2020
## 3445 C.corindum  Plantation_Key   M 6.23   3.11  8.31 11.45  February 2020
## 3448 C.corindum  Plantation_Key   F 8.53   3.30  8.48 11.98  February 2020
## 3451 C.corindum  Plantation_Key   M 6.09   2.68  7.57 10.67  February 2020
## 3452 C.corindum  Plantation_Key   F 9.01   3.77 10.53 13.86  February 2020
## 3453 C.corindum  Plantation_Key   M 6.17   3.16  8.55 11.85  February 2020
## 3454 C.corindum  Plantation_Key   M 5.45   2.65  7.20 10.09  February 2020
## 3461 C.corindum  Plantation_Key   F 6.48   3.33  9.03 12.18  February 2020
## 3462 C.corindum  Plantation_Key   M 6.22   3.44  8.17 11.65  February 2020
## 3466 C.corindum  Plantation_Key   M 5.77   2.75  7.82 10.62  February 2020
## 3473 C.corindum  Plantation_Key   F 7.50   3.86 10.09 13.60  February 2020
## 3476 C.corindum  Plantation_Key   M 6.08   3.05  8.06 11.28   October 2019
## 3477 C.corindum  Plantation_Key   F 6.43   3.18  8.05 11.22   October 2019
## 3478 C.corindum  Plantation_Key   F 8.59   3.73  9.18 12.82   October 2019
## 3479 C.corindum  Plantation_Key   M 6.60   3.33  8.48 11.61   October 2019
## 3480 C.corindum  Plantation_Key   M 6.23   3.25  8.48 11.67   October 2019
## 3481 C.corindum  Plantation_Key   F 8.12   3.36  8.71 12.20   October 2019
## 3482 C.corindum  Plantation_Key   F 9.33   4.06 10.48 14.57   October 2019
## 3483 C.corindum  Plantation_Key   M 5.97   2.89  7.70 10.97   October 2019
## 3485 C.corindum  Plantation_Key   F 8.02   3.60  9.55 13.19   October 2019
## 3486 C.corindum  Plantation_Key   M 6.04   3.00  7.99 11.01   October 2019
## 3487 C.corindum  Plantation_Key   M 6.36   2.93  7.71 10.62   October 2019
## 3488 C.corindum  Plantation_Key   M 6.19   2.91  7.95 10.87   October 2019
## 3489 C.corindum  Plantation_Key   M 6.17   3.13  8.38 11.48   October 2019
## 3492 C.corindum  Plantation_Key   M 6.10   3.07  7.85 11.02   October 2019
## 3493 C.corindum  Plantation_Key   F 8.14   3.67  9.15 12.75   October 2019
## 3496 C.corindum  Plantation_Key   F 8.54   3.62  9.27 12.71   October 2019
## 3498 C.corindum  Plantation_Key   M 5.76   2.90  8.39 11.18   October 2019
## 3499 C.corindum  Plantation_Key   M 5.98   2.93  8.01 10.81   October 2019
## 3500 C.corindum  Plantation_Key   M 5.96   3.02  8.10 11.24   October 2019
## 3501 C.corindum  Plantation_Key   F 8.37   3.51  9.58 13.02   October 2019
## 3502 C.corindum  Plantation_Key   F 8.33   3.28  8.90 12.08   October 2019
## 3503  K.elegans       Homestead   M 5.64   3.25  8.64 11.54   October 2019
## 3504  K.elegans       Homestead   M 5.50   3.10  8.11 11.09   October 2019
## 3505  K.elegans       Homestead   F 8.16   3.69  9.64 12.97   October 2019
## 3506  K.elegans       Homestead   M 5.85   2.98  8.39 11.44   October 2019
## 3507  K.elegans       Homestead   F 7.62   3.62  9.65 12.95   October 2019
## 3508  K.elegans       Homestead   F 7.69   3.55  9.52 12.94   October 2019
## 3509  K.elegans       Homestead   M 6.07   3.36  9.52 12.53   October 2019
## 3510  K.elegans       Homestead   F 7.76   3.68  9.58 13.12   October 2019
## 3511  K.elegans       Homestead   F 7.57   3.65  9.37 12.73   October 2019
## 3513  K.elegans       Homestead   M 5.51   2.98  7.68 10.54   October 2019
## 3514  K.elegans       Homestead   F 7.96   3.62 10.02 13.60   October 2019
## 3515 C.corindum North_Key_Largo   F 8.72   3.85 10.29 14.16   October 2019
## 3516 C.corindum North_Key_Largo   F 9.02   3.76  9.98 13.29   October 2019
## 3517 C.corindum North_Key_Largo   F 7.97   3.42  9.15 12.72   October 2019
## 3518 C.corindum North_Key_Largo   F 9.67   3.81 10.21 13.96   October 2019
## 3519 C.corindum North_Key_Largo   M 6.80   3.32  9.09 12.43   October 2019
## 3520 C.corindum North_Key_Largo   F 8.52   3.59 10.04 13.44   October 2019
## 3521 C.corindum North_Key_Largo   M 6.20   3.31  8.93 12.10   October 2019
## 3522 C.corindum North_Key_Largo   F 8.45   3.45  9.00 12.28   October 2019
## 3523 C.corindum North_Key_Largo   F 8.73   3.71  9.92 13.28   October 2019
## 3524 C.corindum North_Key_Largo   F   NA   3.45  9.02 12.58   October 2019
## 3525 C.corindum North_Key_Largo   M 6.18   3.06  8.37 11.44   October 2019
## 3526 C.corindum North_Key_Largo   F 7.95   3.51  8.96 12.38   October 2019
## 3528 C.corindum North_Key_Largo   M 6.01   2.98  8.15 11.23   October 2019
## 3529 C.corindum North_Key_Largo   F 8.05   3.68  9.00 12.68   October 2019
## 3530 C.corindum North_Key_Largo   M 5.93   2.90  7.74 10.61   October 2019
## 3531 C.corindum North_Key_Largo   F 8.69   3.65  9.30 12.76   October 2019
## 3532 C.corindum North_Key_Largo   M 5.67   2.75  7.22 10.06   October 2019
## 3533 C.corindum North_Key_Largo   F 8.75   3.69  9.63 13.05   October 2019
## 3534 C.corindum North_Key_Largo   M 5.65   2.94  7.89 10.77   October 2019
## 3535 C.corindum North_Key_Largo   F 8.89   3.68  9.26 12.64   October 2019
## 3536 C.corindum North_Key_Largo   M 6.10   3.19  8.48 11.62   October 2019
## 3537 C.corindum North_Key_Largo   F 8.13   3.38  8.78 12.31   October 2019
## 3538 C.corindum North_Key_Largo   M 5.90   3.13  8.31 11.15   October 2019
## 3539 C.corindum North_Key_Largo   M 6.95   3.66  9.36 12.42   October 2019
## 3540 C.corindum North_Key_Largo   M 6.87   3.50  9.37 12.72   October 2019
## 3541  K.elegans     Lake_Placid   M 5.16   2.59  7.27 10.03   October 2019
## 3542  K.elegans     Lake_Placid   F 8.19   3.88 10.19 13.56   October 2019
## 3543  K.elegans     Lake_Placid   M 5.65   2.90  7.59 10.56   October 2019
## 3544  K.elegans     Lake_Placid   M 5.73   3.19  9.15 12.22   October 2019
## 3545  K.elegans     Lake_Placid   F 7.96   3.55 10.10 13.72   October 2019
## 3546  K.elegans     Lake_Placid   F 7.61   3.35  9.04 12.49   October 2019
## 3547  K.elegans     Lake_Placid   F 8.55   3.51  9.41 13.04   October 2019
## 3549  K.elegans     Lake_Placid   M 5.34   3.29  8.27 11.53   October 2019
## 3550  K.elegans     Lake_Placid   F 8.58   4.01 10.29 14.13   October 2019
## 3551  K.elegans     Lake_Placid   M 5.67   3.13  8.83 11.97   October 2019
## 3552  K.elegans     Lake_Placid   F 7.28   3.39  9.20 12.70   October 2019
## 3553  K.elegans     Lake_Placid   M 5.45   2.73  7.55 10.53   October 2019
## 3554  K.elegans     Lake_Placid   F 7.77   3.57  9.38 13.25   October 2019
## 3555  K.elegans     Lake_Placid   M 5.60   3.18  8.56 11.45   October 2019
## 3556  K.elegans     Lake_Placid   F 7.01   3.26  8.98 12.27   October 2019
## 3557  K.elegans     Lake_Placid   F 8.30   3.56  9.82 13.30   October 2019
## 3558  K.elegans     Lake_Placid   M 5.52   3.03  8.63 11.83   October 2019
## 3559  K.elegans     Lake_Placid   F 8.05   3.98 10.30 13.68   October 2019
## 3560  K.elegans     Lake_Placid   M 5.45   2.98  8.20 11.36   October 2019
## 3561  K.elegans     Lake_Placid   M 5.23   2.70  7.29 10.23   October 2019
## 3562 C.corindum North_Key_Largo   M 6.13   3.31  8.68 11.69   October 2019
## 3563 C.corindum North_Key_Largo   F 7.86   3.39  8.71 12.27   October 2019
## 3564 C.corindum North_Key_Largo   M 6.32   2.97  8.00 11.25   October 2019
## 3565 C.corindum North_Key_Largo   M 5.96   3.11  8.01 11.00   October 2019
## 3566  K.elegans       Homestead   F 6.67   3.83 10.20 13.74  December 2016
## 3570 C.corindum       Key_Largo   M 6.63   3.48  9.29 12.39   October 2019
## 3571 C.corindum       Key_Largo   M 5.74   3.33  9.12 12.96   October 2019
## 3572 C.corindum       Key_Largo   F 7.99   3.39  8.82 12.51   October 2019
## 3573 C.corindum       Key_Largo   M 6.48   3.08  8.66 11.97   October 2019
## 3574 C.corindum       Key_Largo   F 9.08   3.80  9.96 13.69   October 2019
## 3575 C.corindum       Key_Largo   F 8.51   3.39  8.87 12.56   October 2019
## 3576 C.corindum       Key_Largo   F 8.10   3.33  8.81 12.46   October 2019
## 3577 C.corindum North_Key_Largo   M 6.46   3.17  8.67 11.75   October 2019
## 3578 C.corindum North_Key_Largo   F 9.38   3.79  9.78 13.51   October 2019
## 3579 C.corindum North_Key_Largo   F 7.63   3.31  8.50 11.85   October 2019
## 3581 C.corindum North_Key_Largo   M 6.08   3.08  8.26 11.10   October 2019
## 3583 C.corindum       Key_Largo   M 6.24   3.11  8.16 10.98   October 2019
## 3584 C.corindum       Key_Largo   F 7.62   3.56 10.13 13.24   October 2019
## 3585 C.corindum       Key_Largo   M 6.21   2.72  7.57 10.43   October 2019
## 3586 C.corindum North_Key_Largo   F 8.70   3.65  8.90 12.61   October 2019
## 3587 C.corindum North_Key_Largo   F 6.85   3.46  8.84 12.45   October 2019
## 3588 C.corindum North_Key_Largo   M 6.29   3.17  8.33 11.61   October 2019
## 3589 C.corindum North_Key_Largo   F 9.20   3.71  9.88 13.59   October 2019
## 3590 C.corindum North_Key_Largo   M 6.10   2.79  7.52 10.50   October 2019
## 3591 C.corindum North_Key_Largo   F 8.19   3.33  8.56 12.04   October 2019
## 3592  K.elegans      Lake_Wales   F 7.30   3.55  8.87 12.19       May 2019
## 3594  K.elegans      Lake_Wales   F 5.39   3.24  9.04 11.42       May 2019
## 3595  K.elegans      Lake_Wales   F 8.77   3.47  9.86 13.11       May 2019
## 3596  K.elegans      Lake_Wales   F 5.54   3.56  9.36 11.96       May 2019
## 3597  K.elegans      Lake_Wales   F 5.61   2.90  7.85 10.94       May 2019
## 3598  K.elegans      Lake_Wales   F 5.41   3.07  7.81 11.49       May 2019
## 3599  K.elegans      Lake_Wales   F 5.38   2.85  7.73 10.62       May 2019
## 3600  K.elegans      Lake_Wales   F 5.30   2.84  7.71 10.18       May 2019
## 3601  K.elegans      Lake_Wales   M 5.53   3.19  8.23 11.62       May 2019
## 3602  K.elegans      Lake_Wales   F 7.60   3.42  9.66 12.71       May 2019
## 3603  K.elegans      Lake_Wales   M 6.16   3.20  8.74 11.26       May 2019
## 3604  K.elegans      Lake_Wales   F 5.68   3.02  8.76 11.36       May 2019
## 3605  K.elegans      Lake_Wales   F 5.82   3.44  7.86 10.52       May 2019
## 3606  K.elegans      Lake_Wales   F 7.61   3.63  9.68 13.46       May 2019
## 3607  K.elegans      Lake_Wales   F 5.33   3.25  8.99 11.19       May 2019
## 3608  K.elegans      Lake_Wales   F 8.11   3.81 10.20 13.80       May 2019
## 3609  K.elegans      Lake_Wales   F 5.83   2.75  7.85 10.90       May 2019
## 3610  K.elegans      Lake_Wales   F 5.58   3.06  7.93 10.52       May 2019
## 3611  K.elegans      Lake_Wales   F 6.99   3.29  7.65 11.30       May 2019
## 3612  K.elegans      Lake_Wales   F 5.63   3.27  8.88 12.22       May 2019
## 3613  K.elegans      Lake_Wales   F 5.45   3.13  7.90 11.27       May 2019
## 3614  K.elegans      Lake_Wales   M 5.93   3.02  8.30 10.91       May 2019
## 3615  K.elegans      Lake_Wales   M 5.55   2.82  9.16 12.70       May 2019
## 3616  K.elegans      Lake_Wales   F 7.93   3.35  9.39 12.66       May 2019
## 3617  K.elegans      Lake_Wales   F 7.61   3.43  9.91 13.19       May 2019
## 3618  K.elegans      Lake_Wales   F 7.29   3.83  9.95 12.89       May 2019
## 3619  K.elegans      Lake_Wales   F 8.09   3.91  9.54 13.15       May 2019
## 3620  K.elegans      Lake_Wales   M 7.90   3.83 10.57 13.70       May 2019
## 3621  K.elegans      Lake_Wales   M 6.01   3.05  8.95 11.03       May 2019
## 3622  K.elegans      Lake_Wales   F 8.21   3.66  9.95 13.04       May 2019
## 3623  K.elegans      Lake_Wales   F 5.89   3.32  8.94 11.76       May 2019
## 3624  K.elegans      Lake_Wales   F 5.76   3.15  8.24 10.60       May 2019
## 3625  K.elegans      Lake_Wales   M 5.91   2.96  8.98 11.53       May 2019
## 3626  K.elegans      Lake_Wales   F 6.94   3.15  8.86 11.75       May 2019
## 3627  K.elegans      Lake_Wales   M 5.98   3.23  8.82 12.13       May 2019
## 3628  K.elegans      Lake_Wales   F 5.72   3.30  7.89 11.83       May 2019
## 3629  K.elegans      Lake_Wales   F 6.52   3.07  8.38 11.57       May 2019
## 3630  K.elegans      Lake_Wales   F 7.74   3.78 10.61 14.29       May 2019
## 3631  K.elegans      Lake_Wales   M 8.29   3.87  9.00 13.42       May 2019
## 3632  K.elegans      Lake_Wales   M 6.01   3.20  8.47 11.67       May 2019
## 3633  K.elegans      Lake_Wales   F 7.97   3.77 10.33 13.31       May 2019
## 3634  K.elegans      Lake_Wales   M 4.91   2.50  5.52  8.20       May 2019
## 3635  K.elegans      Lake_Wales   F 5.38   2.41  5.35  7.90       May 2019
## 3636  K.elegans      Lake_Wales   F 7.94   3.46 10.47 13.06       May 2019
## 3637  K.elegans      Lake_Wales   F 5.03   3.33  9.30 11.71       May 2019
## 3638  K.elegans      Lake_Wales   M 7.70   3.75  9.54 14.35       May 2019
## 3639  K.elegans      Lake_Wales   F 8.74   3.83 10.33 13.42       May 2019
## 3640  K.elegans      Lake_Wales   M 5.27   2.82  7.38 11.04       May 2019
## 3641  K.elegans      Lake_Wales   F 8.03   4.02 10.32 14.91       May 2019
## 3642  K.elegans      Lake_Wales   F 5.89   3.16  7.98 11.63       May 2019
## 3643  K.elegans      Lake_Wales   F 7.58   3.31  9.31 12.52       May 2019
## 3644  K.elegans      Lake_Wales   F 6.15   2.68  8.15 10.95       May 2019
## 3645  K.elegans      Lake_Wales   M 5.86   3.10  9.14 13.17       May 2019
## 3646  K.elegans        Leesburg   M 4.95   2.94  8.49 11.75       May 2019
## 3647  K.elegans        Leesburg   F 7.61   3.69  9.49 12.75       May 2019
## 3648  K.elegans        Leesburg   F 6.04   3.38  8.12 11.15       May 2019
## 3649  K.elegans        Leesburg   F 8.20   3.76 10.23 13.56       May 2019
## 3650  K.elegans        Leesburg   F 5.63   3.00  7.86 11.44       May 2019
## 3651  K.elegans        Leesburg   M 6.32   3.07  8.06 12.65       May 2019
## 3652  K.elegans        Leesburg   F 5.98   3.14  9.34 11.99       May 2019
## 3653  K.elegans        Leesburg   F 5.64   2.64  7.54 11.01       May 2019
## 3655  K.elegans        Leesburg   F 6.80   3.26  9.16 12.20       May 2019
## 3656  K.elegans        Leesburg   M 8.02   4.11 10.30 13.75       May 2019
## 3658  K.elegans        Leesburg   M 8.45   3.79  9.95 13.41       May 2019
## 3659  K.elegans        Leesburg   F 5.74   2.78  7.73 10.04       May 2019
## 3660  K.elegans        Leesburg   F 8.01   3.75  9.69 13.09       May 2019
## 3661  K.elegans        Leesburg   F 5.52   3.02  8.25 11.29       May 2019
## 3662  K.elegans        Leesburg   F 5.72   3.07  8.30 10.99       May 2019
## 3663  K.elegans        Leesburg   M 5.92   3.40  8.73 11.31       May 2019
## 3664  K.elegans        Leesburg   F 5.49   3.13  9.05 11.96       May 2019
## 3665  K.elegans        Leesburg   F 5.65   3.09  9.00 11.77       May 2019
## 3666  K.elegans        Leesburg   M 5.69   3.09  8.69 11.57       May 2019
## 3667  K.elegans        Leesburg   M 6.63   3.60  7.98 11.85       May 2019
## 3668  K.elegans        Leesburg   F 6.15   3.32  9.87 11.65       May 2019
## 3669  K.elegans        Leesburg   F 6.59   3.46  8.66 12.22       May 2019
## 3670  K.elegans        Leesburg   F 6.45   2.89  8.35 11.29       May 2019
## 3671  K.elegans        Leesburg   F 8.15   3.58  9.72 12.69       May 2019
## 3672  K.elegans        Leesburg   F 6.74   2.99  7.77 11.37       May 2019
## 3673  K.elegans        Leesburg   F 7.56   3.68  8.50 11.51       May 2019
## 3674  K.elegans        Leesburg   F 6.49   3.46  8.32 11.53       May 2019
## 3675  K.elegans        Leesburg   F 5.46   2.75  7.71 10.50       May 2019
## 3676  K.elegans        Leesburg   F 6.77   3.49  8.87 11.43       May 2019
## 3677  K.elegans        Leesburg   F 7.32   3.86  9.21 12.80       May 2019
## 3678  K.elegans        Leesburg   F 6.26   3.33  8.34 11.48       May 2019
## 3680  K.elegans        Leesburg   F 5.73   3.29  8.17 10.88       May 2019
## 3681  K.elegans        Leesburg   F 8.16   3.80  8.72 12.91       May 2019
## 3682  K.elegans        Leesburg   M 7.92   3.68  9.96 13.18       May 2019
## 3683  K.elegans        Leesburg   F 5.22   2.56  4.47  7.37       May 2019
## 3684  K.elegans        Leesburg   F 6.61   3.47  8.06 11.23       May 2019
## 3685  K.elegans        Leesburg   M 7.55   3.34  9.36 12.18       May 2019
## 3686  K.elegans        Leesburg   F 5.68   3.12  8.47 11.10       May 2019
## 3687  K.elegans        Leesburg   F 6.65   3.31  9.43 12.04       May 2019
## 3688  K.elegans        Leesburg   F 7.11   3.62  8.37 11.98       May 2019
## 3689  K.elegans        Leesburg   F 5.72   3.26  8.98 11.43       May 2019
## 3690  K.elegans        Leesburg   F 6.46   3.28  9.18 12.11       May 2019
## 3691  K.elegans        Leesburg   M 5.84   3.46  8.42 11.28       May 2019
## 3692  K.elegans        Leesburg   F 4.99   3.36  8.48 11.44       May 2019
## 3693  K.elegans        Leesburg   F 6.26   3.31  8.11 11.90       May 2019
## 3694  K.elegans        Leesburg   M 5.64   3.66  9.15 11.84       May 2019
## 3695  K.elegans        Leesburg   F 6.78   3.90  9.55 13.74       May 2019
## 3696  K.elegans        Leesburg   F 6.17   3.85  8.72 12.44       May 2019
## 3698  K.elegans        Leesburg   M 6.20   3.92  8.52 12.01       May 2019
##      months_since_start season w_morph      lat      long
## 1                     0 spring       L 26.63401 -81.87987
## 2                     0 spring       L 26.63401 -81.87987
## 3                     0 spring       L 26.63401 -81.87987
## 4                     0 spring       L 26.63401 -81.87987
## 5                     0 spring       L 26.63401 -81.87987
## 6                     0 spring       L 26.63401 -81.87987
## 7                     0 spring       L 26.63401 -81.87987
## 8                     0 spring       L 26.63401 -81.87987
## 9                     0 spring       L 26.63401 -81.87987
## 10                    0 spring       L 26.63401 -81.87987
## 11                    0 spring       L 26.63401 -81.87987
## 12                    0 spring       L 26.63401 -81.87987
## 13                    0 spring       L 26.63401 -81.87987
## 14                    0 spring       L 26.63401 -81.87987
## 16                    0 spring       L 26.63401 -81.87987
## 17                    0 spring       L 26.63401 -81.87987
## 18                    0 spring       L 26.63401 -81.87987
## 19                    0 spring       L 26.63401 -81.87987
## 20                    0 spring       L 26.63401 -81.87987
## 21                    0 spring       L 26.63401 -81.87987
## 22                    0 spring       L 26.63401 -81.87987
## 23                    0 spring       L 26.63401 -81.87987
## 24                    0 spring       L 26.63401 -81.87987
## 25                    0 spring       L 26.63401 -81.87987
## 26                    0 spring       L 26.63401 -81.87987
## 104                   0 spring       L 25.49172 -80.48586
## 105                   0 spring       L 25.49172 -80.48586
## 106                   0 spring       L 25.49172 -80.48586
## 107                   0 spring       L 25.49172 -80.48586
## 109                   0 spring       L 25.49172 -80.48586
## 110                   0 spring       L 25.49172 -80.48586
## 111                   0 spring       L 25.49172 -80.48586
## 112                   0 spring       L 25.49172 -80.48586
## 114                   0 spring       L 25.49172 -80.48586
## 141                   0 spring       L 25.12308 -80.41528
## 142                   0 spring       L 25.12308 -80.41528
## 143                   0 spring       L 25.12308 -80.41528
## 144                   0 spring       L 25.12308 -80.41528
## 146                   0 spring       L 25.12308 -80.41528
## 147                   0 spring       L 25.12308 -80.41528
## 148                   0 spring       L 25.12308 -80.41528
## 149                   0 spring       L 25.12308 -80.41528
## 150                   0 spring       L 25.12308 -80.41528
## 152                   0 spring       L 25.12308 -80.41528
## 153                   0 spring       L 25.12308 -80.41528
## 202                   0 spring       L 27.90335 -81.58946
## 203                   0 spring       L 27.90335 -81.58946
## 204                   0 spring       L 27.90335 -81.58946
## 205                   0 spring       L 27.90335 -81.58946
## 206                   0 spring       L 27.90335 -81.58946
## 207                   0 spring       L 27.90335 -81.58946
## 208                   0 spring       L 27.90335 -81.58946
## 209                   0 spring       L 27.90335 -81.58946
## 210                   0 spring       L 27.90335 -81.58946
## 211                   0 spring       L 27.90335 -81.58946
## 213                   0 spring       L 27.90335 -81.58946
## 214                   0 spring       L 27.90335 -81.58946
## 215                   0 spring       L 27.90335 -81.58946
## 217                   0 spring       L 27.90335 -81.58946
## 219                   0 spring       L 27.90335 -81.58946
## 221                   0 spring       L 27.90335 -81.58946
## 222                   0 spring       L 27.90335 -81.58946
## 223                   0 spring       L 27.90335 -81.58946
## 224                   0 spring       L 27.90335 -81.58946
## 225                   0 spring       L 27.90335 -81.58946
## 226                   0 spring       L 27.90335 -81.58946
## 228                   0 spring       L 27.90335 -81.58946
## 229                   0 spring       L 27.90335 -81.58946
## 230                   0 spring       L 27.90335 -81.58946
## 837                  11 spring       L 25.12308 -80.41528
## 839                  11 spring       L 25.12308 -80.41528
## 840                  11 spring       L 25.12308 -80.41528
## 841                  11 spring       L 25.12308 -80.41528
## 844                  11 spring       L 25.12308 -80.41528
## 845                  11 spring       L 25.12308 -80.41528
## 847                  11 spring       L 27.90335 -81.58946
## 848                  11 spring       L 27.90335 -81.58946
## 849                  11 spring       L 27.90335 -81.58946
## 850                  11 spring       L 27.90335 -81.58946
## 851                  11 spring       L 27.90335 -81.58946
## 852                  11 spring       L 27.90335 -81.58946
## 853                  11 spring       L 27.90335 -81.58946
## 854                  11 spring       L 27.90335 -81.58946
## 856                  11 spring       L 27.90335 -81.58946
## 857                  11 spring       L 27.90335 -81.58946
## 858                  11 spring       L 27.90335 -81.58946
## 859                  11 spring       L 27.90335 -81.58946
## 860                  11 spring       L 27.90335 -81.58946
## 861                  11 spring       L 27.90335 -81.58946
## 862                  11 spring       L 27.90335 -81.58946
## 863                  11 spring       L 27.90335 -81.58946
## 865                  11 spring       L 27.90335 -81.58946
## 866                  11 spring       L 27.90335 -81.58946
## 867                  11 spring       L 27.90335 -81.58946
## 868                  11 spring       L 27.90335 -81.58946
## 870                  11 spring       L 27.90335 -81.58946
## 871                  11 spring       L 27.90335 -81.58946
## 872                  11 spring       L 27.90335 -81.58946
## 873                  11 spring       L 27.90335 -81.58946
## 874                  11 spring       L 27.90335 -81.58946
## 875                  11 spring       L 27.90335 -81.58946
## 877                  11 spring       L 27.90335 -81.58946
## 878                  11 spring       L 27.90335 -81.58946
## 879                  11 spring       L 27.90335 -81.58946
## 880                  11 spring       L 27.90335 -81.58946
## 881                  11 spring       L 27.90335 -81.58946
## 882                  11 spring       L 27.90335 -81.58946
## 883                  11 spring       L 27.90335 -81.58946
## 884                  11 spring       L 27.90335 -81.58946
## 886                  11 spring       L 27.90335 -81.58946
## 887                  11 spring       L 27.90335 -81.58946
## 888                  11 spring       L 27.90335 -81.58946
## 889                  11 spring       L 27.90335 -81.58946
## 890                  11 spring       L 27.90335 -81.58946
## 905                  11 spring       L 24.96448 -80.56739
## 907                  11 spring       L 24.96448 -80.56739
## 911                  11 spring       L 24.96448 -80.56739
## 912                  11 spring       L 24.96448 -80.56739
## 915                  11 spring       L 24.96448 -80.56739
## 917                  11 spring       L 24.96448 -80.56739
## 918                  11 spring       L 24.96448 -80.56739
## 975                  23 spring       L 25.12308 -80.41528
## 978                  23 spring       L 25.12308 -80.41528
## 986                  23 spring       L 25.12308 -80.41528
## 990                  23 spring       L 25.12308 -80.41528
## 993                  23 spring       L 25.12308 -80.41528
## 995                  23 spring       L 25.12308 -80.41528
## 996                  23 spring       L 25.12308 -80.41528
## 997                  23 spring       L 25.12308 -80.41528
## 1001                 23 spring       L 25.12308 -80.41528
## 1012                 23 spring       L 25.12308 -80.41528
## 1017                 23 spring       L 25.12308 -80.41528
## 1023                 23 spring       L 27.90335 -81.58946
## 1024                 23 spring       L 27.90335 -81.58946
## 1025                 23 spring       L 27.90335 -81.58946
## 1026                 23 spring       L 27.90335 -81.58946
## 1027                 23 spring       L 27.90335 -81.58946
## 1028                 23 spring       L 27.90335 -81.58946
## 1029                 23 spring       L 27.90335 -81.58946
## 1030                 23 spring       L 27.90335 -81.58946
## 1031                 23 spring       L 27.90335 -81.58946
## 1032                 23 spring       L 27.90335 -81.58946
## 1033                 23 spring       L 27.90335 -81.58946
## 1034                 23 spring       L 27.90335 -81.58946
## 1035                 23 spring       L 27.90335 -81.58946
## 1036                 23 spring       L 27.90335 -81.58946
## 1037                 23 spring       L 27.90335 -81.58946
## 1038                 23 spring       L 27.90335 -81.58946
## 1039                 23 spring       L 27.90335 -81.58946
## 1040                 23 spring       L 27.90335 -81.58946
## 1041                 23 spring       L 27.90335 -81.58946
## 1042                 23 spring       L 27.90335 -81.58946
## 1043                 23 spring       L 27.90335 -81.58946
## 1044                 23 spring       L 27.90335 -81.58946
## 1045                 23 spring       L 27.90335 -81.58946
## 1046                 23 spring       L 27.90335 -81.58946
## 1047                 23 spring       L 27.90335 -81.58946
## 1048                 23 spring       L 27.90335 -81.58946
## 1049                 23 spring       L 27.90335 -81.58946
## 1050                 23 spring       L 27.90335 -81.58946
## 1051                 23 spring       L 27.90335 -81.58946
## 1052                 23 spring       L 27.90335 -81.58946
## 1054                 23 spring       L 27.90335 -81.58946
## 1055                 23 spring       L 27.90335 -81.58946
## 1056                 23 spring       L 27.90335 -81.58946
## 1057                 23 spring       L 27.90335 -81.58946
## 1058                 23 spring       L 27.90335 -81.58946
## 1059                 23 spring       L 27.90335 -81.58946
## 1060                 23 spring       L 27.90335 -81.58946
## 1061                 23 spring       L 27.90335 -81.58946
## 1062                 23 spring       L 27.90335 -81.58946
## 1063                 23 spring       L 27.90335 -81.58946
## 1064                 23 spring       L 27.90335 -81.58946
## 1065                 23 spring       L 27.90335 -81.58946
## 1066                 23 spring       L 27.90335 -81.58946
## 1067                 23 spring       L 27.90335 -81.58946
## 1068                 23 spring       L 27.90335 -81.58946
## 1069                 23 spring       L 27.90335 -81.58946
## 1070                 23 spring       L 27.90335 -81.58946
## 1071                 23 spring       L 27.90335 -81.58946
## 1072                 23 spring       L 27.90335 -81.58946
## 1073                 23 spring       L 27.90335 -81.58946
## 1074                 23 spring       L 27.90335 -81.58946
## 1075                 23 spring       L 27.90335 -81.58946
## 1076                 23 spring       L 27.90335 -81.58946
## 1077                 23 spring       L 28.79602 -81.87777
## 1078                 23 spring       L 28.79602 -81.87777
## 1079                 23 spring       L 28.79602 -81.87777
## 1080                 23 spring       L 28.79602 -81.87777
## 1081                 23 spring       L 28.79602 -81.87777
## 1082                 23 spring       L 28.79602 -81.87777
## 1083                 23 spring       L 28.79602 -81.87777
## 1084                 23 spring       L 28.79602 -81.87777
## 1085                 23 spring       L 28.79602 -81.87777
## 1086                 23 spring       L 28.79602 -81.87777
## 1088                 23 spring       L 28.79602 -81.87777
## 1089                 23 spring       L 28.79602 -81.87777
## 1090                 23 spring       L 28.79602 -81.87777
## 1091                 23 spring       L 28.79602 -81.87777
## 1092                 23 spring       L 28.79602 -81.87777
## 1093                 23 spring       L 28.79602 -81.87777
## 1094                 23 spring       L 28.79602 -81.87777
## 1095                 23 spring       L 28.79602 -81.87777
## 1096                 23 spring       L 28.79602 -81.87777
## 1097                 23 spring       L 28.79602 -81.87777
## 1098                 23 spring       L 28.79602 -81.87777
## 1099                 23 spring       L 28.79602 -81.87777
## 1100                 23 spring       L 28.79602 -81.87777
## 1101                 23 spring       L 28.79602 -81.87777
## 1103                 23 spring       L 28.79602 -81.87777
## 1104                 23 spring       L 28.79602 -81.87777
## 1105                 23 spring       L 28.79602 -81.87777
## 1106                 23 spring       L 28.79602 -81.87777
## 1107                 23 spring       L 28.79602 -81.87777
## 1108                 23 spring       L 28.79602 -81.87777
## 1110                 23 spring       L 28.79602 -81.87777
## 1111                 23 spring       L 28.79602 -81.87777
## 1112                 23 spring       L 28.79602 -81.87777
## 1117                 23 spring       L 24.96448 -80.56739
## 1118                 23 spring       L 24.96448 -80.56739
## 1119                 23 spring       L 24.96448 -80.56739
## 1121                 23 spring       L 24.96448 -80.56739
## 1122                 23 spring       L 24.96448 -80.56739
## 1124                 23 spring       L 24.96448 -80.56739
## 1125                 43 winter       L 29.66374 -82.36091
## 1126                 43 winter       L 29.66374 -82.36091
## 1127                 43 winter       L 29.66374 -82.36091
## 1128                 43 winter       L 29.66374 -82.36091
## 1129                 43 winter       L 29.66374 -82.36091
## 1130                 43 winter       L 29.66374 -82.36091
## 1131                 43 winter       L 29.66374 -82.36091
## 1132                 43 winter       L 29.66374 -82.36091
## 1133                 43 winter       L 29.66374 -82.36091
## 1134                 43 winter       L 29.66374 -82.36091
## 1135                 43 winter       L 29.66374 -82.36091
## 1136                 43 winter       L 29.66374 -82.36091
## 1137                 43 winter       L 29.66374 -82.36091
## 1138                 43 winter       L 29.66374 -82.36091
## 1142                 43 winter       L 29.66374 -82.36091
## 1143                 43 winter       L 29.66374 -82.36091
## 1144                 43 winter       L 29.66374 -82.36091
## 1146                 43 winter       L 29.66374 -82.36091
## 1148                 43 winter       L 29.66374 -82.36091
## 1155                 43 winter       L 29.66374 -82.36091
## 1156                 43 winter       L 29.66374 -82.36091
## 1158                 43 winter       L 29.66374 -82.36091
## 1160                 43 winter       L 29.66374 -82.36091
## 1161                 43 winter       L 29.66374 -82.36091
## 1162                 43 winter       L 29.66374 -82.36091
## 1164                 43 winter       L 29.66374 -82.36091
## 1166                 43 winter       L 29.66374 -82.36091
## 1167                 43 winter       L 29.66374 -82.36091
## 1170                 43 winter       L 29.66374 -82.36091
## 1174                 43 winter       L 29.66374 -82.36091
## 1176                 43 winter       L 29.66374 -82.36091
## 1177                 43 winter       L 29.66374 -82.36091
## 1178                 43 winter       L 29.66374 -82.36091
## 1179                 43 winter       L 29.66374 -82.36091
## 1180                 43 winter       L 29.66374 -82.36091
## 1181                 43 winter       L 29.66374 -82.36091
## 1182                 43 winter       L 25.49172 -80.48586
## 1185                 43 winter       L 25.49172 -80.48586
## 1186                 43 winter       L 25.49172 -80.48586
## 1188                 43 winter       L 25.49172 -80.48586
## 1189                 43 winter       L 25.49172 -80.48586
## 1191                 43 winter       L 25.49172 -80.48586
## 1192                 43 winter       L 25.49172 -80.48586
## 1193                 43 winter       L 25.49172 -80.48586
## 1194                 43 winter       L 25.49172 -80.48586
## 1203                 43 winter       L 25.25687 -80.30942
## 1204                 43 winter       L 25.25687 -80.30942
## 1205                 43 winter       L 25.25687 -80.30942
## 1208                 43 winter       L 25.25687 -80.30942
## 1209                 43 winter       L 25.25687 -80.30942
## 1210                 43 winter       L 25.25687 -80.30942
## 1213                 43 winter       L 25.25687 -80.30942
## 1215                 43 winter       L 25.25687 -80.30942
## 1217                 43 winter       L 25.25687 -80.30942
## 1219                 43 winter       L 25.25687 -80.30942
## 1221                 43 winter       L 25.25687 -80.30942
## 1222                 43 winter       L 25.25687 -80.30942
## 1225                 43 winter       L 25.25687 -80.30942
## 1228                 43 winter       L 25.25687 -80.30942
## 1230                 43 winter       L 25.25687 -80.30942
## 1235                 43 winter       L 25.25687 -80.30942
## 1238                 43 winter       L 25.25687 -80.30942
## 1239                 43 winter       L 25.25687 -80.30942
## 1241                 43 winter       L 25.25687 -80.30942
## 1246                 43 winter       L 25.25687 -80.30942
## 1247                 43 winter       L 25.25687 -80.30942
## 1248                 43 winter       L 25.12308 -80.41528
## 1249                 43 winter       L 25.12308 -80.41528
## 1250                 43 winter       L 25.12308 -80.41528
## 1252                 43 winter       L 25.12308 -80.41528
## 1253                 43 winter       L 25.12308 -80.41528
## 1255                 43 winter       L 25.12308 -80.41528
## 1257                 43 winter       L 25.12308 -80.41528
## 1258                 43 winter       L 25.12308 -80.41528
## 1268                 43 winter       L 27.93574 -81.57414
## 1272                 43 winter       L 27.93574 -81.57414
## 1276                 43 winter       L 28.80523 -81.88178
## 1281                 43 winter       L 28.80523 -81.88178
## 1285                 43 winter       L 28.80523 -81.88178
## 1289                 43 winter       L 28.80523 -81.88178
## 1290                 43 winter       L 28.80523 -81.88178
## 1291                 43 winter       L 28.80523 -81.88178
## 1292                 43 winter       L 28.80523 -81.88178
## 1294                 43 winter       L 28.79602 -81.87777
## 1295                 43 winter       L 28.79602 -81.87777
## 1296                 43 winter       L 28.79602 -81.87777
## 1297                 43 winter       L 28.79602 -81.87777
## 1298                 43 winter       L 28.79602 -81.87777
## 1299                 43 winter       L 28.79602 -81.87777
## 1300                 43 winter       L 28.79602 -81.87777
## 1301                 43 winter       L 28.79602 -81.87777
## 1302                 43 winter       L 28.79602 -81.87777
## 1303                 43 winter       L 28.79602 -81.87777
## 1304                 43 winter       L 28.79602 -81.87777
## 1306                 43 winter       L 28.79602 -81.87777
## 1307                 43 winter       L 28.79602 -81.87777
## 1308                 43 winter       L 28.79602 -81.87777
## 1309                 43 winter       L 28.79602 -81.87777
## 1310                 43 winter       L 28.79602 -81.87777
## 1311                 43 winter       L 28.79602 -81.87777
## 1312                 43 winter       L 28.79602 -81.87777
## 1313                 43 winter       L 28.79602 -81.87777
## 1315                 43 winter       L 28.79602 -81.87777
## 1316                 43 winter       L 28.79602 -81.87777
## 1317                 43 winter       L 28.79602 -81.87777
## 1318                 43 winter       L 28.79602 -81.87777
## 1319                 43 winter       L 28.79602 -81.87777
## 1320                 43 winter       L 28.79602 -81.87777
## 1321                 43 winter       L 28.79602 -81.87777
## 1322                 43 winter       L 28.79602 -81.87777
## 1323                 43 winter       L 28.79602 -81.87777
## 1324                 43 winter       L 28.79602 -81.87777
## 1325                 43 winter       L 28.79602 -81.87777
## 1326                 43 winter       L 28.79602 -81.87777
## 1327                 43 winter       L 28.79602 -81.87777
## 1328                 43 winter       L 28.79602 -81.87777
## 1329                 43 winter       L 28.79602 -81.87777
## 1330                 43 winter       L 28.79602 -81.87777
## 1331                 43 winter       L 28.79602 -81.87777
## 1332                 43 winter       L 28.79602 -81.87777
## 1333                 43 winter       L 28.79602 -81.87777
## 1334                 43 winter       L 28.79602 -81.87777
## 1335                 43 winter       L 28.79602 -81.87777
## 1336                 43 winter       L 28.79602 -81.87777
## 1337                 43 winter       L 28.79602 -81.87777
## 1338                 43 winter       L 28.79602 -81.87777
## 1340                 43 winter       L 24.97998 -80.54862
## 1341                 43 winter       L 24.97998 -80.54862
## 1343                 43 winter       L 24.97998 -80.54862
## 1344                 43 winter       L 24.97998 -80.54862
## 1346                 43 winter       L 24.97998 -80.54862
## 1347                 43 winter       L 24.97998 -80.54862
## 1349                 43 winter       L 24.97998 -80.54862
## 1354                 43 winter       L 24.97998 -80.54862
## 1355                 43 winter       L 24.97998 -80.54862
## 1356                 43 winter       L 24.97998 -80.54862
## 1357                 43 winter       L 24.97998 -80.54862
## 1358                 43 winter       L 24.97998 -80.54862
## 1361                 43 winter       L 24.97998 -80.54862
## 1364                 43 winter       L 24.97998 -80.54862
## 1365                 43 winter       L 24.97998 -80.54862
## 1367                 43 winter       L 24.97998 -80.54862
## 1368                 43 winter       L 24.97998 -80.54862
## 1369                 43 winter       L 24.97998 -80.54862
## 1370                 43 winter       L 24.97998 -80.54862
## 1371                 43 winter       L 24.97998 -80.54862
## 1372                 43 winter       L 24.97998 -80.54862
## 1375                 43 winter       L 24.97998 -80.54862
## 1545                 51 summer       L 29.66668 -82.35574
## 1546                 51 summer       L 29.66668 -82.35574
## 1547                 51 summer       L 29.66668 -82.35574
## 1549                 51 summer       L 29.66668 -82.35574
## 1550                 51 summer       L 29.66668 -82.35574
## 1552                 51 summer       L 29.66668 -82.35574
## 1553                 51 summer       L 29.66668 -82.35574
## 1554                 51 summer       L 29.66668 -82.35574
## 1555                 51 summer       L 29.66668 -82.35574
## 1556                 51 summer       L 29.66668 -82.35574
## 1557                 51 summer       L 29.66668 -82.35574
## 1558                 51 summer       L 29.66668 -82.35574
## 1559                 51 summer       L 29.66668 -82.35574
## 1560                 51 summer       L 29.66668 -82.35574
## 1562                 51 summer       L 29.66668 -82.35574
## 1563                 51 summer       L 29.66668 -82.35574
## 1565                 51 summer       L 29.66668 -82.35574
## 1566                 51 summer       L 29.66668 -82.35574
## 1567                 51 summer       L 29.66668 -82.35574
## 1568                 51 summer       L 29.66668 -82.35574
## 1569                 51 summer       L 29.66668 -82.35574
## 1571                 51 summer       L 29.66668 -82.35574
## 1572                 51 summer       L 29.66668 -82.35574
## 1573                 51 summer       L 29.66668 -82.35574
## 1574                 51 summer       L 29.66668 -82.35574
## 1575                 51 summer       L 29.66668 -82.35574
## 1576                 51 summer       L 29.66668 -82.35574
## 1577                 51 summer       L 29.66668 -82.35574
## 1578                 51 summer       L 29.66668 -82.35574
## 1579                 51 summer       L 29.66668 -82.35574
## 1580                 51 summer       L 29.66668 -82.35574
## 1581                 51 summer       L 29.66668 -82.35574
## 1582                 51 summer       L 29.66668 -82.35574
## 1583                 51 summer       L 29.66668 -82.35574
## 1584                 51 summer       L 29.66668 -82.35574
## 1585                 51 summer       L 29.66668 -82.35574
## 1586                 51 summer       L 29.66668 -82.35574
## 1587                 51 summer       L 29.66668 -82.35574
## 1589                 51 summer       L 29.66668 -82.35574
## 1590                 51 summer       L 29.66668 -82.35574
## 1591                 51 summer       L 29.66668 -82.35574
## 1592                 51 summer       L 29.66668 -82.35574
## 1593                 51 summer       L 29.66668 -82.35574
## 1594                 51 summer       L 29.66668 -82.35574
## 1595                 51 summer       L 29.66668 -82.35574
## 1596                 51 summer       L 29.66668 -82.35574
## 1597                 51 summer       L 29.66668 -82.35574
## 1598                 51 summer       L 29.66668 -82.35574
## 1599                 51 summer       L 29.66668 -82.35574
## 1600                 51 summer       L 29.66668 -82.35574
## 1601                 51 summer       L 29.66668 -82.35574
## 1602                 51 summer       L 29.66668 -82.35574
## 1603                 51 summer       L 29.66668 -82.35574
## 1605                 51 summer       L 25.94157 -80.48569
## 1607                 51 summer       L 25.94157 -80.48569
## 1608                 51 summer       L 25.94157 -80.48569
## 1610                 51 summer       L 25.94157 -80.48569
## 1611                 51 summer       L 25.94157 -80.48569
## 1612                 51 summer       L 25.94157 -80.48569
## 1613                 51 summer       L 25.94157 -80.48569
## 1614                 51 summer       L 25.94157 -80.48569
## 1615                 51 summer       L 25.94157 -80.48569
## 1616                 51 summer       L 25.94157 -80.48569
## 1617                 51 summer       L 25.94157 -80.48569
## 1618                 51 summer       L 25.94157 -80.48569
## 1620                 51 summer       L 25.94157 -80.48569
## 1621                 51 summer       L 25.94157 -80.48569
## 1622                 51 summer       L 25.94157 -80.48569
## 1624                 51 summer       L 25.94157 -80.48569
## 1625                 51 summer       L 25.94157 -80.48569
## 1626                 51 summer       L 25.94157 -80.48569
## 1627                 51 summer       L 25.94157 -80.48569
## 1628                 51 summer       L 25.94157 -80.48569
## 1629                 51 summer       L 25.94157 -80.48569
## 1630                 51 summer       L 25.94157 -80.48569
## 1631                 51 summer       L 25.94157 -80.48569
## 1632                 51 summer       L 25.94157 -80.48569
## 1634                 51 summer       L 25.94157 -80.48569
## 1635                 51 summer       L 25.94157 -80.48569
## 1636                 51 summer       L 25.94157 -80.48569
## 1641                 51 summer       L 25.94157 -80.48569
## 1642                 51 summer       L 25.94157 -80.48569
## 1643                 51 summer       L 25.94157 -80.48569
## 1644                 51 summer       L 25.94157 -80.48569
## 1645                 51 summer       L 25.94157 -80.48569
## 1646                 51 summer       L 25.94157 -80.48569
## 1647                 51 summer       L 25.94157 -80.48569
## 1648                 51 summer       L 25.94157 -80.48569
## 1651                 51 summer       L 25.94157 -80.48569
## 1652                 51 summer       L 25.94157 -80.48569
## 1654                 51 summer       L 25.94157 -80.48569
## 1655                 51 summer       L 25.94157 -80.48569
## 1656                 51 summer       L 25.94157 -80.48569
## 1657                 51 summer       L 25.94157 -80.48569
## 1658                 51 summer       L 25.94157 -80.48569
## 1659                 51 summer       L 25.94157 -80.48569
## 1660                 51 summer       L 25.94157 -80.48569
## 1661                 51 summer       L 25.94157 -80.48569
## 1662                 51 summer       L 25.94157 -80.48569
## 1663                 51 summer       L 25.94157 -80.48569
## 1664                 51 summer       L 25.94157 -80.48569
## 1665                 51 summer       L 25.94157 -80.48569
## 1666                 51 summer       L 25.94157 -80.48569
## 1667                 51 summer       L 25.94157 -80.48569
## 1668                 51 summer       L 25.94157 -80.48569
## 1669                 51 summer       L 25.94157 -80.48569
## 1670                 51 summer       L 25.94157 -80.48569
## 1671                 51 summer       L 25.94157 -80.48569
## 1672                 51 summer       L 25.94157 -80.48569
## 1673                 51 summer       L 25.94157 -80.48569
## 1674                 51 summer       L 25.94157 -80.48569
## 1675                 51 summer       L 25.94157 -80.48569
## 1676                 51 summer       L 25.94157 -80.48569
## 1677                 51 summer       L 25.94157 -80.48569
## 1678                 51 summer       L 25.94157 -80.48569
## 1679                 51 summer       L 25.94157 -80.48569
## 1680                 51 summer       L 25.94157 -80.48569
## 1681                 51 summer       L 25.94157 -80.48569
## 1682                 51 summer       L 25.94157 -80.48569
## 1683                 51 summer       L 25.94157 -80.48569
## 1684                 51 summer       L 25.94157 -80.48569
## 1685                 51 summer       L 25.94157 -80.48569
## 1686                 51 summer       L 25.94157 -80.48569
## 1687                 51 summer       L 25.94157 -80.48569
## 1688                 51 summer       L 25.94157 -80.48569
## 1689                 51 summer       L 25.94157 -80.48569
## 1690                 51 summer       L 25.94157 -80.48569
## 1691                 51 summer       L 25.94157 -80.48569
## 1692                 51 summer       L 25.94157 -80.48569
## 1693                 51 summer       L 25.94157 -80.48569
## 1694                 51 summer       L 25.94157 -80.48569
## 1695                 51 summer       L 25.94157 -80.48569
## 1696                 51 summer       L 25.94157 -80.48569
## 1697                 51 summer       L 25.94157 -80.48569
## 1698                 51 summer       L 25.94157 -80.48569
## 1699                 51 summer       L 25.94157 -80.48569
## 1700                 51 summer       L 25.94157 -80.48569
## 1701                 51 summer       L 25.94157 -80.48569
## 1702                 51 summer       L 25.94157 -80.48569
## 1703                 51 summer       L 25.94157 -80.48569
## 1704                 51 summer       L 25.94157 -80.48569
## 1705                 51 summer       L 25.94157 -80.48569
## 1706                 51 summer       L 25.94157 -80.48569
## 1707                 51 summer       L 25.94157 -80.48569
## 1708                 51 summer       L 25.94157 -80.48569
## 1709                 51 summer       L 25.94157 -80.48569
## 1710                 51 summer       L 25.94157 -80.48569
## 1711                 51 summer       L 25.94157 -80.48569
## 1712                 51 summer       L 25.94157 -80.48569
## 1713                 51 summer       L 25.94157 -80.48569
## 1714                 51 summer       L 25.94157 -80.48569
## 1715                 51 summer       L 25.94157 -80.48569
## 1716                 51 summer       L 25.94157 -80.48569
## 1717                 51 summer       L 25.94157 -80.48569
## 1718                 51 summer       L 25.94157 -80.48569
## 1719                 51 summer       L 25.94157 -80.48569
## 1720                 51 summer       L 25.94157 -80.48569
## 1721                 51 summer       L 25.94157 -80.48569
## 1722                 51 summer       L 25.94157 -80.48569
## 1723                 51 summer       L 25.94157 -80.48569
## 1724                 51 summer       L 25.94157 -80.48569
## 1725                 51 summer       L 25.94157 -80.48569
## 1726                 51 summer       L 25.94157 -80.48569
## 1727                 51 summer       L 25.94157 -80.48569
## 1728                 51 summer       L 25.94157 -80.48569
## 1729                 51 summer       L 25.94157 -80.48569
## 1730                 51 summer       L 25.94157 -80.48569
## 1731                 51 summer       L 25.94157 -80.48569
## 1732                 51 summer       L 25.94157 -80.48569
## 1733                 51 summer       L 25.94157 -80.48569
## 1734                 51 summer       L 25.12811 -80.40805
## 1735                 51 summer       L 25.12811 -80.40805
## 1736                 51 summer       L 25.12811 -80.40805
## 1738                 51 summer       L 25.12811 -80.40805
## 1739                 51 summer       L 25.12811 -80.40805
## 1740                 51 summer       L 25.12811 -80.40805
## 1741                 51 summer       L 25.12811 -80.40805
## 1742                 51 summer       L 25.12811 -80.40805
## 1743                 51 summer       L 25.12811 -80.40805
## 1744                 51 summer       L 25.12811 -80.40805
## 1746                 51 summer       L 25.12811 -80.40805
## 1747                 51 summer       L 25.12811 -80.40805
## 1748                 51 summer       L 25.12811 -80.40805
## 1749                 51 summer       L 25.12811 -80.40805
## 1750                 51 summer       L 25.12811 -80.40805
## 1751                 51 summer       L 25.12800 -80.40808
## 1752                 51 summer       L 25.12800 -80.40808
## 1753                 51 summer       L 25.12800 -80.40808
## 1754                 51 summer       L 25.12800 -80.40808
## 1755                 51 summer       L 25.12800 -80.40808
## 1758                 51 summer       L 25.12800 -80.40808
## 1759                 51 summer       L 25.12800 -80.40808
## 1760                 51 summer       L 25.12800 -80.40808
## 1761                 51 summer       L 25.12800 -80.40808
## 1762                 51 summer       L 25.12800 -80.40808
## 1763                 51 summer       L 25.12800 -80.40808
## 1764                 51 summer       L 25.12800 -80.40808
## 1765                 51 summer       L 25.12800 -80.40808
## 1766                 51 summer       L 25.12800 -80.40808
## 1768                 51 summer       L 25.12800 -80.40808
## 1769                 51 summer       L 25.12858 -80.40809
## 1770                 51 summer       L 25.12858 -80.40809
## 1771                 51 summer       L 25.12858 -80.40809
## 1772                 51 summer       L 25.12858 -80.40809
## 1774                 51 summer       L 25.12858 -80.40809
## 1775                 51 summer       L 25.12858 -80.40809
## 1776                 51 summer       L 25.12858 -80.40809
## 1779                 51 summer       L 25.12858 -80.40809
## 1780                 51 summer       L 25.12858 -80.40809
## 1782                 51 summer       L 25.12858 -80.40809
## 1785                 51 summer       L 25.12858 -80.40809
## 1786                 51 summer       L 25.12858 -80.40809
## 1788                 51 summer       L 25.12858 -80.40809
## 1789                 51 summer       L 25.12858 -80.40809
## 1790                 51 summer       L 25.12858 -80.40809
## 1791                 51 summer       L 25.12858 -80.40809
## 1793                 51 summer       L 25.12858 -80.40809
## 1800                 51 summer       L 25.12858 -80.40809
## 1802                 51 summer       L 25.12858 -80.40809
## 1805                 51 summer       L 25.12858 -80.40809
## 1806                 51 summer       L 25.25688 -80.30938
## 1807                 51 summer       L 25.25688 -80.30938
## 1808                 51 summer       L 25.25688 -80.30938
## 1809                 51 summer       L 25.25688 -80.30938
## 1810                 51 summer       L 25.25688 -80.30938
## 1811                 51 summer       L 25.25688 -80.30938
## 1812                 51 summer       L 25.25688 -80.30938
## 1813                 51 summer       L 25.25688 -80.30938
## 1814                 51 summer       L 25.25688 -80.30938
## 1815                 51 summer       L 25.25688 -80.30938
## 1816                 51 summer       L 25.25688 -80.30938
## 1817                 51 summer       L 25.25688 -80.30938
## 1819                 51 summer       L 25.25688 -80.30938
## 1821                 51 summer       L 25.25688 -80.30938
## 1822                 51 summer       L 25.25688 -80.30938
## 1823                 51 summer       L 25.25688 -80.30938
## 1824                 51 summer       L 25.25688 -80.30938
## 1826                 51 summer       L 27.93573 -81.57409
## 1827                 51 summer       L 27.93573 -81.57409
## 1828                 51 summer       L 27.93573 -81.57409
## 1829                 51 summer       L 27.93573 -81.57409
## 1831                 51 summer       L 27.93573 -81.57409
## 1832                 51 summer       L 27.93573 -81.57409
## 1833                 51 summer       L 27.93573 -81.57409
## 1834                 51 summer       L 27.93573 -81.57409
## 1835                 51 summer       L 27.93573 -81.57409
## 1836                 51 summer       L 27.93573 -81.57409
## 1837                 51 summer       L 27.93573 -81.57409
## 1838                 51 summer       L 27.93573 -81.57409
## 1839                 51 summer       L 27.93573 -81.57409
## 1840                 51 summer       L 27.93573 -81.57409
## 1842                 51 summer       L 27.93573 -81.57409
## 1844                 51 summer       L 27.93573 -81.57409
## 1845                 51 summer       L 27.93573 -81.57409
## 1846                 51 summer       L 27.93573 -81.57409
## 1847                 51 summer       L 27.93573 -81.57409
## 1848                 51 summer       L 27.93573 -81.57409
## 1849                 51 summer       L 27.93573 -81.57409
## 1850                 51 summer       L 27.93573 -81.57409
## 1852                 51 summer       L 27.93573 -81.57409
## 1853                 51 summer       L 27.93573 -81.57409
## 1854                 51 summer       L 27.93573 -81.57409
## 1855                 51 summer       L 27.93573 -81.57409
## 1856                 51 summer       L 27.93573 -81.57409
## 1857                 51 summer       L 27.93573 -81.57409
## 1858                 51 summer       L 27.93573 -81.57409
## 1859                 51 summer       L 27.93573 -81.57409
## 1862                 51 summer       L 27.93573 -81.57409
## 1863                 51 summer       L 27.93573 -81.57409
## 1864                 51 summer       L 27.93573 -81.57409
## 1867                 51 summer       L 27.93573 -81.57409
## 1868                 51 summer       L 27.93573 -81.57409
## 1871                 51 summer       L 27.93573 -81.57409
## 1874                 51 summer       L 27.93573 -81.57409
## 1876                 51 summer       L 27.93573 -81.57409
## 1878                 51 summer       L 27.93573 -81.57409
## 1879                 51 summer       L 27.93573 -81.57409
## 1881                 51 summer       L 27.93573 -81.57409
## 1882                 51 summer       L 27.93573 -81.57409
## 1884                 51 summer       L 27.93573 -81.57409
## 1885                 51 summer       L 27.93573 -81.57409
## 1887                 51 summer       L 27.93573 -81.57409
## 1892                 51 summer       L 27.93573 -81.57409
## 1894                 51 summer       L 27.93573 -81.57409
## 1895                 51 summer       L 27.93573 -81.57409
## 1896                 51 summer       L 27.93573 -81.57409
## 1897                 51 summer       L 27.93573 -81.57409
## 1898                 51 summer       L 27.93573 -81.57409
## 1901                 51 summer       L 27.93573 -81.57409
## 1905                 51 summer       L 27.93573 -81.57409
## 1907                 51 summer       L 27.93573 -81.57409
## 1912                 51 summer       L 27.93573 -81.57409
## 1914                 51 summer       L 27.93573 -81.57409
## 1915                 51 summer       L 27.93573 -81.57409
## 1917                 51 summer       L 28.80530 -81.88184
## 1918                 51 summer       L 28.80530 -81.88184
## 1922                 51 summer       L 28.80530 -81.88184
## 1923                 51 summer       L 28.80530 -81.88184
## 1924                 51 summer       L 28.80530 -81.88184
## 1925                 51 summer       L 28.80530 -81.88184
## 1927                 51 summer       L 28.80530 -81.88184
## 1928                 51 summer       L 28.80530 -81.88184
## 1929                 51 summer       L 28.80530 -81.88184
## 1930                 51 summer       L 28.80530 -81.88184
## 1933                 51 summer       L 28.80530 -81.88184
## 1935                 51 summer       L 28.80530 -81.88184
## 1936                 51 summer       L 28.80530 -81.88184
## 1937                 51 summer       L 28.80530 -81.88184
## 1938                 51 summer       L 28.80530 -81.88184
## 1939                 51 summer       L 28.80530 -81.88184
## 1941                 51 summer       L 28.80530 -81.88184
## 1942                 51 summer       L 28.80530 -81.88184
## 1944                 51 summer       L 28.80530 -81.88184
## 1945                 51 summer       L 28.80530 -81.88184
## 1946                 51 summer       L 28.80530 -81.88184
## 1947                 51 summer       L 28.80530 -81.88184
## 1948                 51 summer       L 28.80530 -81.88184
## 1949                 51 summer       L 28.80530 -81.88184
## 1952                 51 summer       L 28.80530 -81.88184
## 1953                 51 summer       L 28.80530 -81.88184
## 1955                 51 summer       L 28.80530 -81.88184
## 1956                 51 summer       L 28.80530 -81.88184
## 1958                 51 summer       L 28.80530 -81.88184
## 1959                 51 summer       L 28.80530 -81.88184
## 1960                 51 summer       L 28.80530 -81.88184
## 1963                 51 summer       L 28.80530 -81.88184
## 1964                 51 summer       L 28.80530 -81.88184
## 1965                 51 summer       L 28.80530 -81.88184
## 1973                 51 summer       L 28.80530 -81.88184
## 1975                 64   fall       L 29.66648 -82.35720
## 1976                 64   fall       L 29.66648 -82.35720
## 1977                 64   fall       L 29.66648 -82.35720
## 1978                 64   fall       L 29.66648 -82.35720
## 1979                 64   fall       L 29.66648 -82.35720
## 1980                 64   fall       L 29.66648 -82.35720
## 1981                 64   fall       L 29.66648 -82.35720
## 1982                 64   fall       L 29.66648 -82.35720
## 1983                 64   fall       L 29.66648 -82.35720
## 1984                 64   fall       L 29.66648 -82.35720
## 1985                 64   fall       L 29.66648 -82.35720
## 1986                 64   fall       L 29.66648 -82.35720
## 1987                 64   fall       L 29.66648 -82.35720
## 1988                 64   fall       L 29.66648 -82.35720
## 1989                 64   fall       L 29.66648 -82.35720
## 1990                 64   fall       L 29.66648 -82.35720
## 1992                 64   fall       L 29.66648 -82.35720
## 1993                 64   fall       L 29.66648 -82.35720
## 1994                 64   fall       L 29.66648 -82.35720
## 1995                 64   fall       L 29.66648 -82.35720
## 1996                 64   fall       L 29.66648 -82.35720
## 1997                 64   fall       L 29.66648 -82.35720
## 1998                 64   fall       L 29.66648 -82.35720
## 1999                 64   fall       L 29.66648 -82.35720
## 2000                 64   fall       L 29.66648 -82.35720
## 2001                 64   fall       L 29.66648 -82.35720
## 2002                 64   fall       L 29.66648 -82.35720
## 2003                 64   fall       L 29.66648 -82.35720
## 2004                 64   fall       L 29.66648 -82.35720
## 2005                 64   fall       L 29.66648 -82.35720
## 2006                 64   fall       L 29.66648 -82.35720
## 2007                 64   fall       L 29.66648 -82.35720
## 2008                 64   fall       L 29.66648 -82.35720
## 2009                 64   fall       L 29.66648 -82.35720
## 2010                 64   fall       L 29.66648 -82.35720
## 2011                 64   fall       L 29.66648 -82.35720
## 2012                 64   fall       L 29.66648 -82.35720
## 2013                 64   fall       L 29.66648 -82.35720
## 2014                 64   fall       L 29.66648 -82.35720
## 2015                 64   fall       L 29.66648 -82.35720
## 2016                 64   fall       L 29.66648 -82.35720
## 2017                 64   fall       L 29.66648 -82.35720
## 2018                 64   fall       L 29.66648 -82.35720
## 2019                 64   fall       L 29.66648 -82.35720
## 2020                 64   fall       L 29.66648 -82.35720
## 2021                 64   fall       L 29.66648 -82.35720
## 2022                 64   fall       L 29.66648 -82.35720
## 2023                 64   fall       L 29.66648 -82.35720
## 2024                 64   fall       L 29.66648 -82.35720
## 2025                 64   fall       L 29.66648 -82.35720
## 2026                 64   fall       L 29.66648 -82.35720
## 2027                 64   fall       L 29.66648 -82.35720
## 2028                 64   fall       L 29.66648 -82.35720
## 2029                 64   fall       L 29.66648 -82.35720
## 2031                 64   fall       L 29.66648 -82.35720
## 2032                 64   fall       L 29.66648 -82.35720
## 2033                 64   fall       L 29.66648 -82.35720
## 2034                 64   fall       L 29.66648 -82.35720
## 2036                 64   fall       L 29.66648 -82.35720
## 2037                 64   fall       L 29.66648 -82.35720
## 2038                 64   fall       L 29.66648 -82.35720
## 2039                 64   fall       L 25.19492 -80.34596
## 2040                 64   fall       L 25.19492 -80.34596
## 2041                 64   fall       L 25.19492 -80.34596
## 2042                 64   fall       L 25.19492 -80.34596
## 2047                 64   fall       L 25.19492 -80.34596
## 2050                 64   fall       L 25.19492 -80.34596
## 2053                 64   fall       L 25.19492 -80.34596
## 2055                 64   fall       L 25.19492 -80.34596
## 2057                 64   fall       L 25.19492 -80.34596
## 2058                 64   fall       L 25.19492 -80.34596
## 2059                 64   fall       L 25.19492 -80.34596
## 2062                 64   fall       L 25.19492 -80.34596
## 2064                 64   fall       L 25.19492 -80.34596
## 2065                 64   fall       L 25.19492 -80.34596
## 2069                 64   fall       L 25.19492 -80.34596
## 2071                 64   fall       L 25.19492 -80.34596
## 2072                 64   fall       L 25.19492 -80.34596
## 2073                 64   fall       L 25.19492 -80.34596
## 2079                 64   fall       L 25.19492 -80.34596
## 2081                 64   fall       L 25.19492 -80.34596
## 2082                 64   fall       L 25.19492 -80.34596
## 2083                 64   fall       L 25.19492 -80.34596
## 2085                 64   fall       L 25.19492 -80.34596
## 2086                 64   fall       L 25.19492 -80.34596
## 2087                 64   fall       L 25.19492 -80.34596
## 2088                 64   fall       L 25.19492 -80.34596
## 2091                 64   fall       L 25.19492 -80.34596
## 2094                 64   fall       L 25.19492 -80.34596
## 2095                 64   fall       L 25.19492 -80.34596
## 2097                 64   fall       L 25.19492 -80.34596
## 2099                 64   fall       L 25.19492 -80.34596
## 2101                 64   fall       L 25.19492 -80.34596
## 2103                 64   fall       L 25.19492 -80.34596
## 2107                 64   fall       L 27.93575 -81.57412
## 2108                 64   fall       L 27.93575 -81.57412
## 2109                 64   fall       L 27.93575 -81.57412
## 2110                 64   fall       L 27.93575 -81.57412
## 2111                 64   fall       L 27.93575 -81.57412
## 2112                 64   fall       L 27.93575 -81.57412
## 2113                 64   fall       L 27.93575 -81.57412
## 2115                 64   fall       L 27.93575 -81.57412
## 2116                 64   fall       L 27.93575 -81.57412
## 2117                 64   fall       L 27.93575 -81.57412
## 2118                 64   fall       L 27.93575 -81.57412
## 2119                 64   fall       L 27.93575 -81.57412
## 2120                 64   fall       L 27.93575 -81.57412
## 2121                 64   fall       L 27.93575 -81.57412
## 2122                 64   fall       L 27.93575 -81.57412
## 2123                 64   fall       L 27.93575 -81.57412
## 2124                 64   fall       L 27.93575 -81.57412
## 2125                 64   fall       L 27.93575 -81.57412
## 2126                 64   fall       L 27.93575 -81.57412
## 2127                 64   fall       L 27.93575 -81.57412
## 2128                 64   fall       L 27.93575 -81.57412
## 2129                 64   fall       L 27.93575 -81.57412
## 2130                 64   fall       L 27.93575 -81.57412
## 2131                 64   fall       L 27.93575 -81.57412
## 2133                 64   fall       L 27.93575 -81.57412
## 2134                 64   fall       L 27.93575 -81.57412
## 2136                 64   fall       L 27.93575 -81.57412
## 2137                 64   fall       L 27.93575 -81.57412
## 2138                 64   fall       L 27.93575 -81.57412
## 2139                 64   fall       L 27.93575 -81.57412
## 2140                 64   fall       L 27.93575 -81.57412
## 2141                 64   fall       L 27.93575 -81.57412
## 2142                 64   fall       L 27.93575 -81.57412
## 2143                 64   fall       L 27.93575 -81.57412
## 2144                 64   fall       L 27.93575 -81.57412
## 2145                 64   fall       L 27.93575 -81.57412
## 2146                 64   fall       L 27.93575 -81.57412
## 2147                 64   fall       L 28.81527 -81.88217
## 2148                 72 spring       L 29.66679 -82.35761
## 2149                 72 spring       L 29.66679 -82.35761
## 2150                 72 spring       L 29.66679 -82.35761
## 2151                 72 spring       L 29.66679 -82.35761
## 2152                 72 spring       L 29.66679 -82.35761
## 2154                 72 spring       L 29.66679 -82.35761
## 2155                 72 spring       L 29.66679 -82.35761
## 2156                 72 spring       L 29.66679 -82.35761
## 2157                 72 spring       L 29.66197 -82.34728
## 2158                 72 spring       L 29.66197 -82.34728
## 2159                 72 spring       L 29.66197 -82.34728
## 2160                 72 spring       L 29.66197 -82.34728
## 2161                 72 spring       L 29.66197 -82.34728
## 2162                 72 spring       L 29.66197 -82.34728
## 2163                 72 spring       L 29.66197 -82.34728
## 2164                 72 spring       L 29.66197 -82.34728
## 2165                 72 spring       L 29.66197 -82.34728
## 2166                 72 spring       L 29.66197 -82.34728
## 2168                 72 spring       L 29.66197 -82.34728
## 2169                 72 spring       L 29.66197 -82.34728
## 2170                 72 spring       L 29.66197 -82.34728
## 2171                 72 spring       L 29.66197 -82.34728
## 2172                 72 spring       L 29.66197 -82.34728
## 2173                 72 spring       L 29.66197 -82.34728
## 2174                 72 spring       L 29.66197 -82.34728
## 2175                 72 spring       L 29.66197 -82.34728
## 2176                 72 spring       L 29.66197 -82.34728
## 2177                 72 spring       L 29.66197 -82.34728
## 2178                 72 spring       L 29.66197 -82.34728
## 2179                 72 spring       L 29.66197 -82.34728
## 2180                 72 spring       L 29.66197 -82.34728
## 2181                 72 spring       L 29.66197 -82.34728
## 2182                 72 spring       L 29.66197 -82.34728
## 2183                 72 spring       L 29.66197 -82.34728
## 2184                 72 spring       L 29.66197 -82.34728
## 2185                 72 spring       L 29.66197 -82.34728
## 2186                 72 spring       L 29.66197 -82.34728
## 2187                 72 spring       L 29.66197 -82.34728
## 2188                 72 spring       L 29.66197 -82.34728
## 2189                 72 spring       L 29.66197 -82.34728
## 2190                 72 spring       L 29.66197 -82.34728
## 2191                 72 spring       L 29.66197 -82.34728
## 2192                 72 spring       L 29.66197 -82.34728
## 2193                 72 spring       L 29.66197 -82.34728
## 2194                 72 spring       L 29.66197 -82.34728
## 2195                 72 spring       L 29.66197 -82.34728
## 2196                 72 spring       L 29.66197 -82.34728
## 2198                 72 spring       L 25.48862 -80.48976
## 2199                 72 spring       L 25.48862 -80.48976
## 2200                 72 spring       L 25.48862 -80.48976
## 2201                 72 spring       L 25.48862 -80.48976
## 2202                 72 spring       L 25.48862 -80.48976
## 2204                 72 spring       L 25.48862 -80.48976
## 2212                 72 spring       L 25.48862 -80.48976
## 2213                 72 spring       L 25.48862 -80.48976
## 2218                 72 spring       L 25.12848 -80.40754
## 2219                 72 spring       L 25.12848 -80.40754
## 2220                 72 spring       L 25.12848 -80.40754
## 2221                 72 spring       L 25.12848 -80.40754
## 2228                 72 spring       L 25.12848 -80.40754
## 2232                 72 spring       L 25.12848 -80.40754
## 2233                 72 spring       L 25.12848 -80.40754
## 2234                 72 spring       L 25.12848 -80.40754
## 2235                 72 spring       L 25.12848 -80.40754
## 2237                 72 spring       L 25.12848 -80.40754
## 2238                 72 spring       L 25.12848 -80.40754
## 2240                 72 spring       L 25.12848 -80.40754
## 2245                 72 spring       L 25.12848 -80.40754
## 2247                 72 spring       L 25.12848 -80.40754
## 2251                 72 spring       L 25.12848 -80.40754
## 2256                 72 spring       L 25.12848 -80.40754
## 2261                 72 spring       L 25.12848 -80.40754
## 2262                 72 spring       L 25.12848 -80.40754
## 2263                 72 spring       L 25.12848 -80.40754
## 2266                 72 spring       L 25.12848 -80.40754
## 2268                 72 spring       L 25.12848 -80.40754
## 2270                 72 spring       L 25.12848 -80.40754
## 2274                 72 spring       L 25.12848 -80.40754
## 2282                 72 spring       L 25.12848 -80.40754
## 2285                 72 spring       L 25.12848 -80.40754
## 2288                 72 spring       L 25.12848 -80.40754
## 2291                 72 spring       L 27.29866 -81.36612
## 2292                 72 spring       L 27.29866 -81.36612
## 2293                 72 spring       L 27.29866 -81.36612
## 2294                 72 spring       L 27.29866 -81.36612
## 2295                 72 spring       L 27.29866 -81.36612
## 2296                 72 spring       L 27.29866 -81.36612
## 2297                 72 spring       L 27.29866 -81.36612
## 2298                 72 spring       L 27.29866 -81.36612
## 2300                 72 spring       L 27.29866 -81.36612
## 2302                 72 spring       L 27.29866 -81.36612
## 2305                 72 spring       L 27.29866 -81.36612
## 2306                 72 spring       L 27.29866 -81.36612
## 2308                 72 spring       L 27.29866 -81.36612
## 2310                 72 spring       L 27.29866 -81.36612
## 2312                 72 spring       L 27.29866 -81.36612
## 2313                 72 spring       L 27.29866 -81.36612
## 2314                 72 spring       L 27.29866 -81.36612
## 2315                 72 spring       L 27.29866 -81.36612
## 2316                 72 spring       L 27.29866 -81.36612
## 2317                 72 spring       L 27.29866 -81.36612
## 2318                 72 spring       L 27.29866 -81.36612
## 2319                 72 spring       L 27.29866 -81.36612
## 2320                 72 spring       L 27.29866 -81.36612
## 2321                 72 spring       L 27.29866 -81.36612
## 2322                 72 spring       L 27.29866 -81.36612
## 2323                 72 spring       L 27.29866 -81.36612
## 2324                 72 spring       L 27.29866 -81.36612
## 2325                 72 spring       L 27.29866 -81.36612
## 2326                 72 spring       L 27.29866 -81.36612
## 2327                 72 spring       L 27.29866 -81.36612
## 2328                 72 spring       L 27.29866 -81.36612
## 2329                 72 spring       L 27.29866 -81.36612
## 2330                 72 spring       L 27.29866 -81.36612
## 2331                 72 spring       L 27.29866 -81.36612
## 2332                 72 spring       L 27.29866 -81.36612
## 2333                 72 spring       L 27.29866 -81.36612
## 2334                 72 spring       L 27.29866 -81.36612
## 2335                 72 spring       L 27.29866 -81.36612
## 2337                 72 spring       L 27.29866 -81.36612
## 2338                 72 spring       L 27.29866 -81.36612
## 2340                 72 spring       L 27.29866 -81.36612
## 2342                 72 spring       L 27.29866 -81.36612
## 2343                 72 spring       L 27.29866 -81.36612
## 2344                 72 spring       L 27.29866 -81.36612
## 2345                 72 spring       L 27.29866 -81.36612
## 2346                 72 spring       L 27.29866 -81.36612
## 2347                 72 spring       L 27.29866 -81.36612
## 2348                 72 spring       L 27.29866 -81.36612
## 2349                 72 spring       L 27.29866 -81.36612
## 2350                 72 spring       L 27.29866 -81.36612
## 2351                 72 spring       L 27.29866 -81.36612
## 2352                 72 spring       L 27.29866 -81.36612
## 2353                 72 spring       L 27.29866 -81.36612
## 2354                 72 spring       L 25.22809 -80.32888
## 2355                 72 spring       L 25.22809 -80.32888
## 2356                 72 spring       L 25.22809 -80.32888
## 2357                 72 spring       L 25.22809 -80.32888
## 2359                 72 spring       L 25.22809 -80.32888
## 2361                 72 spring       L 25.22809 -80.32888
## 2362                 72 spring       L 25.22809 -80.32888
## 2363                 72 spring       L 25.22809 -80.32888
## 2365                 72 spring       L 25.22809 -80.32888
## 2366                 72 spring       L 25.22809 -80.32888
## 2367                 72 spring       L 25.22809 -80.32888
## 2368                 72 spring       L 25.22809 -80.32888
## 2370                 72 spring       L 25.22809 -80.32888
## 2371                 72 spring       L 25.22809 -80.32888
## 2372                 72 spring       L 25.22809 -80.32888
## 2373                 72 spring       L 25.22809 -80.32888
## 2374                 72 spring       L 25.22809 -80.32888
## 2376                 72 spring       L 25.22809 -80.32888
## 2379                 72 spring       L 25.22809 -80.32888
## 2381                 72 spring       L 25.22809 -80.32888
## 2383                 72 spring       L 25.22809 -80.32888
## 2386                 72 spring       L 25.22809 -80.32888
## 2387                 72 spring       L 25.22809 -80.32888
## 2388                 72 spring       L 25.22809 -80.32888
## 2389                 72 spring       L 25.22809 -80.32888
## 2390                 72 spring       L 25.22809 -80.32888
## 2391                 72 spring       L 25.22809 -80.32888
## 2392                 72 spring       L 25.22809 -80.32888
## 2394                 72 spring       L 25.22809 -80.32888
## 2395                 72 spring       L 25.22809 -80.32888
## 2398                 72 spring       L 25.19484 -80.34590
## 2399                 72 spring       L 25.19484 -80.34590
## 2400                 72 spring       L 25.19484 -80.34590
## 2401                 72 spring       L 25.19484 -80.34590
## 2403                 72 spring       L 25.19484 -80.34590
## 2404                 72 spring       L 25.19484 -80.34590
## 2406                 72 spring       L 25.19484 -80.34590
## 2408                 72 spring       L 25.19484 -80.34590
## 2409                 72 spring       L 25.19484 -80.34590
## 2410                 72 spring       L 25.19484 -80.34590
## 2417                 72 spring       L 25.19484 -80.34590
## 2418                 72 spring       L 25.19484 -80.34590
## 2420                 72 spring       L 25.19484 -80.34590
## 2421                 72 spring       L 25.19484 -80.34590
## 2422                 72 spring       L 25.19484 -80.34590
## 2423                 72 spring       L 25.19484 -80.34590
## 2425                 72 spring       L 25.19484 -80.34590
## 2428                 72 spring       L 25.19484 -80.34590
## 2429                 72 spring       L 25.19484 -80.34590
## 2431                 72 spring       L 25.19484 -80.34590
## 2432                 72 spring       L 25.19484 -80.34590
## 2434                 72 spring       L 25.19484 -80.34590
## 2436                 72 spring       L 25.19484 -80.34590
## 2439                 72 spring       L 25.19484 -80.34590
## 2440                 72 spring       L 25.19484 -80.34590
## 2441                 72 spring       L 25.19484 -80.34590
## 2447                 72 spring       L 25.19484 -80.34590
## 2452                 72 spring       L 25.19484 -80.34590
## 2456                 72 spring       L 25.18229 -80.36370
## 2457                 72 spring       L 25.18229 -80.36370
## 2459                 72 spring       L 25.18229 -80.36370
## 2466                 72 spring       L 25.17550 -80.36782
## 2469                 72 spring       L 25.17550 -80.36782
## 2470                 72 spring       L 25.17550 -80.36782
## 2472                 72 spring       L 25.17550 -80.36782
## 2473                 72 spring       L 25.17550 -80.36782
## 2476                 72 spring       L 25.17550 -80.36782
## 2477                 72 spring       L 25.17550 -80.36782
## 2478                 72 spring       L 25.17550 -80.36782
## 2479                 72 spring       L 25.17550 -80.36782
## 2480                 72 spring       L 25.17550 -80.36782
## 2482                 72 spring       L 25.17550 -80.36782
## 2484                 72 spring       L 25.17550 -80.36782
## 2487                 72 spring       L 25.17550 -80.36782
## 2496                 72 spring       L 25.17550 -80.36782
## 2497                 72 spring       L 25.17550 -80.36782
## 2498                 72 spring       L 25.17550 -80.36782
## 2499                 72 spring       L 25.17550 -80.36782
## 2501                 72 spring       L 25.17550 -80.36782
## 2502                 72 spring       L 25.17550 -80.36782
## 2503                 72 spring       L 25.17550 -80.36782
## 2504                 72 spring       L 25.17550 -80.36782
## 2505                 72 spring       L 25.17550 -80.36782
## 2507                 72 spring       L 25.17550 -80.36782
## 2510                 72 spring       L 25.17550 -80.36782
## 2512                 72 spring       L 25.17550 -80.36782
## 2514                 72 spring       L 25.17550 -80.36782
## 2518                 72 spring       L 25.17550 -80.36782
## 2519                 72 spring       L 25.17550 -80.36782
## 2521                 72 spring       L 25.17550 -80.36782
## 2523                 72 spring       L 25.17550 -80.36782
## 2524                 72 spring       L 25.17550 -80.36782
## 2525                 72 spring       L 25.17550 -80.36782
## 2526                 72 spring       L 25.17550 -80.36782
## 2527                 72 spring       L 25.17550 -80.36782
## 2530                 72 spring       L 25.17550 -80.36782
## 2535                 72 spring       L 25.17550 -80.36782
## 2537                 72 spring       L 25.17550 -80.36782
## 2541                 72 spring       L 25.17550 -80.36782
## 2543                 72 spring       L 25.17550 -80.36782
## 2544                 72 spring       L 25.17550 -80.36782
## 2545                 72 spring       L 25.17550 -80.36782
## 2546                 72 spring       L 25.17550 -80.36782
## 2549                 72 spring       L 25.17550 -80.36782
## 2554                 72 spring       L 25.17550 -80.36782
## 2561                 72 spring       L 25.17550 -80.36782
## 2566                 72 spring       L 25.27352 -80.30428
## 2567                 72 spring       L 25.27352 -80.30428
## 2568                 72 spring       L 25.27352 -80.30428
## 2569                 72 spring       L 25.27352 -80.30428
## 2570                 72 spring       L 25.27352 -80.30428
## 2572                 72 spring       L 25.27352 -80.30428
## 2573                 72 spring       L 25.27352 -80.30428
## 2574                 72 spring       L 25.27352 -80.30428
## 2575                 72 spring       L 25.27352 -80.30428
## 2576                 72 spring       L 25.27352 -80.30428
## 2577                 72 spring       L 25.27352 -80.30428
## 2578                 72 spring       L 25.27352 -80.30428
## 2579                 72 spring       L 25.27352 -80.30428
## 2580                 72 spring       L 25.27352 -80.30428
## 2581                 72 spring       L 25.27352 -80.30428
## 2582                 72 spring       L 25.27352 -80.30428
## 2584                 72 spring       L 25.27352 -80.30428
## 2585                 72 spring       L 25.27352 -80.30428
## 2586                 72 spring       L 25.27352 -80.30428
## 2587                 72 spring       L 25.27352 -80.30428
## 2588                 72 spring       L 25.27352 -80.30428
## 2590                 72 spring       L 25.27352 -80.30428
## 2591                 72 spring       L 25.27352 -80.30428
## 2592                 72 spring       L 25.27352 -80.30428
## 2593                 72 spring       L 25.27352 -80.30428
## 2595                 72 spring       L 25.27352 -80.30428
## 2596                 72 spring       L 25.28637 -80.29077
## 2597                 72 spring       L 25.28637 -80.29077
## 2598                 72 spring       L 25.28637 -80.29077
## 2600                 72 spring       L 25.28637 -80.29077
## 2604                 72 spring       L 24.96448 -80.56739
## 2606                 72 spring       L 24.96448 -80.56739
## 2607                 72 spring       L 24.96448 -80.56739
## 2608                 72 spring       L 24.96448 -80.56739
## 2614                 72 spring       L 24.96448 -80.56739
## 2622                 72 spring       L 24.96448 -80.56739
## 2624                 72 spring       L 24.96448 -80.56739
## 2625                 72 spring       L 24.96448 -80.56739
## 2628                 72 spring       L 24.96448 -80.56739
## 2629                 72 spring       L 24.96448 -80.56739
## 2634                 72 spring       L 24.96448 -80.56739
## 2637                 77   fall       L 29.66182 -82.34721
## 2638                 77   fall       L 29.66182 -82.34721
## 2639                 77   fall       L 29.66182 -82.34721
## 2640                 77   fall       L 29.66182 -82.34721
## 2641                 77   fall       L 29.66182 -82.34721
## 2645                 77   fall       L 29.66182 -82.34721
## 2647                 77   fall       L 29.66182 -82.34721
## 2651                 77   fall       L 29.66182 -82.34721
## 2652                 77   fall       L 29.66182 -82.34721
## 2653                 77   fall       L 25.49197 -80.48562
## 2654                 77   fall       L 25.49197 -80.48562
## 2655                 77   fall       L 25.49197 -80.48562
## 2656                 77   fall       L 25.49197 -80.48562
## 2657                 77   fall       L 25.49197 -80.48562
## 2658                 77   fall       L 25.49197 -80.48562
## 2659                 77   fall       L 25.49197 -80.48562
## 2660                 77   fall       L 25.49197 -80.48562
## 2661                 77   fall       L 25.49197 -80.48562
## 2662                 77   fall       L 25.49197 -80.48562
## 2663                 77   fall       L 25.49197 -80.48562
## 2664                 77   fall       L 25.49197 -80.48562
## 2665                 77   fall       L 25.49197 -80.48562
## 2666                 77   fall       L 25.49197 -80.48562
## 2667                 77   fall       L 25.49197 -80.48562
## 2669                 77   fall       L 25.49197 -80.48562
## 2670                 77   fall       L 25.49197 -80.48562
## 2671                 77   fall       L 25.49197 -80.48562
## 2672                 77   fall       L 25.49197 -80.48562
## 2673                 77   fall       L 25.49197 -80.48562
## 2674                 77   fall       L 25.49197 -80.48562
## 2675                 77   fall       L 25.49197 -80.48562
## 2676                 77   fall       L 25.49197 -80.48562
## 2677                 77   fall       L 25.49197 -80.48562
## 2678                 77   fall       L 25.49197 -80.48562
## 2679                 77   fall       L 25.49197 -80.48562
## 2683                 77   fall       L 25.49197 -80.48562
## 2684                 77   fall       L 25.49197 -80.48562
## 2685                 77   fall       L 25.49197 -80.48562
## 2686                 77   fall       L 25.49197 -80.48562
## 2687                 77   fall       L 25.49197 -80.48562
## 2693                 77   fall       L 25.12858 -80.40809
## 2695                 77   fall       L 25.12858 -80.40809
## 2697                 77   fall       L 25.12858 -80.40809
## 2698                 77   fall       L 25.12858 -80.40809
## 2701                 77   fall       L 25.12858 -80.40809
## 2704                 77   fall       L 27.29866 -81.36612
## 2705                 77   fall       L 27.29866 -81.36612
## 2706                 77   fall       L 27.29866 -81.36612
## 2707                 77   fall       L 27.29866 -81.36612
## 2709                 77   fall       L 27.29866 -81.36612
## 2710                 77   fall       L 27.29866 -81.36612
## 2711                 77   fall       L 27.29866 -81.36612
## 2712                 77   fall       L 27.29866 -81.36612
## 2713                 77   fall       L 27.29866 -81.36612
## 2716                 77   fall       L 27.29866 -81.36612
## 2717                 77   fall       L 27.29866 -81.36612
## 2718                 77   fall       L 27.29866 -81.36612
## 2719                 77   fall       L 27.29866 -81.36612
## 2720                 77   fall       L 27.29866 -81.36612
## 2721                 77   fall       L 27.29866 -81.36612
## 2722                 77   fall       L 27.29866 -81.36612
## 2723                 77   fall       L 27.29866 -81.36612
## 2724                 77   fall       L 27.29866 -81.36612
## 2725                 77   fall       L 27.29866 -81.36612
## 2726                 77   fall       L 27.29866 -81.36612
## 2727                 77   fall       L 27.29866 -81.36612
## 2728                 77   fall       L 27.29866 -81.36612
## 2730                 77   fall       L 27.29866 -81.36612
## 2731                 77   fall       L 27.29866 -81.36612
## 2733                 77   fall       L 27.29866 -81.36612
## 2734                 77   fall       L 27.29866 -81.36612
## 2735                 77   fall       L 27.29866 -81.36612
## 2736                 77   fall       L 27.29866 -81.36612
## 2737                 77   fall       L 27.29866 -81.36612
## 2738                 77   fall       L 27.29866 -81.36612
## 2739                 77   fall       L 27.29866 -81.36612
## 2740                 77   fall       L 27.29866 -81.36612
## 2741                 77   fall       L 27.29866 -81.36612
## 2742                 77   fall       L 27.29866 -81.36612
## 2743                 77   fall       L 27.29866 -81.36612
## 2744                 77   fall       L 27.29866 -81.36612
## 2745                 77   fall       L 27.29866 -81.36612
## 2747                 77   fall       L 27.90335 -81.58946
## 2748                 77   fall       L 27.90335 -81.58946
## 2749                 77   fall       L 27.90335 -81.58946
## 2752                 77   fall       L 27.90335 -81.58946
## 2754                 77   fall       L 27.90335 -81.58946
## 2756                 77   fall       L 27.90335 -81.58946
## 2757                 77   fall       L 27.90335 -81.58946
## 2758                 77   fall       L 27.90335 -81.58946
## 2759                 77   fall       L 27.90335 -81.58946
## 2760                 77   fall       L 27.90335 -81.58946
## 2761                 77   fall       L 27.90335 -81.58946
## 2763                 77   fall       L 27.90335 -81.58946
## 2764                 77   fall       L 27.90335 -81.58946
## 2765                 77   fall       L 27.90335 -81.58946
## 2767                 77   fall       L 27.90335 -81.58946
## 2768                 77   fall       L 27.90335 -81.58946
## 2769                 77   fall       L 27.90335 -81.58946
## 2772                 77   fall       L 28.81298 -81.87789
## 2773                 77   fall       L 28.81298 -81.87789
## 2774                 77   fall       L 28.81298 -81.87789
## 2777                 77   fall       L 28.81298 -81.87789
## 2779                 77   fall       L 28.81298 -81.87789
## 2780                 77   fall       L 28.81298 -81.87789
## 2781                 77   fall       L 28.81298 -81.87789
## 2782                 77   fall       L 28.81298 -81.87789
## 2784                 77   fall       L 28.81527 -81.88217
## 2785                 77   fall       L 28.81527 -81.88217
## 2786                 77   fall       L 28.81527 -81.88217
## 2787                 77   fall       L 28.81527 -81.88217
## 2788                 77   fall       L 28.81527 -81.88217
## 2789                 77   fall       L 28.81527 -81.88217
## 2791                 77   fall       L 28.81527 -81.88217
## 2792                 77   fall       L 28.81527 -81.88217
## 2794                 77   fall       L 28.81527 -81.88217
## 2795                 77   fall       L 28.81527 -81.88217
## 2797                 77   fall       L 28.81527 -81.88217
## 2798                 77   fall       L 25.17550 -80.36782
## 2799                 77   fall       L 25.17550 -80.36782
## 2800                 77   fall       L 25.17550 -80.36782
## 2801                 77   fall       L 25.17550 -80.36782
## 2802                 77   fall       L 25.17550 -80.36782
## 2806                 77   fall       L 25.17369 -80.37153
## 2807                 77   fall       L 25.17369 -80.37153
## 2808                 77   fall       L 25.17369 -80.37153
## 2810                 77   fall       L 25.17369 -80.37153
## 2812                 77   fall       L 25.18229 -80.36370
## 2813                 77   fall       L 25.18229 -80.36370
## 2816                 77   fall       L 25.18229 -80.36370
## 2820                 77   fall       L 25.18229 -80.36370
## 2823                 77   fall       L 25.18229 -80.36370
## 2826                 77   fall       L 25.18229 -80.36370
## 2830                 77   fall       L 25.18229 -80.36370
## 2831                 77   fall       L 25.25648 -80.31069
## 2833                 77   fall       L 25.25648 -80.31069
## 2834                 77   fall       L 25.25648 -80.31069
## 2835                 77   fall       L 25.25648 -80.31069
## 2836                 77   fall       L 25.25648 -80.31069
## 2837                 77   fall       L 25.25648 -80.31069
## 2839                 77   fall       L 25.27352 -80.30428
## 2841                 77   fall       L 25.27352 -80.30428
## 2842                 77   fall       L 25.25284 -80.31183
## 2844                 77   fall       L 25.25284 -80.31183
## 2845                 77   fall       L 25.28637 -80.29077
## 2847                 77   fall       L 25.28637 -80.29077
## 2848                 77   fall       L 25.28637 -80.29077
## 2850                 77   fall       L 25.28637 -80.29077
## 2851                 77   fall       L 25.28637 -80.29077
## 2853                 77   fall       L 25.28637 -80.29077
## 2854                 77   fall       L 25.28637 -80.29077
## 2855                 77   fall       L 25.28637 -80.29077
## 2856                 77   fall       L 25.28637 -80.29077
## 2859                 77   fall       L 25.28637 -80.29077
## 2860                 77   fall       L 25.28637 -80.29077
## 2862                 77   fall       L 25.28637 -80.29077
## 2863                 77   fall       L 25.28637 -80.29077
## 2864                 77   fall       L 25.28637 -80.29077
## 2868                 77   fall       L 25.28637 -80.29077
## 2869                 77   fall       L 25.28637 -80.29077
## 2871                 77   fall       L 25.28637 -80.29077
## 2878                 77   fall       L 25.19515 -80.34592
## 2884                 77   fall       L 24.98519 -80.54710
## 2886                 77   fall       L 24.98519 -80.54710
## 2887                 77   fall       L 24.98519 -80.54710
## 2891                 77   fall       L 24.98519 -80.54710
## 2892                 77   fall       L 24.98519 -80.54710
## 2893                 77   fall       L 24.98519 -80.54710
## 2895                 77   fall       L 24.98519 -80.54710
## 2896                 77   fall       L 24.98519 -80.54710
## 2897                 81 winter       L 29.66200 -82.34731
## 2899                 81 winter       L 29.66200 -82.34731
## 2900                 81 winter       L 29.66200 -82.34731
## 2901                 81 winter       L 29.66200 -82.34731
## 2904                 81 winter       L 29.66200 -82.34731
## 2905                 81 winter       L 29.66200 -82.34731
## 2906                 81 winter       L 29.66200 -82.34731
## 2907                 81 winter       L 29.66200 -82.34731
## 2908                 81 winter       L 29.66200 -82.34731
## 2911                 81 winter       L 29.66200 -82.34731
## 2912                 81 winter       L 29.66200 -82.34731
## 2914                 81 winter       L 29.66202 -82.34731
## 2917                 81 winter       L 29.66202 -82.34731
## 2919                 81 winter       L 29.66202 -82.34731
## 2921                 81 winter       L 29.66202 -82.34731
## 2923                 81 winter       L 29.66202 -82.34731
## 2929                 81 winter       L 29.66202 -82.34731
## 2930                 81 winter       L 29.66202 -82.34731
## 2931                 81 winter       L 29.66202 -82.34731
## 2932                 81 winter       L 29.66202 -82.34731
## 2933                 81 winter       L 25.49136 -80.48582
## 2934                 81 winter       L 25.49136 -80.48582
## 2935                 81 winter       L 25.49136 -80.48582
## 2936                 81 winter       L 25.49136 -80.48582
## 2937                 81 winter       L 25.49136 -80.48582
## 2939                 81 winter       L 25.49136 -80.48582
## 2940                 81 winter       L 25.49136 -80.48582
## 2944                 81 winter       L 25.49136 -80.48582
## 2945                 81 winter       L 25.49136 -80.48582
## 2947                 81 winter       L 25.49136 -80.48582
## 2948                 81 winter       L 25.49136 -80.48582
## 2949                 81 winter       L 25.49136 -80.48582
## 2950                 81 winter       L 25.49136 -80.48582
## 2951                 81 winter       L 25.49136 -80.48582
## 2952                 81 winter       L 25.49136 -80.48582
## 2953                 81 winter       L 25.49136 -80.48582
## 2954                 81 winter       L 25.49136 -80.48582
## 2955                 81 winter       L 25.49136 -80.48582
## 2956                 81 winter       L 25.49136 -80.48582
## 2957                 81 winter       L 25.49136 -80.48582
## 2958                 81 winter       L 25.49136 -80.48582
## 2959                 81 winter       L 25.49136 -80.48582
## 2960                 81 winter       L 25.49136 -80.48582
## 2964                 81 winter       L 25.49136 -80.48582
## 2965                 81 winter       L 25.49136 -80.48582
## 2970                 81 winter       L 25.49136 -80.48582
## 2971                 81 winter       L 25.49136 -80.48582
## 2972                 81 winter       L 25.49136 -80.48582
## 2973                 81 winter       L 25.49136 -80.48582
## 2974                 81 winter       L 25.49136 -80.48582
## 2975                 81 winter       L 25.10002 -80.43752
## 2976                 81 winter       L 25.10002 -80.43752
## 2978                 81 winter       L 25.10002 -80.43752
## 2979                 81 winter       L 25.12846 -80.40809
## 2980                 81 winter       L 25.12846 -80.40809
## 2981                 81 winter       L 25.12846 -80.40809
## 2982                 81 winter       L 25.12846 -80.40809
## 2983                 81 winter       L 25.12846 -80.40809
## 2984                 81 winter       L 25.12846 -80.40809
## 2985                 81 winter       L 25.10002 -80.43752
## 2986                 81 winter       L 25.10002 -80.43752
## 2987                 81 winter       L 25.10002 -80.43752
## 2988                 81 winter       L 25.10002 -80.43752
## 2990                 81 winter       L 25.12846 -80.40809
## 2991                 81 winter       L 25.12846 -80.40809
## 2992                 81 winter       L 25.12846 -80.40809
## 2994                 81 winter       L 25.10002 -80.43752
## 2995                 81 winter       L 25.10002 -80.43752
## 2997                 81 winter       L 25.10002 -80.43752
## 2998                 81 winter       L 25.10002 -80.43752
## 2999                 81 winter       L 25.12846 -80.40809
## 3000                 81 winter       L 25.12846 -80.40809
## 3001                 81 winter       L 25.12846 -80.40809
## 3002                 81 winter       L 25.12846 -80.40809
## 3004                 81 winter       L 25.10002 -80.43752
## 3005                 81 winter       L 25.10002 -80.43752
## 3006                 81 winter       L 25.10002 -80.43752
## 3007                 81 winter       L 25.10002 -80.43752
## 3009                 81 winter       L 25.12846 -80.40809
## 3010                 81 winter       L 25.12846 -80.40809
## 3011                 81 winter       L 25.12846 -80.40809
## 3013                 81 winter       L 25.10002 -80.43752
## 3014                 81 winter       L 25.10002 -80.43752
## 3015                 81 winter       L 25.10002 -80.43752
## 3016                 81 winter       L 25.10002 -80.43752
## 3019                 81 winter       L 25.12846 -80.40809
## 3020                 81 winter       L 25.12846 -80.40809
## 3045                 81 winter       L 25.12858 -80.40809
## 3050                 81 winter       L 25.12858 -80.40809
## 3052                 81 winter       L 25.12858 -80.40809
## 3053                 81 winter       L 25.12858 -80.40809
## 3054                 81 winter       L 27.29866 -81.36612
## 3055                 81 winter       L 27.29866 -81.36612
## 3056                 81 winter       L 27.29866 -81.36612
## 3057                 81 winter       L 27.29866 -81.36612
## 3058                 81 winter       L 27.29866 -81.36612
## 3059                 81 winter       L 27.29866 -81.36612
## 3060                 81 winter       L 27.29866 -81.36612
## 3061                 81 winter       L 27.29866 -81.36612
## 3062                 81 winter       L 27.29866 -81.36612
## 3063                 81 winter       L 27.29866 -81.36612
## 3064                 81 winter       L 27.29866 -81.36612
## 3066                 81 winter       L 27.29866 -81.36612
## 3067                 81 winter       L 27.29866 -81.36612
## 3068                 81 winter       L 27.29866 -81.36612
## 3069                 81 winter       L 27.29866 -81.36612
## 3070                 81 winter       L 27.29866 -81.36612
## 3071                 81 winter       L 27.29866 -81.36612
## 3072                 81 winter       L 27.29866 -81.36612
## 3073                 81 winter       L 27.29866 -81.36612
## 3074                 81 winter       L 27.29866 -81.36612
## 3075                 81 winter       L 27.29866 -81.36612
## 3076                 81 winter       L 27.29866 -81.36612
## 3077                 81 winter       L 27.29866 -81.36612
## 3078                 81 winter       L 27.29866 -81.36612
## 3079                 81 winter       L 27.29866 -81.36612
## 3080                 81 winter       L 27.29866 -81.36612
## 3081                 81 winter       L 27.29866 -81.36612
## 3082                 81 winter       L 27.29866 -81.36612
## 3083                 81 winter       L 27.29866 -81.36612
## 3084                 81 winter       L 27.29866 -81.36612
## 3085                 81 winter       L 27.29866 -81.36612
## 3086                 81 winter       L 27.29866 -81.36612
## 3087                 81 winter       L 27.29866 -81.36612
## 3088                 81 winter       L 27.29866 -81.36612
## 3089                 81 winter       L 27.29866 -81.36612
## 3090                 81 winter       L 27.29866 -81.36612
## 3091                 81 winter       L 27.29866 -81.36612
## 3092                 81 winter       L 27.29866 -81.36612
## 3093                 81 winter       L 27.29866 -81.36612
## 3094                 81 winter       L 27.29866 -81.36612
## 3095                 81 winter       L 27.29866 -81.36612
## 3096                 81 winter       L 27.29866 -81.36612
## 3097                 81 winter       L 27.89674 -81.58047
## 3098                 81 winter       L 27.89674 -81.58047
## 3099                 81 winter       L 27.89674 -81.58047
## 3100                 81 winter       L 27.89674 -81.58047
## 3101                 81 winter       L 27.89674 -81.58047
## 3102                 81 winter       L 27.89674 -81.58047
## 3103                 81 winter       L 27.89674 -81.58047
## 3105                 81 winter       L 27.89674 -81.58047
## 3107                 81 winter       L 27.89674 -81.58047
## 3108                 81 winter       L 27.89674 -81.58047
## 3109                 81 winter       L 27.89674 -81.58047
## 3110                 81 winter       L 27.89674 -81.58047
## 3111                 81 winter       L 27.89674 -81.58047
## 3112                 81 winter       L 27.89674 -81.58047
## 3113                 81 winter       L 27.89674 -81.58047
## 3115                 81 winter       L 27.89674 -81.58047
## 3116                 81 winter       L 27.89674 -81.58047
## 3117                 81 winter       L 27.89674 -81.58047
## 3118                 81 winter       L 27.89674 -81.58047
## 3119                 81 winter       L 27.89674 -81.58047
## 3120                 81 winter       L 27.89674 -81.58047
## 3121                 81 winter       L 27.89674 -81.58047
## 3122                 81 winter       L 27.89674 -81.58047
## 3123                 81 winter       L 27.89674 -81.58047
## 3124                 81 winter       L 27.89674 -81.58047
## 3125                 81 winter       L 27.89674 -81.58047
## 3126                 81 winter       L 27.89674 -81.58047
## 3127                 81 winter       L 27.89674 -81.58047
## 3128                 81 winter       L 27.89674 -81.58047
## 3129                 81 winter       L 27.89674 -81.58047
## 3131                 81 winter       L 27.89674 -81.58047
## 3132                 81 winter       L 27.89674 -81.58047
## 3133                 81 winter       L 27.89674 -81.58047
## 3134                 81 winter       L 27.89674 -81.58047
## 3135                 81 winter       L 27.89674 -81.58047
## 3136                 81 winter       L 27.89674 -81.58047
## 3137                 81 winter       L 27.89674 -81.58047
## 3138                 81 winter       L 27.89674 -81.58047
## 3139                 81 winter       L 27.89674 -81.58047
## 3140                 81 winter       L 27.89674 -81.58047
## 3141                 81 winter       L 27.89674 -81.58047
## 3142                 81 winter       L 27.89674 -81.58047
## 3143                 81 winter       L 27.89674 -81.58047
## 3144                 81 winter       L 27.89674 -81.58047
## 3145                 81 winter       L 27.89674 -81.58047
## 3146                 81 winter       L 27.89674 -81.58047
## 3147                 81 winter       L 28.79634 -81.87788
## 3148                 81 winter       L 28.79634 -81.87788
## 3149                 81 winter       L 28.79634 -81.87788
## 3150                 81 winter       L 28.79634 -81.87788
## 3151                 81 winter       L 28.79634 -81.87788
## 3152                 81 winter       L 28.79634 -81.87788
## 3153                 81 winter       L 28.79634 -81.87788
## 3154                 81 winter       L 28.79634 -81.87788
## 3155                 81 winter       L 28.79634 -81.87788
## 3157                 81 winter       L 28.79634 -81.87788
## 3158                 81 winter       L 28.79634 -81.87788
## 3159                 81 winter       L 28.79634 -81.87788
## 3160                 81 winter       L 28.79634 -81.87788
## 3162                 81 winter       L 28.79634 -81.87788
## 3164                 81 winter       L 28.79634 -81.87788
## 3165                 81 winter       L 28.79634 -81.87788
## 3167                 81 winter       L 28.79634 -81.87788
## 3168                 81 winter       L 28.79634 -81.87788
## 3169                 81 winter       L 28.79634 -81.87788
## 3170                 81 winter       L 28.79634 -81.87788
## 3171                 81 winter       L 28.79634 -81.87788
## 3172                 81 winter       L 28.79634 -81.87788
## 3175                 81 winter       L 28.79634 -81.87788
## 3176                 81 winter       L 28.79634 -81.87788
## 3177                 81 winter       L 25.27349 -80.30410
## 3178                 81 winter       L 25.27349 -80.30410
## 3180                 81 winter       L 25.27349 -80.30410
## 3181                 81 winter       L 25.27349 -80.30410
## 3182                 81 winter       L 25.19515 -80.34592
## 3183                 81 winter       L 25.19515 -80.34592
## 3185                 81 winter       L 25.19515 -80.34592
## 3186                 81 winter       L 25.19515 -80.34592
## 3187                 81 winter       L 25.25656 -80.31080
## 3189                 81 winter       L 25.25656 -80.31080
## 3190                 81 winter       L 25.25656 -80.31080
## 3191                 81 winter       L 25.25656 -80.31080
## 3192                 81 winter       L 25.17557 -80.36780
## 3193                 81 winter       L 25.17557 -80.36780
## 3194                 81 winter       L 25.17557 -80.36780
## 3196                 81 winter       L 25.28661 -80.29081
## 3197                 81 winter       L 25.28661 -80.29081
## 3198                 81 winter       L 25.28661 -80.29081
## 3199                 81 winter       L 25.22752 -80.32838
## 3200                 81 winter       L 25.22752 -80.32838
## 3201                 81 winter       L 25.22752 -80.32838
## 3202                 81 winter       L 25.22752 -80.32838
## 3203                 81 winter       L 25.22752 -80.32838
## 3205                 81 winter       L 25.18209 -80.36319
## 3206                 81 winter       L 25.18209 -80.36319
## 3207                 81 winter       L 25.18209 -80.36319
## 3209                 81 winter       L 25.25656 -80.31080
## 3210                 81 winter       L 25.25656 -80.31080
## 3211                 81 winter       L 25.27349 -80.30410
## 3212                 81 winter       L 25.27349 -80.30410
## 3213                 81 winter       L 25.27349 -80.30410
## 3214                 81 winter       L 25.27349 -80.30410
## 3215                 81 winter       L 25.17557 -80.36780
## 3216                 81 winter       L 25.17557 -80.36780
## 3218                 81 winter       L 25.17557 -80.36780
## 3219                 81 winter       L 25.17557 -80.36780
## 3220                 81 winter       L 25.22752 -80.32838
## 3221                 81 winter       L 25.22752 -80.32838
## 3222                 81 winter       L 25.22752 -80.32838
## 3223                 81 winter       L 25.22752 -80.32838
## 3224                 81 winter       L 25.22752 -80.32838
## 3226                 81 winter       L 25.28661 -80.29081
## 3227                 81 winter       L 25.28661 -80.29081
## 3229                 81 winter       L 25.27349 -80.30410
## 3230                 81 winter       L 25.27349 -80.30410
## 3231                 81 winter       L 25.27349 -80.30410
## 3232                 81 winter       L 25.27349 -80.30410
## 3234                 81 winter       L 25.19515 -80.34592
## 3235                 81 winter       L 25.19515 -80.34592
## 3236                 81 winter       L 25.19515 -80.34592
## 3237                 81 winter       L 25.19515 -80.34592
## 3238                 81 winter       L 25.25656 -80.31080
## 3239                 81 winter       L 25.25656 -80.31080
## 3240                 81 winter       L 25.25656 -80.31080
## 3241                 81 winter       L 25.25656 -80.31080
## 3242                 81 winter       L 25.25656 -80.31080
## 3243                 81 winter       L 25.17557 -80.36780
## 3244                 81 winter       L 25.17557 -80.36780
## 3246                 81 winter       L 25.17557 -80.36780
## 3247                 81 winter       L 25.17557 -80.36780
## 3248                 81 winter       L 25.22752 -80.32838
## 3249                 81 winter       L 25.22752 -80.32838
## 3250                 81 winter       L 25.22752 -80.32838
## 3251                 81 winter       L 25.18209 -80.36319
## 3252                 81 winter       L 25.18209 -80.36319
## 3253                 81 winter       L 25.18209 -80.36319
## 3254                 81 winter       L 25.18209 -80.36319
## 3255                 81 winter       L 25.18209 -80.36319
## 3256                 81 winter       L 25.27349 -80.30410
## 3257                 81 winter       L 25.27349 -80.30410
## 3258                 81 winter       L 25.27349 -80.30410
## 3259                 81 winter       L 25.27349 -80.30410
## 3260                 81 winter       L 25.27349 -80.30410
## 3261                 81 winter       L 25.27349 -80.30410
## 3262                 81 winter       L 25.27349 -80.30410
## 3263                 81 winter       L 25.27349 -80.30410
## 3264                 81 winter       L 25.27349 -80.30410
## 3265                 81 winter       L 25.27349 -80.30410
## 3266                 81 winter       L 25.19515 -80.34592
## 3267                 81 winter       L 25.19515 -80.34592
## 3268                 81 winter       L 25.19515 -80.34592
## 3269                 81 winter       L 25.19515 -80.34592
## 3270                 81 winter       L 25.19515 -80.34592
## 3271                 81 winter       L 25.25656 -80.31080
## 3273                 81 winter       L 25.17557 -80.36780
## 3274                 81 winter       L 25.17557 -80.36780
## 3279                 81 winter       L 25.22752 -80.32838
## 3280                 81 winter       L 25.22752 -80.32838
## 3281                 81 winter       L 25.18209 -80.36319
## 3282                 81 winter       L 25.18209 -80.36319
## 3283                 81 winter       L 25.18209 -80.36319
## 3285                 81 winter       L 25.18209 -80.36319
## 3287                 81 winter       L 25.18209 -80.36319
## 3288                 81 winter       L 25.18209 -80.36319
## 3289                 81 winter       L 25.18209 -80.36319
## 3290                 81 winter       L 25.18209 -80.36319
## 3291                 81 winter       L 25.18209 -80.36319
## 3292                 81 winter       L 25.18209 -80.36319
## 3293                 81 winter       L 25.18209 -80.36319
## 3294                 81 winter       L 25.18209 -80.36319
## 3295                 81 winter       L 25.18209 -80.36319
## 3296                 81 winter       L 25.18209 -80.36319
## 3297                 81 winter       L 25.18209 -80.36319
## 3300                 81 winter       L 25.18209 -80.36319
## 3301                 81 winter       L 25.18209 -80.36319
## 3302                 81 winter       L 25.19515 -80.34592
## 3303                 81 winter       L 25.19515 -80.34592
## 3304                 81 winter       L 25.19515 -80.34592
## 3305                 81 winter       L 25.19515 -80.34592
## 3306                 81 winter       L 25.19515 -80.34592
## 3307                 81 winter       L 25.19515 -80.34592
## 3308                 81 winter       L 25.27349 -80.30410
## 3309                 81 winter       L 25.27349 -80.30410
## 3311                 81 winter       L 25.27349 -80.30410
## 3312                 81 winter       L 25.27349 -80.30410
## 3313                 81 winter       L 25.27349 -80.30410
## 3314                 81 winter       L 25.27349 -80.30410
## 3315                 81 winter       L 25.27349 -80.30410
## 3316                 81 winter       L 25.25656 -80.31080
## 3317                 81 winter       L 25.25656 -80.31080
## 3318                 81 winter       L 25.25656 -80.31080
## 3319                 81 winter       L 25.25656 -80.31080
## 3320                 81 winter       L 25.27349 -80.30410
## 3321                 81 winter       L 25.27349 -80.30410
## 3322                 81 winter       L 25.27349 -80.30410
## 3323                 81 winter       L 25.27349 -80.30410
## 3325                 81 winter       L 25.27349 -80.30410
## 3327                 81 winter       L 25.18209 -80.36319
## 3332                 81 winter       L 25.18209 -80.36319
## 3339                 81 winter       L 25.18209 -80.36319
## 3340                 81 winter       L 25.22752 -80.32838
## 3341                 81 winter       L 25.22752 -80.32838
## 3342                 81 winter       L 25.22752 -80.32838
## 3343                 81 winter       L 25.22752 -80.32838
## 3348                 81 winter       L 25.28661 -80.29081
## 3350                 81 winter       L 25.28661 -80.29081
## 3351                 81 winter       L 25.28661 -80.29081
## 3379                 81 winter       L 25.17557 -80.36781
## 3391                 81 winter       L 25.25656 -80.31080
## 3394                 81 winter       L 25.25656 -80.31080
## 3396                 81 winter       L 25.25656 -80.31080
## 3398                 81 winter       L 25.25656 -80.31080
## 3399                 81 winter       L 25.25656 -80.31080
## 3400                 81 winter       L 25.25656 -80.31080
## 3401                 81 winter       L 25.25656 -80.31080
## 3402                 81 winter       L 25.25656 -80.31080
## 3404                 81 winter       L 24.97357 -80.55392
## 3405                 81 winter       L 24.97357 -80.55392
## 3406                 81 winter       L 24.97357 -80.55392
## 3407                 81 winter       L 24.97357 -80.55392
## 3408                 81 winter       L 24.96424 -80.56733
## 3409                 81 winter       L 24.96424 -80.56733
## 3410                 81 winter       L 24.96424 -80.56733
## 3411                 81 winter       L 24.96424 -80.56733
## 3412                 81 winter       L 24.96424 -80.56733
## 3414                 81 winter       L 24.97357 -80.55392
## 3415                 81 winter       L 24.97357 -80.55392
## 3418                 81 winter       L 24.96424 -80.56733
## 3419                 81 winter       L 24.96424 -80.56733
## 3420                 81 winter       L 24.96424 -80.56733
## 3421                 81 winter       L 24.96424 -80.56733
## 3422                 81 winter       L 24.96424 -80.56733
## 3423                 81 winter       L 24.97357 -80.55392
## 3424                 81 winter       L 24.97357 -80.55392
## 3425                 81 winter       L 24.97357 -80.55392
## 3426                 81 winter       L 24.97357 -80.55392
## 3428                 81 winter       L 24.96424 -80.56733
## 3429                 81 winter       L 24.96424 -80.56733
## 3430                 81 winter       L 24.96424 -80.56733
## 3431                 81 winter       L 24.96424 -80.56733
## 3432                 81 winter       L 24.97357 -80.55392
## 3433                 81 winter       L 24.97357 -80.55392
## 3434                 81 winter       L 24.97357 -80.55392
## 3435                 81 winter       L 24.96424 -80.56733
## 3436                 81 winter       L 24.96424 -80.56733
## 3437                 81 winter       L 24.96424 -80.56733
## 3438                 81 winter       L 24.96424 -80.56733
## 3439                 81 winter       L 24.96424 -80.56733
## 3440                 81 winter       L 24.96424 -80.56733
## 3441                 81 winter       L 24.96424 -80.56733
## 3442                 81 winter       L 24.96424 -80.56733
## 3443                 81 winter       L 24.96424 -80.56733
## 3444                 81 winter       L 24.96424 -80.56733
## 3445                 81 winter       L 24.96424 -80.56733
## 3448                 81 winter       L 24.96424 -80.56733
## 3451                 81 winter       L 24.96424 -80.56733
## 3452                 81 winter       L 24.96424 -80.56733
## 3453                 81 winter       L 24.96424 -80.56733
## 3454                 81 winter       L 24.96424 -80.56733
## 3461                 81 winter       L 24.96424 -80.56733
## 3462                 81 winter       L 24.96424 -80.56733
## 3466                 81 winter       L 24.96424 -80.56733
## 3473                 81 winter       L 24.96424 -80.56733
## 3476                 77   fall       L 24.96424 -80.56733
## 3477                 77   fall       L 24.96424 -80.56733
## 3478                 77   fall       L 24.96424 -80.56733
## 3479                 77   fall       L 24.96424 -80.56733
## 3480                 77   fall       L 24.96424 -80.56733
## 3481                 77   fall       L 24.96424 -80.56733
## 3482                 77   fall       L 24.96424 -80.56733
## 3483                 77   fall       L 24.96424 -80.56733
## 3485                 77   fall       L 24.96424 -80.56733
## 3486                 77   fall       L 24.96424 -80.56733
## 3487                 77   fall       L 24.96424 -80.56733
## 3488                 77   fall       L 24.96424 -80.56733
## 3489                 77   fall       L 24.96424 -80.56733
## 3492                 77   fall       L 24.96424 -80.56733
## 3493                 77   fall       L 24.96424 -80.56733
## 3496                 77   fall       L 24.96424 -80.56733
## 3498                 77   fall       L 24.96424 -80.56733
## 3499                 77   fall       L 24.96424 -80.56733
## 3500                 77   fall       L 24.96424 -80.56733
## 3501                 77   fall       L 24.96424 -80.56733
## 3502                 77   fall       L 24.96424 -80.56733
## 3503                 77   fall       L 25.49136 -80.48582
## 3504                 77   fall       L 25.49136 -80.48582
## 3505                 77   fall       L 25.49136 -80.48582
## 3506                 77   fall       L 25.49136 -80.48582
## 3507                 77   fall       L 25.49136 -80.48582
## 3508                 77   fall       L 25.49136 -80.48582
## 3509                 77   fall       L 25.49136 -80.48582
## 3510                 77   fall       L 25.49136 -80.48582
## 3511                 77   fall       L 25.49136 -80.48582
## 3513                 77   fall       L 25.49136 -80.48582
## 3514                 77   fall       L 25.49136 -80.48582
## 3515                 77   fall       L 25.25648 -80.31069
## 3516                 77   fall       L 25.25648 -80.31069
## 3517                 77   fall       L 25.25648 -80.31069
## 3518                 77   fall       L 25.25648 -80.31069
## 3519                 77   fall       L 25.25648 -80.31069
## 3520                 77   fall       L 25.25648 -80.31069
## 3521                 77   fall       L 25.25648 -80.31069
## 3522                 77   fall       L 25.25648 -80.31069
## 3523                 77   fall       L 25.25648 -80.31069
## 3524                 77   fall       L 25.25648 -80.31069
## 3525                 77   fall       L 25.25648 -80.31069
## 3526                 77   fall       L 25.25648 -80.31069
## 3528                 77   fall       L 25.25648 -80.31069
## 3529                 77   fall       L 25.28675 -80.29059
## 3530                 77   fall       L 25.28675 -80.29059
## 3531                 77   fall       L 25.28675 -80.29059
## 3532                 77   fall       L 25.28675 -80.29059
## 3533                 77   fall       L 25.28675 -80.29059
## 3534                 77   fall       L 25.28675 -80.29059
## 3535                 77   fall       L 25.28675 -80.29059
## 3536                 77   fall       L 25.28675 -80.29059
## 3537                 77   fall       L 25.28675 -80.29059
## 3538                 77   fall       L 25.28675 -80.29059
## 3539                 77   fall       L 25.28675 -80.29059
## 3540                 77   fall       L 25.28675 -80.29059
## 3541                 77   fall       L 27.29863 -81.36615
## 3542                 77   fall       L 27.29863 -81.36615
## 3543                 77   fall       L 27.29863 -81.36615
## 3544                 77   fall       L 27.29863 -81.36615
## 3545                 77   fall       L 27.29863 -81.36615
## 3546                 77   fall       L 27.29863 -81.36615
## 3547                 77   fall       L 27.29863 -81.36615
## 3549                 77   fall       L 27.29863 -81.36615
## 3550                 77   fall       L 27.29863 -81.36615
## 3551                 77   fall       L 27.29863 -81.36615
## 3552                 77   fall       L 27.29863 -81.36615
## 3553                 77   fall       L 27.29863 -81.36615
## 3554                 77   fall       L 27.29863 -81.36615
## 3555                 77   fall       L 27.29863 -81.36615
## 3556                 77   fall       L 27.29863 -81.36615
## 3557                 77   fall       L 27.29863 -81.36615
## 3558                 77   fall       L 27.29863 -81.36615
## 3559                 77   fall       L 27.29863 -81.36615
## 3560                 77   fall       L 27.29863 -81.36615
## 3561                 77   fall       L 27.29863 -81.36615
## 3562                 77   fall       L 25.22752 -80.32838
## 3563                 77   fall       L 25.22752 -80.32838
## 3564                 77   fall       L 25.22752 -80.32838
## 3565                 77   fall       L 25.22752 -80.32838
## 3566                 43   fall       L 25.55090 -80.42110
## 3570                 77   fall       L 25.12846 -80.40809
## 3571                 77   fall       L 25.12846 -80.40809
## 3572                 77   fall       L 25.12846 -80.40809
## 3573                 77   fall       L 25.12846 -80.40809
## 3574                 77   fall       L 25.12846 -80.40809
## 3575                 77   fall       L 25.12846 -80.40809
## 3576                 77   fall       L 25.12846 -80.40809
## 3577                 77   fall       L 25.27349 -80.30410
## 3578                 77   fall       L 25.27349 -80.30410
## 3579                 77   fall       L 25.27349 -80.30410
## 3581                 77   fall       L 25.27349 -80.30410
## 3583                 77   fall       L 25.12848 -80.40754
## 3584                 77   fall       L 25.12848 -80.40754
## 3585                 77   fall       L 25.12848 -80.40754
## 3586                 77   fall       L 25.18088 -80.36466
## 3587                 77   fall       L 25.18088 -80.36466
## 3588                 77   fall       L 25.18088 -80.36466
## 3589                 77   fall       L 25.18088 -80.36466
## 3590                 77   fall       L 25.18088 -80.36466
## 3591                 77   fall       L 25.18088 -80.36466
## 3592                 72 spring       L 27.89664 -81.58064
## 3594                 72 spring       L 27.89664 -81.58064
## 3595                 72 spring       L 27.89664 -81.58064
## 3596                 72 spring       L 27.89664 -81.58064
## 3597                 72 spring       L 27.89664 -81.58064
## 3598                 72 spring       L 27.89664 -81.58064
## 3599                 72 spring       L 27.89664 -81.58064
## 3600                 72 spring       L 27.89664 -81.58064
## 3601                 72 spring       L 27.89664 -81.58064
## 3602                 72 spring       L 27.89664 -81.58064
## 3603                 72 spring       L 27.89664 -81.58064
## 3604                 72 spring       L 27.89664 -81.58064
## 3605                 72 spring       L 27.89664 -81.58064
## 3606                 72 spring       L 27.89664 -81.58064
## 3607                 72 spring       L 27.89664 -81.58064
## 3608                 72 spring       L 27.89664 -81.58064
## 3609                 72 spring       L 27.89664 -81.58064
## 3610                 72 spring       L 27.89664 -81.58064
## 3611                 72 spring       L 27.89664 -81.58064
## 3612                 72 spring       L 27.89664 -81.58064
## 3613                 72 spring       L 27.89664 -81.58064
## 3614                 72 spring       L 27.89664 -81.58064
## 3615                 72 spring       L 27.89664 -81.58064
## 3616                 72 spring       L 27.89664 -81.58064
## 3617                 72 spring       L 27.89664 -81.58064
## 3618                 72 spring       L 27.89664 -81.58064
## 3619                 72 spring       L 27.89664 -81.58064
## 3620                 72 spring       L 27.89664 -81.58064
## 3621                 72 spring       L 27.89664 -81.58064
## 3622                 72 spring       L 27.89664 -81.58064
## 3623                 72 spring       L 27.89664 -81.58064
## 3624                 72 spring       L 27.89664 -81.58064
## 3625                 72 spring       L 27.89664 -81.58064
## 3626                 72 spring       L 27.89664 -81.58064
## 3627                 72 spring       L 27.89664 -81.58064
## 3628                 72 spring       L 27.89664 -81.58064
## 3629                 72 spring       L 27.89664 -81.58064
## 3630                 72 spring       L 27.89664 -81.58064
## 3631                 72 spring       L 27.89664 -81.58064
## 3632                 72 spring       L 27.89664 -81.58064
## 3633                 72 spring       L 27.89664 -81.58064
## 3634                 72 spring       L 27.89664 -81.58064
## 3635                 72 spring       L 27.89664 -81.58064
## 3636                 72 spring       L 27.89664 -81.58064
## 3637                 72 spring       L 27.89664 -81.58064
## 3638                 72 spring       L 27.89664 -81.58064
## 3639                 72 spring       L 27.89664 -81.58064
## 3640                 72 spring       L 27.89664 -81.58064
## 3641                 72 spring       L 27.89664 -81.58064
## 3642                 72 spring       L 27.89664 -81.58064
## 3643                 72 spring       L 27.89664 -81.58064
## 3644                 72 spring       L 27.89664 -81.58064
## 3645                 72 spring       L 27.89664 -81.58064
## 3646                 72 spring       L 28.79642 -81.87792
## 3647                 72 spring       L 28.79642 -81.87792
## 3648                 72 spring       L 28.79642 -81.87792
## 3649                 72 spring       L 28.79642 -81.87792
## 3650                 72 spring       L 28.79642 -81.87792
## 3651                 72 spring       L 28.79642 -81.87792
## 3652                 72 spring       L 28.79642 -81.87792
## 3653                 72 spring       L 28.79642 -81.87792
## 3655                 72 spring       L 28.79642 -81.87792
## 3656                 72 spring       L 28.79642 -81.87792
## 3658                 72 spring       L 28.79642 -81.87792
## 3659                 72 spring       L 28.79642 -81.87792
## 3660                 72 spring       L 28.79642 -81.87792
## 3661                 72 spring       L 28.79642 -81.87792
## 3662                 72 spring       L 28.79642 -81.87792
## 3663                 72 spring       L 28.79642 -81.87792
## 3664                 72 spring       L 28.79642 -81.87792
## 3665                 72 spring       L 28.79642 -81.87792
## 3666                 72 spring       L 28.79642 -81.87792
## 3667                 72 spring       L 28.79642 -81.87792
## 3668                 72 spring       L 28.79642 -81.87792
## 3669                 72 spring       L 28.79642 -81.87792
## 3670                 72 spring       L 28.79642 -81.87792
## 3671                 72 spring       L 28.79642 -81.87792
## 3672                 72 spring       L 28.79642 -81.87792
## 3673                 72 spring       L 28.79642 -81.87792
## 3674                 72 spring       L 28.79642 -81.87792
## 3675                 72 spring       L 28.79642 -81.87792
## 3676                 72 spring       L 28.79642 -81.87792
## 3677                 72 spring       L 28.79642 -81.87792
## 3678                 72 spring       L 28.79642 -81.87792
## 3680                 72 spring       L 28.79642 -81.87792
## 3681                 72 spring       L 28.79642 -81.87792
## 3682                 72 spring       L 28.79642 -81.87792
## 3683                 72 spring       L 28.79642 -81.87792
## 3684                 72 spring       L 28.79642 -81.87792
## 3685                 72 spring       L 28.79642 -81.87792
## 3686                 72 spring       L 28.79642 -81.87792
## 3687                 72 spring       L 28.79642 -81.87792
## 3688                 72 spring       L 28.79642 -81.87792
## 3689                 72 spring       L 28.79642 -81.87792
## 3690                 72 spring       L 28.79642 -81.87792
## 3691                 72 spring       L 28.79642 -81.87792
## 3692                 72 spring       L 28.79642 -81.87792
## 3693                 72 spring       L 28.79642 -81.87792
## 3694                 72 spring       L 28.79642 -81.87792
## 3695                 72 spring       L 28.79642 -81.87792
## 3696                 72 spring       L 28.79642 -81.87792
## 3698                 72 spring       L 28.79642 -81.87792
##                             diapause field_date_collected
## 1                                                        
## 2                                                        
## 3                                                        
## 4                                                        
## 5                                                        
## 6                                                        
## 7                                                        
## 8                                                        
## 9                                                        
## 10                                                       
## 11                                                       
## 12                                                       
## 13                                                       
## 14                                                       
## 16                                                       
## 17                                                       
## 18                                                       
## 19                                                       
## 20                                                       
## 21                                                       
## 22                                                       
## 23                                                       
## 24                                                       
## 25                                                       
## 26                                                       
## 104                                                      
## 105                                                      
## 106                                                      
## 107                                                      
## 109                                                      
## 110                                                      
## 111                                                      
## 112                                                      
## 114                                                      
## 141                                                      
## 142                                                      
## 143                                                      
## 144                                                      
## 146                                                      
## 147                                                      
## 148                                                      
## 149                                                      
## 150                                                      
## 152                                                      
## 153                                                      
## 202                                                      
## 203                                                      
## 204                                                      
## 205                                                      
## 206                                                      
## 207                                                      
## 208                                                      
## 209                                                      
## 210                                                      
## 211                                                      
## 213                                                      
## 214                                                      
## 215                                                      
## 217                                                      
## 219                                                      
## 221                                                      
## 222                                                      
## 223                                                      
## 224                                                      
## 225                                                      
## 226                                                      
## 228                                                      
## 229                                                      
## 230                                                      
## 837                                                      
## 839                                                      
## 840                                                      
## 841                                                      
## 844                                                      
## 845                                                      
## 847                                                      
## 848                                                      
## 849                                                      
## 850                                                      
## 851                                                      
## 852                                                      
## 853                                                      
## 854                                                      
## 856                                                      
## 857                                                      
## 858                                                      
## 859                                                      
## 860                                                      
## 861                                                      
## 862                                                      
## 863                                                      
## 865                                                      
## 866                                                      
## 867                                                      
## 868                                                      
## 870                                                      
## 871                                                      
## 872                                                      
## 873                                                      
## 874                                                      
## 875                                                      
## 877                                                      
## 878                                                      
## 879                                                      
## 880                                                      
## 881                                                      
## 882                                                      
## 883                                                      
## 884                                                      
## 886                                                      
## 887                                                      
## 888                                                      
## 889                                                      
## 890                                                      
## 905                                                      
## 907                                                      
## 911                                                      
## 912                                                      
## 915                                                      
## 917                                                      
## 918                                                      
## 975                                                      
## 978                                                      
## 986                                                      
## 990                                                      
## 993                                                      
## 995                                                      
## 996                                                      
## 997                                                      
## 1001                                                     
## 1012                                                     
## 1017                                                     
## 1023                                                     
## 1024                                                     
## 1025                                                     
## 1026                                                     
## 1027                                                     
## 1028                                                     
## 1029                                                     
## 1030                                                     
## 1031                                                     
## 1032                                                     
## 1033                                                     
## 1034                                                     
## 1035                                                     
## 1036                                                     
## 1037                                                     
## 1038                                                     
## 1039                                                     
## 1040                                                     
## 1041                                                     
## 1042                                                     
## 1043                                                     
## 1044                                                     
## 1045                                                     
## 1046                                                     
## 1047                                                     
## 1048                                                     
## 1049                                                     
## 1050                                                     
## 1051                                                     
## 1052                                                     
## 1054                                                     
## 1055                                                     
## 1056                                                     
## 1057                                                     
## 1058                                                     
## 1059                                                     
## 1060                                                     
## 1061                                                     
## 1062                                                     
## 1063                                                     
## 1064                                                     
## 1065                                                     
## 1066                                                     
## 1067                                                     
## 1068                                                     
## 1069                                                     
## 1070                                                     
## 1071                                                     
## 1072                                                     
## 1073                                                     
## 1074                                                     
## 1075                                                     
## 1076                                                     
## 1077                                                     
## 1078                                                     
## 1079                                                     
## 1080                                                     
## 1081                                                     
## 1082                                                     
## 1083                                                     
## 1084                                                     
## 1085                                                     
## 1086                                                     
## 1088                                                     
## 1089                                                     
## 1090                                                     
## 1091                                                     
## 1092                                                     
## 1093                                                     
## 1094                                                     
## 1095                                                     
## 1096                                                     
## 1097                                                     
## 1098                                                     
## 1099                                                     
## 1100                                                     
## 1101                                                     
## 1103                                                     
## 1104                                                     
## 1105                                                     
## 1106                                                     
## 1107                                                     
## 1108                                                     
## 1110                                                     
## 1111                                                     
## 1112                                                     
## 1117                                                     
## 1118                                                     
## 1119                                                     
## 1121                                                     
## 1122                                                     
## 1124                                                     
## 1125                  non-diapausing           12.18.2016
## 1126                  non-diapausing           12.18.2016
## 1127                  non-diapausing           12.18.2016
## 1128                  non-diapausing           12.18.2016
## 1129                  non-diapausing           12.18.2016
## 1130                  non-diapausing           12.18.2016
## 1131                  non-diapausing           12.18.2016
## 1132                  non-diapausing           12.18.2016
## 1133                  non-diapausing           12.18.2016
## 1134                  non-diapausing           12.18.2016
## 1135                  non-diapausing           12.18.2016
## 1136                  non-diapausing           12.18.2016
## 1137                  non-diapausing           12.18.2016
## 1138                  non-diapausing           12.18.2016
## 1142                  non-diapausing           12.18.2016
## 1143                  non-diapausing           12.18.2016
## 1144                  non-diapausing           12.18.2016
## 1146                  non-diapausing           12.18.2016
## 1148                  non-diapausing           12.18.2016
## 1155                  non-diapausing           12.18.2016
## 1156                  non-diapausing           12.18.2016
## 1158                  non-diapausing           12.18.2016
## 1160                  non-diapausing           12.18.2016
## 1161                  non-diapausing           12.18.2016
## 1162                  non-diapausing           12.18.2016
## 1164                  non-diapausing           12.18.2016
## 1166                  non-diapausing           12.18.2016
## 1167                  non-diapausing           12.18.2016
## 1170                  non-diapausing           12.18.2016
## 1174                  non-diapausing           12.18.2016
## 1176                  non-diapausing           12.18.2016
## 1177                  non-diapausing           12.18.2016
## 1178                  non-diapausing           12.18.2016
## 1179                  non-diapausing           12.18.2016
## 1180                  non-diapausing           12.18.2016
## 1181                  non-diapausing           12.18.2016
## 1182                                           12.15.2016
## 1185                                           12.15.2016
## 1186                                           12.15.2016
## 1188                                           12.15.2016
## 1189                                           12.15.2016
## 1191                                           12.15.2016
## 1192                                           12.15.2016
## 1193                                           12.15.2016
## 1194                                           12.15.2016
## 1203                                           12.14.2016
## 1204                                           12.14.2016
## 1205                                           12.14.2016
## 1208                                           12.14.2016
## 1209                                           12.14.2016
## 1210                                           12.14.2016
## 1213                                           12.14.2016
## 1215                                           12.14.2016
## 1217                                           12.14.2016
## 1219                                           12.14.2016
## 1221                                           12.14.2016
## 1222                                           12.14.2016
## 1225                                           12.14.2016
## 1228                                           12.14.2016
## 1230                                           12.14.2016
## 1235                                           12.14.2016
## 1238                                           12.14.2016
## 1239                                           12.14.2016
## 1241                                           12.14.2016
## 1246                                           12.14.2016
## 1247                                           12.14.2016
## 1248                  non-diapausing           12.14.2016
## 1249                  non-diapausing           12.14.2016
## 1250                  non-diapausing           12.14.2016
## 1252                  non-diapausing           12.14.2016
## 1253                  non-diapausing           12.14.2016
## 1255                  non-diapausing           12.14.2016
## 1257                  non-diapausing           12.14.2016
## 1258                  non-diapausing           12.14.2016
## 1268                                           12.16.2016
## 1272                                           12.16.2016
## 1276                                           12.13.2016
## 1281                                           12.13.2016
## 1285                                           12.13.2016
## 1289                                           12.13.2016
## 1290                                           12.13.2016
## 1291                                           12.13.2016
## 1292                                           12.13.2016
## 1294                  non-diapausing           12.13.2016
## 1295                  non-diapausing           12.13.2016
## 1296                  non-diapausing           12.13.2016
## 1297                  non-diapausing           12.13.2016
## 1298                  non-diapausing           12.13.2016
## 1299                  non-diapausing           12.13.2016
## 1300                  non-diapausing           12.13.2016
## 1301                  non-diapausing           12.13.2016
## 1302                  non-diapausing           12.13.2016
## 1303                  non-diapausing           12.13.2016
## 1304                  non-diapausing           12.13.2016
## 1306                  non-diapausing           12.13.2016
## 1307                  non-diapausing           12.13.2016
## 1308                  non-diapausing           12.13.2016
## 1309                  non-diapausing           12.13.2016
## 1310                  non-diapausing           12.13.2016
## 1311                  non-diapausing           12.13.2016
## 1312                  non-diapausing           12.13.2016
## 1313                  non-diapausing           12.13.2016
## 1315                  non-diapausing           12.13.2016
## 1316                  non-diapausing           12.13.2016
## 1317                  non-diapausing           12.13.2016
## 1318                  non-diapausing           12.13.2016
## 1319                  non-diapausing           12.13.2016
## 1320                  non-diapausing           12.13.2016
## 1321                  non-diapausing           12.13.2016
## 1322                  non-diapausing           12.13.2016
## 1323                  non-diapausing           12.13.2016
## 1324                  non-diapausing           12.13.2016
## 1325                  non-diapausing           12.13.2016
## 1326                  non-diapausing           12.13.2016
## 1327                  non-diapausing           12.13.2016
## 1328                  non-diapausing           12.13.2016
## 1329                  non-diapausing           12.13.2016
## 1330                  non-diapausing           12.13.2016
## 1331                  non-diapausing           12.13.2016
## 1332                  non-diapausing           12.13.2016
## 1333                  non-diapausing           12.13.2016
## 1334                  non-diapausing           12.13.2016
## 1335                  non-diapausing           12.13.2016
## 1336                  non-diapausing           12.13.2016
## 1337                  non-diapausing           12.13.2016
## 1338                  non-diapausing           12.13.2016
## 1340                  non-diapausing           12.14.2016
## 1341                  non-diapausing           12.14.2016
## 1343                  non-diapausing           12.14.2016
## 1344                  non-diapausing           12.14.2016
## 1346                  non-diapausing           12.14.2016
## 1347                  non-diapausing           12.14.2016
## 1349                  non-diapausing           12.14.2016
## 1354                  non-diapausing           12.14.2016
## 1355                  non-diapausing           12.14.2016
## 1356                  non-diapausing           12.14.2016
## 1357                  non-diapausing           12.14.2016
## 1358                  non-diapausing           12.14.2016
## 1361                  non-diapausing           12.14.2016
## 1364                  non-diapausing           12.14.2016
## 1365                  non-diapausing           12.14.2016
## 1367                  non-diapausing           12.14.2016
## 1368                  non-diapausing           12.14.2016
## 1369                  non-diapausing           12.14.2016
## 1370                  non-diapausing           12.14.2016
## 1371                  non-diapausing           12.14.2016
## 1372                  non-diapausing           12.14.2016
## 1375                  non-diapausing           12.14.2016
## 1545                  non-diapausing            8.25.2017
## 1546                  non-diapausing            8.25.2017
## 1547                  non-diapausing            8.25.2017
## 1549                  non-diapausing            8.25.2017
## 1550                  non-diapausing            8.25.2017
## 1552                  non-diapausing            8.25.2017
## 1553                  non-diapausing            8.25.2017
## 1554                  non-diapausing            8.25.2017
## 1555                  non-diapausing            8.25.2017
## 1556                  non-diapausing            8.25.2017
## 1557                  non-diapausing            8.25.2017
## 1558                  non-diapausing            8.25.2017
## 1559                  non-diapausing            8.25.2017
## 1560                  non-diapausing            8.25.2017
## 1562                  non-diapausing            8.25.2017
## 1563                  non-diapausing            8.25.2017
## 1565                  non-diapausing            8.25.2017
## 1566                  non-diapausing            8.25.2017
## 1567                  non-diapausing            8.25.2017
## 1568                  non-diapausing            8.25.2017
## 1569                  non-diapausing            8.25.2017
## 1571                  non-diapausing            8.25.2017
## 1572                  non-diapausing            8.25.2017
## 1573                  non-diapausing            8.25.2017
## 1574                  non-diapausing            8.25.2017
## 1575                  non-diapausing            8.25.2017
## 1576                  non-diapausing            8.25.2017
## 1577                  non-diapausing            8.25.2017
## 1578                  non-diapausing            8.25.2017
## 1579                  non-diapausing            8.25.2017
## 1580                  non-diapausing            8.25.2017
## 1581                  non-diapausing            8.25.2017
## 1582                  non-diapausing            8.25.2017
## 1583                  non-diapausing            8.25.2017
## 1584                  non-diapausing            8.25.2017
## 1585                  non-diapausing            8.25.2017
## 1586                  non-diapausing            8.25.2017
## 1587                  non-diapausing            8.25.2017
## 1589                  non-diapausing            8.25.2017
## 1590                  non-diapausing            8.25.2017
## 1591                  non-diapausing            8.25.2017
## 1592                  non-diapausing            8.25.2017
## 1593                  non-diapausing            8.25.2017
## 1594                  non-diapausing            8.25.2017
## 1595                  non-diapausing            8.25.2017
## 1596                  non-diapausing            8.25.2017
## 1597                  non-diapausing            8.25.2017
## 1598                  non-diapausing            8.25.2017
## 1599                  non-diapausing            8.25.2017
## 1600                  non-diapausing            8.25.2017
## 1601                  non-diapausing            8.25.2017
## 1602                  non-diapausing            8.25.2017
## 1603                  non-diapausing            8.25.2017
## 1605         diapausing aggregration           08.15.2017
## 1607         diapausing aggregration           08.15.2017
## 1608         diapausing aggregration           08.15.2017
## 1610         diapausing aggregration           08.15.2017
## 1611         diapausing aggregration           08.15.2017
## 1612         diapausing aggregration           08.15.2017
## 1613         diapausing aggregration           08.15.2017
## 1614         diapausing aggregration           08.15.2017
## 1615         diapausing aggregration           08.15.2017
## 1616         diapausing aggregration           08.15.2017
## 1617         diapausing aggregration           08.15.2017
## 1618         diapausing aggregration           08.15.2017
## 1620         diapausing aggregration           08.15.2017
## 1621         diapausing aggregration           08.15.2017
## 1622         diapausing aggregration           08.15.2017
## 1624         diapausing aggregration           08.15.2017
## 1625         diapausing aggregration           08.15.2017
## 1626         diapausing aggregration           08.15.2017
## 1627         diapausing aggregration           08.15.2017
## 1628         diapausing aggregration           08.15.2017
## 1629         diapausing aggregration           08.15.2017
## 1630         diapausing aggregration           08.15.2017
## 1631         diapausing aggregration           08.15.2017
## 1632         diapausing aggregration           08.15.2017
## 1634         diapausing aggregration           08.15.2017
## 1635         diapausing aggregration           08.15.2017
## 1636         diapausing aggregration           08.15.2017
## 1641         diapausing aggregration           08.15.2017
## 1642         diapausing aggregration           08.15.2017
## 1643         diapausing aggregration           08.15.2017
## 1644         diapausing aggregration           08.15.2017
## 1645         diapausing aggregration           08.15.2017
## 1646         diapausing aggregration           08.15.2017
## 1647         diapausing aggregration           08.15.2017
## 1648         diapausing aggregration           08.15.2017
## 1651         diapausing aggregration           08.15.2017
## 1652         diapausing aggregration           08.15.2017
## 1654         diapausing aggregration           08.15.2017
## 1655         diapausing aggregration           08.15.2017
## 1656         diapausing aggregration           08.15.2017
## 1657         diapausing aggregration           08.15.2017
## 1658         diapausing aggregration           08.15.2017
## 1659         diapausing aggregration           08.15.2017
## 1660         diapausing aggregration           08.15.2017
## 1661         diapausing aggregration           08.15.2017
## 1662         diapausing aggregration           08.15.2017
## 1663         diapausing aggregration           08.15.2017
## 1664         diapausing aggregration           08.15.2017
## 1665         diapausing aggregration           08.15.2017
## 1666         diapausing aggregration           08.15.2017
## 1667         diapausing aggregration           08.15.2017
## 1668         diapausing aggregration           08.15.2017
## 1669         diapausing aggregration           08.15.2017
## 1670         diapausing aggregration           08.15.2017
## 1671         diapausing aggregration           08.15.2017
## 1672         diapausing aggregration           08.15.2017
## 1673         diapausing aggregration           08.15.2017
## 1674         diapausing aggregration           08.15.2017
## 1675         diapausing aggregration           08.15.2017
## 1676         diapausing aggregration           08.15.2017
## 1677         diapausing aggregration           08.15.2017
## 1678         diapausing aggregration           08.15.2017
## 1679         diapausing aggregration           08.15.2017
## 1680         diapausing aggregration           08.15.2017
## 1681         diapausing aggregration           08.15.2017
## 1682         diapausing aggregration           08.15.2017
## 1683         diapausing aggregration           08.15.2017
## 1684         diapausing aggregration           08.15.2017
## 1685         diapausing aggregration           08.15.2017
## 1686         diapausing aggregration           08.15.2017
## 1687         diapausing aggregration           08.15.2017
## 1688         diapausing aggregration           08.15.2017
## 1689         diapausing aggregration           08.15.2017
## 1690         diapausing aggregration           08.15.2017
## 1691         diapausing aggregration           08.15.2017
## 1692         diapausing aggregration           08.15.2017
## 1693         diapausing aggregration           08.15.2017
## 1694         diapausing aggregration           08.15.2017
## 1695         diapausing aggregration           08.15.2017
## 1696         diapausing aggregration           08.15.2017
## 1697         diapausing aggregration           08.15.2017
## 1698         diapausing aggregration           08.15.2017
## 1699         diapausing aggregration           08.15.2017
## 1700         diapausing aggregration           08.15.2017
## 1701         diapausing aggregration           08.15.2017
## 1702         diapausing aggregration           08.15.2017
## 1703         diapausing aggregration           08.15.2017
## 1704         diapausing aggregration           08.15.2017
## 1705         diapausing aggregration           08.15.2017
## 1706         diapausing aggregration           08.15.2017
## 1707         diapausing aggregration           08.15.2017
## 1708         diapausing aggregration           08.15.2017
## 1709         diapausing aggregration           08.15.2017
## 1710         diapausing aggregration           08.15.2017
## 1711         diapausing aggregration           08.15.2017
## 1712         diapausing aggregration           08.15.2017
## 1713         diapausing aggregration           08.15.2017
## 1714         diapausing aggregration           08.15.2017
## 1715         diapausing aggregration           08.15.2017
## 1716         diapausing aggregration           08.15.2017
## 1717         diapausing aggregration           08.15.2017
## 1718         diapausing aggregration           08.15.2017
## 1719         diapausing aggregration           08.15.2017
## 1720         diapausing aggregration           08.15.2017
## 1721         diapausing aggregration           08.15.2017
## 1722         diapausing aggregration           08.15.2017
## 1723         diapausing aggregration           08.15.2017
## 1724         diapausing aggregration           08.15.2017
## 1725         diapausing aggregration           08.15.2017
## 1726         diapausing aggregration           08.15.2017
## 1727         diapausing aggregration           08.15.2017
## 1728         diapausing aggregration           08.15.2017
## 1729         diapausing aggregration           08.15.2017
## 1730         diapausing aggregration           08.15.2017
## 1731         diapausing aggregration           08.15.2017
## 1732         diapausing aggregration           08.15.2017
## 1733         diapausing aggregration           08.15.2017
## 1734                                           08.17.2017
## 1735                                           08.17.2017
## 1736                                           08.17.2017
## 1738                                           08.17.2017
## 1739                                           08.17.2017
## 1740                                           08.17.2017
## 1741                                           08.17.2017
## 1742                                           08.17.2017
## 1743                                           08.17.2017
## 1744                                           08.17.2017
## 1746                                           08.17.2017
## 1747                                           08.17.2017
## 1748                                           08.17.2017
## 1749                                           08.17.2017
## 1750                                           08.17.2017
## 1751                                           08.16.2017
## 1752                                           08.16.2017
## 1753                                           08.16.2017
## 1754                                           08.16.2017
## 1755                      wings torn           08.16.2017
## 1758                                           08.16.2017
## 1759                                           08.16.2017
## 1760                                           08.16.2017
## 1761                                           08.16.2017
## 1762                                           08.16.2017
## 1763                                           08.16.2017
## 1764                                           08.16.2017
## 1765                      wings torn           08.16.2017
## 1766                      wings torn           08.16.2017
## 1768                                           08.16.2017
## 1769                                           08.17.2017
## 1770                          marked           08.17.2017
## 1771                                           08.17.2017
## 1772                          marked           08.17.2017
## 1774                                           08.17.2017
## 1775                                           08.17.2017
## 1776                                           08.17.2017
## 1779                          marked           08.17.2017
## 1780                                           08.17.2017
## 1782                                           08.17.2017
## 1785                                           08.17.2017
## 1786                                           08.17.2017
## 1788                                           08.17.2017
## 1789                          marked           08.17.2017
## 1790                          marked           08.17.2017
## 1791                          marked           08.17.2017
## 1793                                           08.17.2017
## 1800                       tips torn           08.17.2017
## 1802                       tips torn           08.17.2017
## 1805                          marked           08.17.2017
## 1806                          marked           08.16.2017
## 1807                                           08.16.2017
## 1808                                           08.16.2017
## 1809                       tips torn           08.16.2017
## 1810                       tips torn           08.16.2017
## 1811                       tips torn           08.16.2017
## 1812                                           08.16.2017
## 1813                          marked           08.16.2017
## 1814                          marked           08.16.2017
## 1815                       tips torn           08.16.2017
## 1816                       tips torn           08.16.2017
## 1817                                           08.16.2017
## 1819                                           08.16.2017
## 1821                                           08.16.2017
## 1822                                           08.16.2017
## 1823               tips torn; marked           08.16.2017
## 1824                       tips torn           08.16.2017
## 1826         diapausing aggregration           08.23.2017
## 1827         diapausing aggregration           08.23.2017
## 1828         diapausing aggregration           08.23.2017
## 1829         diapausing aggregration           08.23.2017
## 1831         diapausing aggregration           08.23.2017
## 1832         diapausing aggregration           08.23.2017
## 1833         diapausing aggregration           08.23.2017
## 1834         diapausing aggregration           08.23.2017
## 1835         diapausing aggregration           08.23.2017
## 1836         diapausing aggregration           08.23.2017
## 1837         diapausing aggregration           08.23.2017
## 1838         diapausing aggregration           08.23.2017
## 1839         diapausing aggregration           08.23.2017
## 1840         diapausing aggregration           08.23.2017
## 1842         diapausing aggregration           08.23.2017
## 1844         diapausing aggregration           08.23.2017
## 1845         diapausing aggregration           08.23.2017
## 1846         diapausing aggregration           08.23.2017
## 1847         diapausing aggregration           08.23.2017
## 1848         diapausing aggregration           08.23.2017
## 1849         diapausing aggregration           08.23.2017
## 1850         diapausing aggregration           08.23.2017
## 1852         diapausing aggregration           08.23.2017
## 1853         diapausing aggregration           08.23.2017
## 1854         diapausing aggregration           08.23.2017
## 1855         diapausing aggregration           08.23.2017
## 1856         diapausing aggregration           08.23.2017
## 1857         diapausing aggregration           08.23.2017
## 1858                  non-diapausing            8.23.2017
## 1859                  non-diapausing            8.23.2017
## 1862                  non-diapausing            8.23.2017
## 1863                  non-diapausing            8.23.2017
## 1864                  non-diapausing            8.23.2017
## 1867                  non-diapausing            8.23.2017
## 1868                  non-diapausing            8.23.2017
## 1871                  non-diapausing            8.23.2017
## 1874                  non-diapausing            8.23.2017
## 1876                  non-diapausing            8.23.2017
## 1878                  non-diapausing            8.23.2017
## 1879                  non-diapausing            8.23.2017
## 1881                  non-diapausing            8.23.2017
## 1882                  non-diapausing            8.23.2017
## 1884                  non-diapausing            8.23.2017
## 1885                  non-diapausing            8.23.2017
## 1887                  non-diapausing            8.23.2017
## 1892                  non-diapausing            8.23.2017
## 1894                  non-diapausing            8.23.2017
## 1895                  non-diapausing            8.23.2017
## 1896                  non-diapausing            8.23.2017
## 1897                  non-diapausing            8.23.2017
## 1898                  non-diapausing            8.23.2017
## 1901                  non-diapausing            8.23.2017
## 1905                  non-diapausing            8.23.2017
## 1907                  non-diapausing            8.23.2017
## 1912                  non-diapausing            8.23.2017
## 1914                  non-diapausing            8.23.2017
## 1915                  non-diapausing            8.23.2017
## 1917                  non-diapausing           08.24.2017
## 1918                  non-diapausing           08.24.2017
## 1922                  non-diapausing           08.24.2017
## 1923                  non-diapausing           08.24.2017
## 1924                  non-diapausing           08.24.2017
## 1925                  non-diapausing           08.24.2017
## 1927                  non-diapausing           08.24.2017
## 1928                  non-diapausing           08.24.2017
## 1929                  non-diapausing           08.24.2017
## 1930                  non-diapausing           08.24.2017
## 1933                  non-diapausing           08.24.2017
## 1935                  non-diapausing           08.24.2017
## 1936                  non-diapausing           08.24.2017
## 1937                  non-diapausing           08.24.2017
## 1938                  non-diapausing           08.24.2017
## 1939                  non-diapausing           08.24.2017
## 1941                  non-diapausing           08.24.2017
## 1942                  non-diapausing           08.24.2017
## 1944                  non-diapausing           08.24.2017
## 1945                  non-diapausing           08.24.2017
## 1946                  non-diapausing           08.24.2017
## 1947                  non-diapausing           08.24.2017
## 1948                  non-diapausing           08.24.2017
## 1949                  non-diapausing           08.24.2017
## 1952                  non-diapausing           08.24.2017
## 1953                  non-diapausing           08.24.2017
## 1955                  non-diapausing           08.24.2017
## 1956                  non-diapausing           08.24.2017
## 1958                  non-diapausing           08.24.2017
## 1959                  non-diapausing           08.24.2017
## 1960                  non-diapausing           08.24.2017
## 1963                  non-diapausing           08.24.2017
## 1964                  non-diapausing           08.24.2017
## 1965                  non-diapausing           08.24.2017
## 1973                  non-diapausing           08.24.2017
## 1975                  non-diapausing           09.23.2018
## 1976                  non-diapausing           09.23.2018
## 1977                  non-diapausing           09.23.2018
## 1978                  non-diapausing           09.23.2018
## 1979                  non-diapausing           09.23.2018
## 1980                  non-diapausing           09.23.2018
## 1981                  non-diapausing           09.23.2018
## 1982                  non-diapausing           09.23.2018
## 1983                  non-diapausing           09.23.2018
## 1984                  non-diapausing           09.23.2018
## 1985                  non-diapausing           09.23.2018
## 1986                  non-diapausing           09.23.2018
## 1987                  non-diapausing           09.23.2018
## 1988                  non-diapausing           09.23.2018
## 1989                  non-diapausing           09.23.2018
## 1990                  non-diapausing           09.23.2018
## 1992                  non-diapausing           09.23.2018
## 1993                  non-diapausing           09.23.2018
## 1994                  non-diapausing           09.23.2018
## 1995                  non-diapausing           09.23.2018
## 1996                  non-diapausing           09.23.2018
## 1997                  non-diapausing           09.23.2018
## 1998                  non-diapausing           09.23.2018
## 1999                  non-diapausing           09.23.2018
## 2000                  non-diapausing           09.23.2018
## 2001                  non-diapausing           09.23.2018
## 2002                  non-diapausing           09.23.2018
## 2003                  non-diapausing           09.23.2018
## 2004                  non-diapausing           09.23.2018
## 2005                  non-diapausing           09.23.2018
## 2006                  non-diapausing           09.23.2018
## 2007                  non-diapausing           09.23.2018
## 2008                  non-diapausing           09.23.2018
## 2009                  non-diapausing           09.23.2018
## 2010                  non-diapausing           09.23.2018
## 2011                  non-diapausing           09.23.2018
## 2012                  non-diapausing           09.23.2018
## 2013                  non-diapausing           09.23.2018
## 2014                  non-diapausing           09.23.2018
## 2015                  non-diapausing           09.23.2018
## 2016                  non-diapausing           09.23.2018
## 2017                  non-diapausing           09.23.2018
## 2018                  non-diapausing           09.23.2018
## 2019                  non-diapausing           09.23.2018
## 2020                  non-diapausing           09.23.2018
## 2021                  non-diapausing           09.23.2018
## 2022                  non-diapausing           09.23.2018
## 2023                  non-diapausing           09.23.2018
## 2024                  non-diapausing           09.23.2018
## 2025                  non-diapausing           09.23.2018
## 2026                  non-diapausing           09.23.2018
## 2027                  non-diapausing           09.23.2018
## 2028                  non-diapausing           09.23.2018
## 2029                  non-diapausing           09.23.2018
## 2031                  non-diapausing           09.23.2018
## 2032                  non-diapausing           09.23.2018
## 2033                  non-diapausing           09.23.2018
## 2034                  non-diapausing           09.23.2018
## 2036                  non-diapausing           09.23.2018
## 2037                  non-diapausing           09.23.2018
## 2038                  non-diapausing           09.23.2018
## 2039                  non-diapausing           09.26.2018
## 2040                  non-diapausing           09.26.2018
## 2041                  non-diapausing           09.26.2018
## 2042                  non-diapausing           09.26.2018
## 2047                  non-diapausing           09.26.2018
## 2050                  non-diapausing           09.26.2018
## 2053                  non-diapausing           09.26.2018
## 2055                  non-diapausing           09.26.2018
## 2057                  non-diapausing           09.26.2018
## 2058                  non-diapausing           09.26.2018
## 2059                  non-diapausing           09.26.2018
## 2062                  non-diapausing           09.26.2018
## 2064                  non-diapausing           09.26.2018
## 2065                  non-diapausing           09.26.2018
## 2069                  non-diapausing           09.26.2018
## 2071                  non-diapausing           09.26.2018
## 2072                  non-diapausing           09.26.2018
## 2073                  non-diapausing           09.26.2018
## 2079                  non-diapausing           09.26.2018
## 2081                  non-diapausing           09.26.2018
## 2082                  non-diapausing           09.26.2018
## 2083                  non-diapausing           09.26.2018
## 2085                  non-diapausing           09.26.2018
## 2086                  non-diapausing           09.26.2018
## 2087                  non-diapausing           09.26.2018
## 2088                  non-diapausing           09.26.2018
## 2091                  non-diapausing           09.26.2018
## 2094                  non-diapausing           09.26.2018
## 2095                  non-diapausing           09.26.2018
## 2097                  non-diapausing           09.26.2018
## 2099                  non-diapausing           09.26.2018
## 2101                  non-diapausing           09.26.2018
## 2103                  non-diapausing           09.26.2018
## 2107                  non-diapausing           09.28.2018
## 2108                  non-diapausing           09.28.2018
## 2109                  non-diapausing           09.28.2018
## 2110                  non-diapausing           09.28.2018
## 2111                  non-diapausing           09.28.2018
## 2112                  non-diapausing           09.28.2018
## 2113                  non-diapausing           09.28.2018
## 2115                  non-diapausing           09.28.2018
## 2116                  non-diapausing           09.28.2018
## 2117                  non-diapausing           09.28.2018
## 2118                  non-diapausing           09.28.2018
## 2119                  non-diapausing           09.28.2018
## 2120                  non-diapausing           09.28.2018
## 2121                  non-diapausing           09.28.2018
## 2122                  non-diapausing           09.28.2018
## 2123                  non-diapausing           09.28.2018
## 2124                  non-diapausing           09.28.2018
## 2125                  non-diapausing           09.28.2018
## 2126                  non-diapausing           09.28.2018
## 2127                  non-diapausing           09.28.2018
## 2128                  non-diapausing           09.28.2018
## 2129                  non-diapausing           09.28.2018
## 2130                  non-diapausing           09.28.2018
## 2131                  non-diapausing           09.28.2018
## 2133                  non-diapausing           09.28.2018
## 2134                  non-diapausing           09.28.2018
## 2136                  non-diapausing           09.28.2018
## 2137                  non-diapausing           09.28.2018
## 2138                  non-diapausing           09.28.2018
## 2139                  non-diapausing           09.28.2018
## 2140                  non-diapausing           09.28.2018
## 2141                  non-diapausing           09.28.2018
## 2142                  non-diapausing           09.28.2018
## 2143                  non-diapausing           09.28.2018
## 2144                  non-diapausing           09.28.2018
## 2145                  non-diapausing           09.28.2018
## 2146                  non-diapausing           09.28.2018
## 2147                  non-diapausing           09.28.2018
## 2148                  non-diapausing            5.22.2019
## 2149                  non-diapausing            5.22.2019
## 2150                  non-diapausing            5.22.2019
## 2151                  non-diapausing            5.22.2019
## 2152                  non-diapausing            5.22.2019
## 2154                  non-diapausing            5.22.2019
## 2155                  non-diapausing            5.22.2019
## 2156                  non-diapausing            5.22.2019
## 2157                                           05.22.2019
## 2158                                           05.22.2019
## 2159                                           05.22.2019
## 2160                                           05.22.2019
## 2161                                           05.22.2019
## 2162                                           05.22.2019
## 2163                                           05.22.2019
## 2164                                           05.22.2019
## 2165                                           05.22.2019
## 2166                                           05.22.2019
## 2168                                           05.22.2019
## 2169                                           05.22.2019
## 2170                                           05.22.2019
## 2171                                           05.22.2019
## 2172                                           05.22.2019
## 2173                                           05.22.2019
## 2174                                           05.22.2019
## 2175                                           05.22.2019
## 2176                                           05.22.2019
## 2177                                           05.22.2019
## 2178                                           05.22.2019
## 2179                                           05.22.2019
## 2180                                           05.22.2019
## 2181                                           05.22.2019
## 2182                                           05.22.2019
## 2183                                           05.22.2019
## 2184                                           05.22.2019
## 2185                                           05.22.2019
## 2186                                           05.22.2019
## 2187                                           05.22.2019
## 2188                                           05.22.2019
## 2189                                           05.22.2019
## 2190                                           05.22.2019
## 2191                                           05.22.2019
## 2192                                           05.22.2019
## 2193                                           05.22.2019
## 2194                                           05.22.2019
## 2195                                           05.22.2019
## 2196                                           05.22.2019
## 2198                  non-diapausing           05.17.2019
## 2199                  non-diapausing           05.17.2019
## 2200                  non-diapausing           05.17.2019
## 2201                  non-diapausing           05.17.2019
## 2202                  non-diapausing           05.17.2019
## 2204                  non-diapausing           05.17.2019
## 2212                  non-diapausing           05.17.2019
## 2213                  non-diapausing           05.17.2019
## 2218                  non-diapausing             5.6.2019
## 2219                  non-diapausing             5.6.2019
## 2220                  non-diapausing             5.6.2019
## 2221                  non-diapausing             5.6.2019
## 2228                  non-diapausing             5.6.2019
## 2232                  non-diapausing             5.6.2019
## 2233                  non-diapausing             5.6.2019
## 2234                  non-diapausing             5.6.2019
## 2235                  non-diapausing             5.6.2019
## 2237                  non-diapausing             5.6.2019
## 2238                  non-diapausing             5.6.2019
## 2240                  non-diapausing             5.6.2019
## 2245                  non-diapausing             5.6.2019
## 2247                  non-diapausing             5.6.2019
## 2251                  non-diapausing             5.6.2019
## 2256                  non-diapausing             5.6.2019
## 2261                  non-diapausing             5.6.2019
## 2262                  non-diapausing             5.6.2019
## 2263                  non-diapausing             5.6.2019
## 2266                  non-diapausing             5.6.2019
## 2268                  non-diapausing             5.6.2019
## 2270                  non-diapausing             5.6.2019
## 2274                  non-diapausing             5.6.2019
## 2282                  non-diapausing             5.6.2019
## 2285                  non-diapausing             5.6.2019
## 2288                  non-diapausing             5.6.2019
## 2291                      diapausing           05.19.2019
## 2292                      diapausing           05.19.2019
## 2293                      diapausing           05.19.2019
## 2294                      diapausing           05.19.2019
## 2295                      diapausing           05.19.2019
## 2296                      diapausing           05.19.2019
## 2297                      diapausing           05.19.2019
## 2298                      diapausing           05.19.2019
## 2300                      diapausing           05.19.2019
## 2302                      diapausing           05.19.2019
## 2305                      diapausing           05.19.2019
## 2306                      diapausing           05.19.2019
## 2308                      diapausing           05.19.2019
## 2310                      diapausing           05.19.2019
## 2312                      diapausing           05.19.2019
## 2313                      diapausing           05.19.2019
## 2314                      diapausing           05.19.2019
## 2315                      diapausing           05.19.2019
## 2316                      diapausing           05.19.2019
## 2317                      diapausing           05.19.2019
## 2318                      diapausing           05.19.2019
## 2319                      diapausing           05.19.2019
## 2320                      diapausing           05.19.2019
## 2321                      diapausing           05.19.2019
## 2322                      diapausing           05.19.2019
## 2323                      diapausing           05.19.2019
## 2324                      diapausing           05.19.2019
## 2325                      diapausing           05.19.2019
## 2326                      diapausing           05.19.2019
## 2327                      diapausing           05.19.2019
## 2328                      diapausing           05.19.2019
## 2329                      diapausing           05.19.2019
## 2330                      diapausing           05.19.2019
## 2331                      diapausing           05.19.2019
## 2332                      diapausing           05.19.2019
## 2333                      diapausing           05.19.2019
## 2334                      diapausing           05.19.2019
## 2335                      diapausing           05.19.2019
## 2337                      diapausing           05.19.2019
## 2338                      diapausing           05.19.2019
## 2340                      diapausing           05.19.2019
## 2342                      diapausing           05.19.2019
## 2343                      diapausing           05.19.2019
## 2344                      diapausing           05.19.2019
## 2345                      diapausing           05.19.2019
## 2346                      diapausing           05.19.2019
## 2347                      diapausing           05.19.2019
## 2348                      diapausing           05.19.2019
## 2349                      diapausing           05.19.2019
## 2350                      diapausing           05.19.2019
## 2351                      diapausing           05.19.2019
## 2352                      diapausing           05.19.2019
## 2353                      diapausing           05.19.2019
## 2354                                           05.13.2019
## 2355                                           05.13.2019
## 2356                                           05.13.2019
## 2357                                           05.13.2019
## 2359                                           05.13.2019
## 2361                                           05.13.2019
## 2362                                           05.13.2019
## 2363                                           05.13.2019
## 2365                                           05.13.2019
## 2366                                           05.13.2019
## 2367                                           05.13.2019
## 2368                                           05.13.2019
## 2370                                           05.13.2019
## 2371                                           05.13.2019
## 2372                                           05.13.2019
## 2373                                           05.13.2019
## 2374                                           05.13.2019
## 2376                                           05.13.2019
## 2379                                           05.13.2019
## 2381                                           05.13.2019
## 2383                                           05.13.2019
## 2386                                           05.13.2019
## 2387                                           05.13.2019
## 2388                                           05.13.2019
## 2389                                           05.13.2019
## 2390                                           05.13.2019
## 2391                                           05.13.2019
## 2392                                           05.13.2019
## 2394                                           05.13.2019
## 2395                                           05.13.2019
## 2398                                           05.13.2019
## 2399                                           05.13.2019
## 2400                                           05.13.2019
## 2401                                           05.13.2019
## 2403                                           05.13.2019
## 2404                                           05.13.2019
## 2406                                           05.13.2019
## 2408                                           05.13.2019
## 2409                                           05.13.2019
## 2410                                           05.13.2019
## 2417                                           05.13.2019
## 2418                                           05.13.2019
## 2420                                           05.13.2019
## 2421                                           05.13.2019
## 2422                                           05.13.2019
## 2423                                           05.13.2019
## 2425                                           05.13.2019
## 2428                                           05.13.2019
## 2429                                           05.13.2019
## 2431                                           05.13.2019
## 2432                                           05.13.2019
## 2434                                           05.13.2019
## 2436                                           05.13.2019
## 2439                                           05.13.2019
## 2440                                           05.13.2019
## 2441                                           05.13.2019
## 2447                                           05.13.2019
## 2452                                           05.13.2019
## 2456                                           05.14.2019
## 2457                                           05.14.2019
## 2459                                           05.14.2019
## 2466                                           05.06.2019
## 2469                                           05.06.2019
## 2470                                           05.06.2019
## 2472                                           05.06.2019
## 2473                                           05.06.2019
## 2476                                           05.06.2019
## 2477                                           05.06.2019
## 2478                                           05.06.2019
## 2479                                           05.06.2019
## 2480                                           05.06.2019
## 2482                                           05.06.2019
## 2484                                           05.06.2019
## 2487                                           05.06.2019
## 2496                                           05.06.2019
## 2497                                           05.06.2019
## 2498                                           05.06.2019
## 2499                                           05.06.2019
## 2501                                           05.06.2019
## 2502                                           05.06.2019
## 2503                                           05.06.2019
## 2504                                           05.06.2019
## 2505                                           05.06.2019
## 2507                                           05.06.2019
## 2510                                           05.06.2019
## 2512                                           05.06.2019
## 2514                                           05.06.2019
## 2518                                           05.06.2019
## 2519                                           05.06.2019
## 2521                                           05.06.2019
## 2523                                           05.06.2019
## 2524                                           05.06.2019
## 2525                                           05.06.2019
## 2526                                           05.06.2019
## 2527                                           05.06.2019
## 2530                                           05.06.2019
## 2535                                           05.06.2019
## 2537                                           05.06.2019
## 2541                                           05.06.2019
## 2543                                           05.06.2019
## 2544                                           05.06.2019
## 2545                                           05.06.2019
## 2546                                           05.06.2019
## 2549                                           05.06.2019
## 2554                                           05.06.2019
## 2561                                           05.06.2019
## 2566                                                     
## 2567                                                     
## 2568                                                     
## 2569                                                     
## 2570                                                     
## 2572                                                     
## 2573                                                     
## 2574                                                     
## 2575                                                     
## 2576                                                     
## 2577                                                     
## 2578                                                     
## 2579                                                     
## 2580                                                     
## 2581                                                     
## 2582                                                     
## 2584                                                     
## 2585                                                     
## 2586                                                     
## 2587                                                     
## 2588                                                     
## 2590                                                     
## 2591                                                     
## 2592                                                     
## 2593                                                     
## 2595                                                     
## 2596                  non-diapausing            5.13.2019
## 2597                  non-diapausing            5.13.2019
## 2598                  non-diapausing            5.13.2019
## 2600                  non-diapausing            5.13.2019
## 2604                                                     
## 2606                                                     
## 2607                                                     
## 2608                                                     
## 2614                                                     
## 2622                                                     
## 2624                                                     
## 2625                                                     
## 2628                                                     
## 2629                                                     
## 2634                                                     
## 2637                  non-diapausing           10.06.2019
## 2638                  non-diapausing           10.06.2019
## 2639                  non-diapausing           10.06.2019
## 2640                  non-diapausing           10.06.2019
## 2641                  non-diapausing           10.06.2019
## 2645                  non-diapausing           10.06.2019
## 2647                  non-diapausing           10.06.2019
## 2651                  non-diapausing           10.06.2019
## 2652                  non-diapausing           10.06.2019
## 2653                     diapausing?           10.04.2019
## 2654                     diapausing?           10.04.2019
## 2655                     diapausing?           10.04.2019
## 2656                     diapausing?           10.04.2019
## 2657                     diapausing?           10.04.2019
## 2658                     diapausing?           10.04.2019
## 2659                     diapausing?           10.04.2019
## 2660                     diapausing?           10.04.2019
## 2661                     diapausing?           10.04.2019
## 2662                     diapausing?           10.04.2019
## 2663                     diapausing?           10.04.2019
## 2664                     diapausing?           10.04.2019
## 2665                     diapausing?           10.04.2019
## 2666                     diapausing?           10.04.2019
## 2667                     diapausing?           10.04.2019
## 2669                     diapausing?           10.04.2019
## 2670                     diapausing?           10.04.2019
## 2671                     diapausing?           10.04.2019
## 2672                     diapausing?           10.04.2019
## 2673                     diapausing?           10.04.2019
## 2674                     diapausing?           10.04.2019
## 2675                     diapausing?           10.04.2019
## 2676                     diapausing?           10.04.2019
## 2677                     diapausing?           10.04.2019
## 2678                     diapausing?           10.04.2019
## 2679                     diapausing?           10.04.2019
## 2683                     diapausing?           10.04.2019
## 2684                     diapausing?           10.04.2019
## 2685                     diapausing?           10.04.2019
## 2686                     diapausing?           10.04.2019
## 2687                     diapausing?           10.04.2019
## 2693                  non-diapausing           10.04.2019
## 2695                  non-diapausing           10.04.2019
## 2697                  non-diapausing           10.04.2019
## 2698                  non-diapausing           10.04.2019
## 2701                  non-diapausing           10.04.2019
## 2704                      diapausing           10.05.2019
## 2705                      diapausing           10.05.2019
## 2706                      diapausing           10.05.2019
## 2707                      diapausing           10.05.2019
## 2709                      diapausing           10.05.2019
## 2710                      diapausing           10.05.2019
## 2711                      diapausing           10.05.2019
## 2712                      diapausing           10.05.2019
## 2713                      diapausing           10.05.2019
## 2716                      diapausing           10.05.2019
## 2717                      diapausing           10.05.2019
## 2718                      diapausing           10.05.2019
## 2719                      diapausing           10.05.2019
## 2720                      diapausing           10.05.2019
## 2721                      diapausing           10.05.2019
## 2722                      diapausing           10.05.2019
## 2723                      diapausing           10.05.2019
## 2724                      diapausing           10.05.2019
## 2725                      diapausing           10.05.2019
## 2726                      diapausing           10.05.2019
## 2727                      diapausing           10.05.2019
## 2728                      diapausing           10.05.2019
## 2730                      diapausing           10.05.2019
## 2731                      diapausing           10.05.2019
## 2733                      diapausing           10.05.2019
## 2734                      diapausing           10.05.2019
## 2735                      diapausing           10.05.2019
## 2736                      diapausing           10.05.2019
## 2737                      diapausing           10.05.2019
## 2738                      diapausing           10.05.2019
## 2739                      diapausing           10.05.2019
## 2740                      diapausing           10.05.2019
## 2741                      diapausing           10.05.2019
## 2742                      diapausing           10.05.2019
## 2743                      diapausing           10.05.2019
## 2744                      diapausing           10.05.2019
## 2745                      diapausing           10.05.2019
## 2747                      diapausing           10.05.2019
## 2748                      diapausing           10.05.2019
## 2749                      diapausing           10.05.2019
## 2752                      diapausing           10.05.2019
## 2754                      diapausing           10.05.2019
## 2756                      diapausing           10.05.2019
## 2757                      diapausing           10.05.2019
## 2758                      diapausing            10.5.2019
## 2759                      diapausing            10.5.2019
## 2760                      diapausing            10.5.2019
## 2761                      diapausing            10.5.2019
## 2763                      diapausing            10.5.2019
## 2764                      diapausing            10.5.2019
## 2765                      diapausing            10.5.2019
## 2767                      diapausing            10.5.2019
## 2768                      diapausing            10.5.2019
## 2769                      diapausing            10.5.2019
## 2772                  non-diapausing           10.05.2019
## 2773                  non-diapausing           10.05.2019
## 2774                  non-diapausing           10.05.2019
## 2777                  non-diapausing           10.05.2019
## 2779                  non-diapausing           10.05.2019
## 2780                  non-diapausing           10.05.2019
## 2781                  non-diapausing           10.05.2019
## 2782                  non-diapausing           10.05.2019
## 2784                         unknown           10.05.2019
## 2785                         unknown           10.05.2019
## 2786                         unknown           10.05.2019
## 2787                         unknown           10.05.2019
## 2788                         unknown           10.05.2019
## 2789                         unknown           10.05.2019
## 2791                         unknown           10.05.2019
## 2792                         unknown           10.05.2019
## 2794                         unknown           10.05.2019
## 2795                         unknown           10.05.2019
## 2797                         unknown           10.05.2019
## 2798                  non-diapausing           10.03.2019
## 2799                  non-diapausing           10.03.2019
## 2800                  non-diapausing           10.03.2019
## 2801                  non-diapausing           10.03.2019
## 2802                  non-diapausing           10.03.2019
## 2806                  non-diapausing           10.03.2019
## 2807                  non-diapausing           10.03.2019
## 2808                  non-diapausing           10.03.2019
## 2810                  non-diapausing           10.03.2019
## 2812                  non-diapausing           10.03.2019
## 2813                  non-diapausing           10.03.2019
## 2816                  non-diapausing           10.03.2019
## 2820                  non-diapausing           10.02.2019
## 2823                  non-diapausing           10.02.2019
## 2826                  non-diapausing           10.02.2019
## 2830                  non-diapausing           10.02.2019
## 2831                  non-diapausing           10.03.2019
## 2833                  non-diapausing           10.03.2019
## 2834                  non-diapausing           10.03.2019
## 2835                  non-diapausing           10.03.2019
## 2836                  non-diapausing           10.03.2019
## 2837                  non-diapausing           10.03.2019
## 2839                  non-diapausing           10.02.2019
## 2841                  non-diapausing           10.02.2019
## 2842                  non-diapausing           10.02.2019
## 2844                  non-diapausing           10.02.2019
## 2845                  non-diapausing           10.02.2019
## 2847                  non-diapausing           10.02.2019
## 2848                  non-diapausing           10.02.2019
## 2850                  non-diapausing           10.02.2019
## 2851                  non-diapausing           10.02.2019
## 2853                  non-diapausing           10.02.2019
## 2854                  non-diapausing           10.02.2019
## 2855                  non-diapausing           10.02.2019
## 2856                  non-diapausing           10.02.2019
## 2859                  non-diapausing           10.02.2019
## 2860                  non-diapausing           10.02.2019
## 2862                  non-diapausing           10.02.2019
## 2863                  non-diapausing           10.02.2019
## 2864                  non-diapausing           10.02.2019
## 2868                  non-diapausing           10.02.2019
## 2869                  non-diapausing           10.02.2019
## 2871                  non-diapausing           10.02.2019
## 2878                  non-diapausing            10.2.2019
## 2884                  non-diapausing           10.02.2019
## 2886                  non-diapausing           10.02.2019
## 2887                  non-diapausing           10.02.2019
## 2891                  non-diapausing           10.02.2019
## 2892                  non-diapausing           10.02.2019
## 2893                  non-diapausing           10.02.2019
## 2895                  non-diapausing           10.02.2019
## 2896                  non-diapausing           10.02.2019
## 2897                  non-diapausing             2.9.2020
## 2899                  non-diapausing             2.9.2020
## 2900                  non-diapausing             2.9.2020
## 2901                  non-diapausing             2.9.2020
## 2904                  non-diapausing             2.9.2020
## 2905                  non-diapausing             2.9.2020
## 2906                  non-diapausing             2.9.2020
## 2907                  non-diapausing             2.9.2020
## 2908                  non-diapausing             2.9.2020
## 2911                  non-diapausing             2.9.2020
## 2912                  non-diapausing             2.9.2020
## 2914                  non-diapausing           02.09.2020
## 2917                  non-diapausing           02.09.2020
## 2919                  non-diapausing           02.09.2020
## 2921                  non-diapausing           02.09.2020
## 2923                  non-diapausing           02.09.2020
## 2929                  non-diapausing           02.09.2020
## 2930                  non-diapausing           02.09.2020
## 2931                  non-diapausing           02.09.2020
## 2932                  non-diapausing           02.09.2020
## 2933                  non-diapausing             2.5.2020
## 2934                  non-diapausing             2.7.2020
## 2935                  non-diapausing             2.7.2020
## 2936                  non-diapausing             2.7.2020
## 2937                  non-diapausing             2.7.2020
## 2939                  non-diapausing             2.7.2020
## 2940                  non-diapausing             2.7.2020
## 2944                  non-diapausing             2.7.2020
## 2945                  non-diapausing             2.7.2020
## 2947                  non-diapausing             2.7.2020
## 2948                  non-diapausing             2.7.2020
## 2949                  non-diapausing             2.7.2020
## 2950                  non-diapausing             2.7.2020
## 2951                  non-diapausing             2.7.2020
## 2952                  non-diapausing             2.7.2020
## 2953                  non-diapausing             2.7.2020
## 2954                  non-diapausing             2.7.2020
## 2955                  non-diapausing             2.7.2020
## 2956                  non-diapausing             2.7.2020
## 2957                  non-diapausing             2.7.2020
## 2958                  non-diapausing             2.7.2020
## 2959                  non-diapausing             2.7.2020
## 2960                  non-diapausing             2.7.2020
## 2964                  non-diapausing           02.07.2020
## 2965                  non-diapausing           02.07.2020
## 2970                  non-diapausing           02.07.2020
## 2971                  non-diapausing           02.07.2020
## 2972                  non-diapausing           02.07.2020
## 2973                  non-diapausing           02.07.2020
## 2974                  non-diapausing           02.07.2020
## 2975                  non-diapausing             2.5.2020
## 2976                  non-diapausing             2.5.2020
## 2978                  non-diapausing             2.5.2020
## 2979                  non-diapausing             2.5.2020
## 2980                  non-diapausing             2.5.2020
## 2981                  non-diapausing             2.5.2020
## 2982                  non-diapausing             2.5.2020
## 2983                  non-diapausing             2.5.2020
## 2984                  non-diapausing             2.5.2020
## 2985                  non-diapausing             2.5.2020
## 2986                  non-diapausing             2.5.2020
## 2987                  non-diapausing             2.5.2020
## 2988                  non-diapausing             2.5.2020
## 2990                  non-diapausing             2.5.2020
## 2991                  non-diapausing             2.5.2020
## 2992                  non-diapausing             2.5.2020
## 2994                  non-diapausing             2.5.2020
## 2995                  non-diapausing             2.5.2020
## 2997                  non-diapausing             2.5.2020
## 2998                  non-diapausing             2.5.2020
## 2999                  non-diapausing             2.5.2020
## 3000                  non-diapausing             2.5.2020
## 3001                  non-diapausing             2.5.2020
## 3002                  non-diapausing             2.5.2020
## 3004                  non-diapausing             2.5.2020
## 3005                  non-diapausing             2.5.2020
## 3006                  non-diapausing             2.5.2020
## 3007                  non-diapausing             2.5.2020
## 3009                  non-diapausing             2.5.2020
## 3010                  non-diapausing             2.5.2020
## 3011                  non-diapausing             2.5.2020
## 3013                  non-diapausing             2.5.2020
## 3014                  non-diapausing             2.5.2020
## 3015                  non-diapausing             2.5.2020
## 3016                  non-diapausing             2.5.2020
## 3019                  non-diapausing             2.5.2020
## 3020                  non-diapausing             2.5.2020
## 3045                  non-diapausing           02.06.2020
## 3050                  non-diapausing           02.06.2020
## 3052                  non-diapausing           02.06.2020
## 3053                  non-diapausing           02.06.2020
## 3054 diapause-like behavior observed             2.7.2020
## 3055 diapause-like behavior observed             2.7.2020
## 3056 diapause-like behavior observed             2.7.2020
## 3057 diapause-like behavior observed             2.7.2020
## 3058 diapause-like behavior observed             2.7.2020
## 3059 diapause-like behavior observed             2.7.2020
## 3060 diapause-like behavior observed             2.7.2020
## 3061 diapause-like behavior observed             2.7.2020
## 3062 diapause-like behavior observed             2.7.2020
## 3063 diapause-like behavior observed             2.7.2020
## 3064 diapause-like behavior observed             2.7.2020
## 3066 diapause-like behavior observed             2.7.2020
## 3067 diapause-like behavior observed             2.7.2020
## 3068 diapause-like behavior observed             2.7.2020
## 3069 diapause-like behavior observed             2.7.2020
## 3070 diapause-like behavior observed             2.7.2020
## 3071 diapause-like behavior observed             2.7.2020
## 3072 diapause-like behavior observed             2.7.2020
## 3073 diapause-like behavior observed             2.7.2020
## 3074 diapause-like behavior observed             2.7.2020
## 3075 diapause-like behavior observed             2.7.2020
## 3076 diapause-like behavior observed             2.7.2020
## 3077 diapause-like behavior observed             2.7.2020
## 3078 diapause-like behavior observed           02.07.2020
## 3079 diapause-like behavior observed           02.07.2020
## 3080 diapause-like behavior observed           02.07.2020
## 3081 diapause-like behavior observed           02.07.2020
## 3082 diapause-like behavior observed           02.07.2020
## 3083 diapause-like behavior observed           02.07.2020
## 3084 diapause-like behavior observed           02.07.2020
## 3085 diapause-like behavior observed           02.07.2020
## 3086 diapause-like behavior observed           02.07.2020
## 3087 diapause-like behavior observed           02.07.2020
## 3088 diapause-like behavior observed           02.07.2020
## 3089 diapause-like behavior observed           02.07.2020
## 3090 diapause-like behavior observed           02.07.2020
## 3091 diapause-like behavior observed           02.07.2020
## 3092 diapause-like behavior observed           02.07.2020
## 3093 diapause-like behavior observed           02.07.2020
## 3094 diapause-like behavior observed           02.07.2020
## 3095 diapause-like behavior observed           02.07.2020
## 3096 diapause-like behavior observed           02.07.2020
## 3097                  non-diapausing             2.7.2020
## 3098                  non-diapausing             2.7.2020
## 3099                  non-diapausing             2.7.2020
## 3100                  non-diapausing             2.7.2020
## 3101                  non-diapausing             2.7.2020
## 3102                  non-diapausing             2.7.2020
## 3103                  non-diapausing             2.7.2020
## 3105                  non-diapausing             2.7.2020
## 3107                  non-diapausing             2.7.2020
## 3108                  non-diapausing           02.07.2020
## 3109                  non-diapausing           02.07.2020
## 3110                  non-diapausing           02.07.2020
## 3111                  non-diapausing           02.07.2020
## 3112                  non-diapausing           02.07.2020
## 3113                  non-diapausing           02.07.2020
## 3115                  non-diapausing           02.07.2020
## 3116                  non-diapausing           02.07.2020
## 3117                  non-diapausing           02.07.2020
## 3118                  non-diapausing           02.07.2020
## 3119                  non-diapausing           02.07.2020
## 3120                  non-diapausing           02.07.2020
## 3121                  non-diapausing           02.07.2020
## 3122                  non-diapausing           02.07.2020
## 3123                  non-diapausing           02.07.2020
## 3124                  non-diapausing           02.07.2020
## 3125                  non-diapausing           02.07.2020
## 3126                  non-diapausing           02.07.2020
## 3127                  non-diapausing           02.07.2020
## 3128                  non-diapausing           02.07.2020
## 3129                  non-diapausing           02.07.2020
## 3131                  non-diapausing           02.07.2020
## 3132                  non-diapausing           02.07.2020
## 3133                  non-diapausing           02.07.2020
## 3134                  non-diapausing           02.07.2020
## 3135                  non-diapausing           02.07.2020
## 3136                  non-diapausing           02.07.2020
## 3137                  non-diapausing           02.07.2020
## 3138                  non-diapausing           02.07.2020
## 3139                  non-diapausing           02.07.2020
## 3140                  non-diapausing           02.07.2020
## 3141                  non-diapausing           02.07.2020
## 3142                  non-diapausing           02.07.2020
## 3143                  non-diapausing           02.07.2020
## 3144                  non-diapausing           02.07.2020
## 3145                  non-diapausing           02.07.2020
## 3146                  non-diapausing           02.07.2020
## 3147                  non-diapausing             2.7.2020
## 3148                  non-diapausing             2.7.2020
## 3149                  non-diapausing             2.7.2020
## 3150                  non-diapausing             2.7.2020
## 3151                  non-diapausing             2.7.2020
## 3152                  non-diapausing             2.7.2020
## 3153                  non-diapausing             2.7.2020
## 3154                  non-diapausing             2.7.2020
## 3155                  non-diapausing             2.7.2020
## 3157                  non-diapausing             2.7.2020
## 3158                  non-diapausing             2.7.2020
## 3159                  non-diapausing           02.07.2020
## 3160                  non-diapausing           02.07.2020
## 3162                  non-diapausing           02.07.2020
## 3164                  non-diapausing           02.07.2020
## 3165                  non-diapausing           02.07.2020
## 3167                  non-diapausing           02.07.2020
## 3168                  non-diapausing           02.07.2020
## 3169                  non-diapausing           02.07.2020
## 3170                  non-diapausing           02.07.2020
## 3171                  non-diapausing           02.07.2020
## 3172                  non-diapausing           02.07.2020
## 3175                  non-diapausing           02.07.2020
## 3176                  non-diapausing           02.07.2020
## 3177                  non-diapausing             2.3.2020
## 3178                  non-diapausing             2.3.2020
## 3180                  non-diapausing             2.3.2020
## 3181                  non-diapausing             2.3.2020
## 3182                  non-diapausing             2.5.2020
## 3183                  non-diapausing             2.5.2020
## 3185                  non-diapausing             2.5.2020
## 3186                  non-diapausing             2.5.2020
## 3187                  non-diapausing             2.4.2020
## 3189                  non-diapausing             2.4.2020
## 3190                  non-diapausing             2.4.2020
## 3191                  non-diapausing             2.4.2020
## 3192                  non-diapausing             2.5.2020
## 3193                  non-diapausing             2.5.2020
## 3194                  non-diapausing             2.5.2020
## 3196                  non-diapausing             2.3.2020
## 3197                  non-diapausing             2.3.2020
## 3198                  non-diapausing             2.3.2020
## 3199                  non-diapausing             2.4.2020
## 3200                  non-diapausing             2.4.2020
## 3201                  non-diapausing             2.4.2020
## 3202                  non-diapausing             2.4.2020
## 3203                  non-diapausing             2.4.2020
## 3205                  non-diapausing             2.5.2020
## 3206                  non-diapausing             2.5.2020
## 3207                  non-diapausing             2.5.2020
## 3209                  non-diapausing             2.4.2020
## 3210                  non-diapausing             2.4.2020
## 3211                  non-diapausing             2.3.2020
## 3212                  non-diapausing             2.3.2020
## 3213                  non-diapausing             2.3.2020
## 3214                  non-diapausing             2.3.2020
## 3215                  non-diapausing             2.5.2020
## 3216                  non-diapausing             2.5.2020
## 3218                  non-diapausing             2.5.2020
## 3219                  non-diapausing             2.5.2020
## 3220                  non-diapausing             2.4.2020
## 3221                  non-diapausing             2.4.2020
## 3222                  non-diapausing             2.4.2020
## 3223                  non-diapausing             2.4.2020
## 3224                  non-diapausing             2.4.2020
## 3226                  non-diapausing             2.3.2020
## 3227                  non-diapausing             2.3.2020
## 3229                  non-diapausing             2.3.2020
## 3230                  non-diapausing             2.3.2020
## 3231                  non-diapausing             2.3.2020
## 3232                  non-diapausing             2.3.2020
## 3234                  non-diapausing             2.5.2020
## 3235                  non-diapausing             2.5.2020
## 3236                  non-diapausing             2.5.2020
## 3237                  non-diapausing             2.5.2020
## 3238                  non-diapausing             2.4.2020
## 3239                  non-diapausing             2.4.2020
## 3240                  non-diapausing             2.4.2020
## 3241                  non-diapausing             2.4.2020
## 3242                  non-diapausing             2.4.2020
## 3243                  non-diapausing             2.5.2020
## 3244                  non-diapausing             2.5.2020
## 3246                  non-diapausing             2.5.2020
## 3247                  non-diapausing             2.5.2020
## 3248                  non-diapausing             2.4.2020
## 3249                  non-diapausing             2.4.2020
## 3250                  non-diapausing             2.4.2020
## 3251                  non-diapausing             2.5.2020
## 3252                  non-diapausing             2.5.2020
## 3253                  non-diapausing             2.5.2020
## 3254                  non-diapausing             2.5.2020
## 3255                  non-diapausing             2.5.2020
## 3256                  non-diapausing             2.3.2020
## 3257                  non-diapausing             2.3.2020
## 3258                  non-diapausing             2.3.2020
## 3259                  non-diapausing             2.3.2020
## 3260                  non-diapausing             2.3.2020
## 3261                  non-diapausing             2.3.2020
## 3262                  non-diapausing             2.3.2020
## 3263                  non-diapausing             2.3.2020
## 3264                  non-diapausing             2.3.2020
## 3265                  non-diapausing             2.3.2020
## 3266                  non-diapausing             2.5.2020
## 3267                  non-diapausing             2.5.2020
## 3268                  non-diapausing             2.5.2020
## 3269                  non-diapausing             2.5.2020
## 3270                  non-diapausing             2.5.2020
## 3271                  non-diapausing             2.4.2020
## 3273                  non-diapausing             2.5.2020
## 3274                  non-diapausing             2.5.2020
## 3279                  non-diapausing             2.4.2020
## 3280                  non-diapausing             2.4.2020
## 3281                  non-diapausing             2.5.2020
## 3282                  non-diapausing             2.5.2020
## 3283                  non-diapausing             2.5.2020
## 3285                  non-diapausing             2.5.2020
## 3287                  non-diapausing             2.5.2020
## 3288                  non-diapausing             2.5.2020
## 3289                  non-diapausing             2.5.2020
## 3290                  non-diapausing             2.5.2020
## 3291                  non-diapausing             2.5.2020
## 3292                  non-diapausing             2.5.2020
## 3293                  non-diapausing             2.5.2020
## 3294                  non-diapausing             2.5.2020
## 3295                  non-diapausing             2.5.2020
## 3296                  non-diapausing             2.5.2020
## 3297                  non-diapausing             2.5.2020
## 3300                  non-diapausing             2.5.2020
## 3301                  non-diapausing             2.5.2020
## 3302                  non-diapausing             2.5.2020
## 3303                  non-diapausing             2.5.2020
## 3304                  non-diapausing             2.5.2020
## 3305                  non-diapausing             2.5.2020
## 3306                  non-diapausing             2.5.2020
## 3307                  non-diapausing             2.5.2020
## 3308                  non-diapausing             2.3.2020
## 3309                  non-diapausing             2.3.2020
## 3311                  non-diapausing             2.3.2020
## 3312                  non-diapausing             2.3.2020
## 3313                  non-diapausing             2.3.2020
## 3314                  non-diapausing             2.3.2020
## 3315                  non-diapausing             2.3.2020
## 3316                  non-diapausing             2.4.2020
## 3317                  non-diapausing             2.4.2020
## 3318                  non-diapausing             2.4.2020
## 3319                  non-diapausing             2.4.2020
## 3320                  non-diapausing           02.03.2020
## 3321                  non-diapausing           02.03.2020
## 3322                  non-diapausing           02.03.2020
## 3323                  non-diapausing           02.03.2020
## 3325                  non-diapausing           02.03.2020
## 3327                  non-diapausing           02.05.2020
## 3332                  non-diapausing           02.05.2020
## 3339                  non-diapausing           02.05.2020
## 3340                  non-diapausing           02.04.2020
## 3341                  non-diapausing           02.04.2020
## 3342                  non-diapausing           02.04.2020
## 3343                  non-diapausing           02.04.2020
## 3348                  non-diapausing           02.03.2020
## 3350                  non-diapausing           02.03.2020
## 3351                  non-diapausing           02.03.2020
## 3379                  non-diapausing           02.05.2020
## 3391                  non-diapausing           02.04.2020
## 3394                  non-diapausing           02.04.2020
## 3396                  non-diapausing           02.04.2020
## 3398                  non-diapausing           02.04.2020
## 3399                  non-diapausing           02.04.2020
## 3400                  non-diapausing           02.04.2020
## 3401                  non-diapausing           02.04.2020
## 3402                  non-diapausing           02.04.2020
## 3404                  non-diapausing             2.4.2020
## 3405                  non-diapausing             2.4.2020
## 3406                  non-diapausing             2.4.2020
## 3407                  non-diapausing             2.4.2020
## 3408                  non-diapausing             2.4.2020
## 3409                  non-diapausing             2.4.2020
## 3410                  non-diapausing             2.4.2020
## 3411                  non-diapausing             2.4.2020
## 3412                  non-diapausing             2.4.2020
## 3414                  non-diapausing             2.4.2020
## 3415                  non-diapausing             2.4.2020
## 3418                  non-diapausing             2.4.2020
## 3419                  non-diapausing             2.4.2020
## 3420                  non-diapausing             2.4.2020
## 3421                  non-diapausing             2.4.2020
## 3422                  non-diapausing             2.4.2020
## 3423                  non-diapausing             2.4.2020
## 3424                  non-diapausing             2.4.2020
## 3425                  non-diapausing             2.4.2020
## 3426                  non-diapausing             2.4.2020
## 3428                  non-diapausing             2.4.2020
## 3429                  non-diapausing             2.4.2020
## 3430                  non-diapausing             2.4.2020
## 3431                  non-diapausing             2.4.2020
## 3432                  non-diapausing             2.4.2020
## 3433                  non-diapausing             2.4.2020
## 3434                  non-diapausing             2.4.2020
## 3435                  non-diapausing             2.4.2020
## 3436                  non-diapausing             2.4.2020
## 3437                  non-diapausing             2.4.2020
## 3438                  non-diapausing             2.4.2020
## 3439                  non-diapausing             2.4.2020
## 3440                  non-diapausing             2.4.2020
## 3441                  non-diapausing             2.4.2020
## 3442                  non-diapausing             2.4.2020
## 3443                  non-diapausing             2.4.2020
## 3444                  non-diapausing             2.4.2020
## 3445                  non-diapausing             2.4.2020
## 3448                  non-diapausing             2.4.2020
## 3451                  non-diapausing             2.4.2020
## 3452                  non-diapausing             2.4.2020
## 3453                  non-diapausing             2.4.2020
## 3454                  non-diapausing             2.4.2020
## 3461                  non-diapausing           02.04.2020
## 3462                  non-diapausing           02.04.2020
## 3466                  non-diapausing           02.04.2020
## 3473                  non-diapausing           02.04.2020
## 3476                  non-diapausing           10.02.2019
## 3477                  non-diapausing           10.02.2019
## 3478                  non-diapausing           10.02.2019
## 3479                  non-diapausing           10.02.2019
## 3480                  non-diapausing           10.02.2019
## 3481                  non-diapausing           10.02.2019
## 3482                  non-diapausing           10.02.2019
## 3483                  non-diapausing           10.02.2019
## 3485                  non-diapausing           10.02.2019
## 3486                  non-diapausing           10.02.2019
## 3487                  non-diapausing           10.02.2019
## 3488                  non-diapausing           10.02.2019
## 3489                  non-diapausing           10.02.2019
## 3492                  non-diapausing           10.02.2019
## 3493                  non-diapausing           10.02.2019
## 3496                  non-diapausing           10.02.2019
## 3498                  non-diapausing           10.02.2019
## 3499                  non-diapausing           10.02.2019
## 3500                  non-diapausing           10.02.2019
## 3501                  non-diapausing           10.02.2019
## 3502                  non-diapausing           10.02.2019
## 3503                                           10.04.2019
## 3504                                           10.04.2019
## 3505                                           10.04.2019
## 3506                                           10.04.2019
## 3507                                           10.04.2019
## 3508                                           10.04.2019
## 3509                                           10.04.2019
## 3510                                           10.04.2019
## 3511                                           10.04.2019
## 3513                                           10.04.2019
## 3514                                           10.04.2019
## 3515                                           10.03.2019
## 3516                                           10.03.2019
## 3517                                           10.03.2019
## 3518                                           10.03.2019
## 3519                                           10.03.2019
## 3520                                           10.03.2019
## 3521                                           10.03.2019
## 3522                                           10.03.2019
## 3523                                           10.03.2019
## 3524                                           10.03.2019
## 3525                                           10.03.2019
## 3526                                           10.03.2019
## 3528                                           10.03.2019
## 3529                                           10.02.2019
## 3530                                           10.02.2019
## 3531                                           10.02.2019
## 3532                                           10.02.2019
## 3533                                           10.02.2019
## 3534                                           10.02.2019
## 3535                                           10.02.2019
## 3536                                           10.02.2019
## 3537                                           10.02.2019
## 3538                                           10.02.2019
## 3539                                           10.02.2019
## 3540                                           10.02.2019
## 3541                                           10.05.2019
## 3542                                           10.05.2019
## 3543                                           10.05.2019
## 3544                                           10.05.2019
## 3545                                           10.05.2019
## 3546                                           10.05.2019
## 3547                                           10.05.2019
## 3549                                           10.05.2019
## 3550                                           10.05.2019
## 3551                                           10.05.2019
## 3552                                           10.05.2019
## 3553                                           10.05.2019
## 3554                                           10.05.2019
## 3555                                           10.05.2019
## 3556                                           10.05.2019
## 3557                                           10.05.2019
## 3558                                           10.05.2019
## 3559                                           10.05.2019
## 3560                                           10.05.2019
## 3561                                           10.05.2019
## 3562                                           10.02.2019
## 3563                                           10.02.2019
## 3564                                           10.02.2019
## 3565                                           10.02.2019
## 3566                                           12.15.2016
## 3570                                           10.04.2019
## 3571                       tips torn           10.04.2019
## 3572                       tips torn           10.04.2019
## 3573                                           10.04.2019
## 3574                                           10.04.2019
## 3575                                           10.04.2019
## 3576                       tips torn           10.04.2019
## 3577                                           10.02.2019
## 3578                       tips torn           10.02.2019
## 3579                        d1 peach           10.02.2019
## 3581                                           10.02.2019
## 3583                                           10.04.2019
## 3584                       tips torn           10.04.2019
## 3585                       tips torn           10.04.2019
## 3586                       tips torn           10.03.2019
## 3587                                           10.03.2019
## 3588                                           10.03.2019
## 3589                                           10.03.2019
## 3590                                           10.03.2019
## 3591                       tips torn           10.03.2019
## 3592                      diapausing           05.21.2019
## 3594                      diapausing           05.21.2019
## 3595                      diapausing           05.21.2019
## 3596                      diapausing           05.21.2019
## 3597                      diapausing           05.21.2019
## 3598                      diapausing           05.21.2019
## 3599                      diapausing           05.21.2019
## 3600                      diapausing           05.21.2019
## 3601                      diapausing           05.21.2019
## 3602                      diapausing           05.21.2019
## 3603                      diapausing           05.21.2019
## 3604                      diapausing           05.21.2019
## 3605                      diapausing           05.21.2019
## 3606                      diapausing           05.21.2019
## 3607                      diapausing           05.21.2019
## 3608                      diapausing           05.21.2019
## 3609                      diapausing           05.21.2019
## 3610                      diapausing           05.21.2019
## 3611                      diapausing           05.21.2019
## 3612                      diapausing           05.21.2019
## 3613                      diapausing           05.21.2019
## 3614                      diapausing           05.21.2019
## 3615                      diapausing           05.21.2019
## 3616                      diapausing           05.21.2019
## 3617                      diapausing           05.21.2019
## 3618                      diapausing           05.21.2019
## 3619                      diapausing           05.21.2019
## 3620                      diapausing           05.21.2019
## 3621                      diapausing           05.21.2019
## 3622                      diapausing           05.21.2019
## 3623                      diapausing           05.21.2019
## 3624                      diapausing           05.21.2019
## 3625                      diapausing           05.21.2019
## 3626                      diapausing           05.21.2019
## 3627                      diapausing           05.21.2019
## 3628                      diapausing           05.21.2019
## 3629                      diapausing           05.21.2019
## 3630                      diapausing           05.21.2019
## 3631                      diapausing           05.21.2019
## 3632                      diapausing           05.21.2019
## 3633                      diapausing           05.21.2019
## 3634                      diapausing           05.21.2019
## 3635                      diapausing           05.21.2019
## 3636                      diapausing           05.21.2019
## 3637                      diapausing           05.21.2019
## 3638                      diapausing           05.21.2019
## 3639                      diapausing           05.21.2019
## 3640                      diapausing           05.21.2019
## 3641                      diapausing           05.21.2019
## 3642                      diapausing           05.21.2019
## 3643                      diapausing           05.21.2019
## 3644                      diapausing           05.21.2019
## 3645                      diapausing           05.21.2019
## 3646                                           05.21.2019
## 3647                                           05.21.2019
## 3648                                           05.21.2019
## 3649                                           05.21.2019
## 3650                                           05.21.2019
## 3651                                           05.21.2019
## 3652                                           05.21.2019
## 3653                                           05.21.2019
## 3655                                           05.21.2019
## 3656                                           05.21.2019
## 3658                                           05.21.2019
## 3659                                           05.21.2019
## 3660                                           05.21.2019
## 3661                                           05.21.2019
## 3662                                           05.21.2019
## 3663                                           05.21.2019
## 3664                                           05.21.2019
## 3665                                           05.21.2019
## 3666                                           05.21.2019
## 3667                                           05.21.2019
## 3668                                           05.21.2019
## 3669                                           05.21.2019
## 3670                                           05.21.2019
## 3671                                           05.21.2019
## 3672                                           05.21.2019
## 3673                                           05.21.2019
## 3674                                           05.21.2019
## 3675                                           05.21.2019
## 3676                                           05.21.2019
## 3677                                           05.21.2019
## 3678                                           05.21.2019
## 3680                                           05.21.2019
## 3681                                           05.21.2019
## 3682                                           05.21.2019
## 3683                                           05.21.2019
## 3684                                           05.21.2019
## 3685                                           05.21.2019
## 3686                                           05.21.2019
## 3687                                           05.21.2019
## 3688                                           05.21.2019
## 3689                                           05.21.2019
## 3690                                           05.21.2019
## 3691                                           05.21.2019
## 3692                                           05.21.2019
## 3693                                           05.21.2019
## 3694                                           05.21.2019
## 3695                                           05.21.2019
## 3696                                           05.21.2019
## 3698                                           05.21.2019
##                                  notes sex_binom pophost_binom           date
## 1                                             -1             1     April/2013
## 2                                             -1             1     April/2013
## 3                                             -1             1     April/2013
## 4                                             -1             1     April/2013
## 5                                             -1             1     April/2013
## 6                                             -1             1     April/2013
## 7                                             -1             1     April/2013
## 8                                             -1             1     April/2013
## 9                                             -1             1     April/2013
## 10                                             1             1     April/2013
## 11                                             1             1     April/2013
## 12                                            -1             1     April/2013
## 13                                            -1             1     April/2013
## 14                                            -1             1     April/2013
## 16                                            -1             1     April/2013
## 17                                            -1             1     April/2013
## 18                                             1             1     April/2013
## 19                                            -1             1     April/2013
## 20                                             1             1     April/2013
## 21                                             1             1     April/2013
## 22                                            -1             1     April/2013
## 23                                             1             1     April/2013
## 24                                            -1             1     April/2013
## 25                                             1             1     April/2013
## 26                                            -1             1     April/2013
## 104                                           -1            -1     April/2013
## 105                                            1            -1     April/2013
## 106                                           -1            -1     April/2013
## 107                                            1            -1     April/2013
## 109                                            1            -1     April/2013
## 110                                           -1            -1     April/2013
## 111                                           -1            -1     April/2013
## 112                                           -1            -1     April/2013
## 114                                           -1            -1     April/2013
## 141                                           -1            -1     April/2013
## 142                                           -1            -1     April/2013
## 143                                            1            -1     April/2013
## 144                                           -1            -1     April/2013
## 146                                           -1            -1     April/2013
## 147                                            1            -1     April/2013
## 148                                           -1            -1     April/2013
## 149                                           -1            -1     April/2013
## 150                                           -1            -1     April/2013
## 152                                           -1            -1     April/2013
## 153                                           -1            -1     April/2013
## 202                                           -1             1     April/2013
## 203                                           -1             1     April/2013
## 204                                           -1             1     April/2013
## 205                                            1             1     April/2013
## 206                                           -1             1     April/2013
## 207                                           -1             1     April/2013
## 208                                            1             1     April/2013
## 209                                           -1             1     April/2013
## 210                                           -1             1     April/2013
## 211                                           -1             1     April/2013
## 213                                            1             1     April/2013
## 214                                           -1             1     April/2013
## 215                                            1             1     April/2013
## 217                                           -1             1     April/2013
## 219                                            1             1     April/2013
## 221                                           -1             1     April/2013
## 222                                           -1             1     April/2013
## 223                                           -1             1     April/2013
## 224                                           -1             1     April/2013
## 225                                           -1             1     April/2013
## 226                                            1             1     April/2013
## 228                                           -1             1     April/2013
## 229                                           -1             1     April/2013
## 230                                           -1             1     April/2013
## 837                                           -1            -1     April/2014
## 839                                           -1            -1     April/2014
## 840                                            1            -1     April/2014
## 841                                            1            -1     April/2014
## 844                                           -1            -1     April/2014
## 845                                           -1            -1     April/2014
## 847                                            1             1     April/2014
## 848                                           -1             1     April/2014
## 849                                           -1             1     April/2014
## 850                                            1             1     April/2014
## 851                                            1             1     April/2014
## 852                                           -1             1     April/2014
## 853                                            1             1     April/2014
## 854                                           -1             1     April/2014
## 856                                           -1             1     April/2014
## 857                                            1             1     April/2014
## 858                                           -1             1     April/2014
## 859                                           -1             1     April/2014
## 860                                            1             1     April/2014
## 861                                            1             1     April/2014
## 862                                           -1             1     April/2014
## 863                                            1             1     April/2014
## 865                                           -1             1     April/2014
## 866                                            1             1     April/2014
## 867                                           -1             1     April/2014
## 868                                            1             1     April/2014
## 870                                            1             1     April/2014
## 871                                           -1             1     April/2014
## 872                                            1             1     April/2014
## 873                                            1             1     April/2014
## 874                                            1             1     April/2014
## 875                                           -1             1     April/2014
## 877                                            1             1     April/2014
## 878                                            1             1     April/2014
## 879                                           -1             1     April/2014
## 880                                            1             1     April/2014
## 881                                           -1             1     April/2014
## 882                                            1             1     April/2014
## 883                                            1             1     April/2014
## 884                                           -1             1     April/2014
## 886                                            1             1     April/2014
## 887                                           -1             1     April/2014
## 888                                            1             1     April/2014
## 889                                            1             1     April/2014
## 890                                            1             1     April/2014
## 905                                            1            -1     April/2014
## 907                                           -1            -1     April/2014
## 911                                            1            -1     April/2014
## 912                                           -1            -1     April/2014
## 915                                            1            -1     April/2014
## 917                                            1            -1     April/2014
## 918                                            1            -1     April/2014
## 975                                            1            -1     April/2015
## 978                                           -1            -1     April/2015
## 986                                            1            -1     April/2015
## 990                                           -1            -1     April/2015
## 993                                           -1            -1     April/2015
## 995                                           -1            -1     April/2015
## 996                                            1            -1     April/2015
## 997                                           -1            -1     April/2015
## 1001                                          -1            -1     April/2015
## 1012                                           1            -1     April/2015
## 1017                                          -1            -1     April/2015
## 1023                                          -1             1     April/2015
## 1024                                          -1             1     April/2015
## 1025                                           1             1     April/2015
## 1026                                          -1             1     April/2015
## 1027                                           1             1     April/2015
## 1028                                          -1             1     April/2015
## 1029                                          -1             1     April/2015
## 1030                                           1             1     April/2015
## 1031                                          -1             1     April/2015
## 1032                                           1             1     April/2015
## 1033                                          -1             1     April/2015
## 1034                                          -1             1     April/2015
## 1035                                          -1             1     April/2015
## 1036                                           1             1     April/2015
## 1037                                          -1             1     April/2015
## 1038                                           1             1     April/2015
## 1039                                           1             1     April/2015
## 1040                                           1             1     April/2015
## 1041                                           1             1     April/2015
## 1042                                          -1             1     April/2015
## 1043                                           1             1     April/2015
## 1044                                          -1             1     April/2015
## 1045                                          -1             1     April/2015
## 1046                                           1             1     April/2015
## 1047                                           1             1     April/2015
## 1048                                           1             1     April/2015
## 1049                                          -1             1     April/2015
## 1050                                           1             1     April/2015
## 1051                                          -1             1     April/2015
## 1052                                          -1             1     April/2015
## 1054                                          -1             1     April/2015
## 1055                                          -1             1     April/2015
## 1056                                           1             1     April/2015
## 1057                                           1             1     April/2015
## 1058                                           1             1     April/2015
## 1059                                           1             1     April/2015
## 1060                                           1             1     April/2015
## 1061                                          -1             1     April/2015
## 1062                                           1             1     April/2015
## 1063                                          -1             1     April/2015
## 1064                                          -1             1     April/2015
## 1065                                           1             1     April/2015
## 1066                                           1             1     April/2015
## 1067                                          -1             1     April/2015
## 1068                                           1             1     April/2015
## 1069                                           1             1     April/2015
## 1070                                          -1             1     April/2015
## 1071                                           1             1     April/2015
## 1072                                          -1             1     April/2015
## 1073                                           1             1     April/2015
## 1074                                          -1             1     April/2015
## 1075                                          -1             1     April/2015
## 1076                                           1             1     April/2015
## 1077                                           1             1     April/2015
## 1078                                          -1             1     April/2015
## 1079                                          -1             1     April/2015
## 1080                                           1             1     April/2015
## 1081                                           1             1     April/2015
## 1082                                           1             1     April/2015
## 1083                                          -1             1     April/2015
## 1084                                          -1             1     April/2015
## 1085                                          -1             1     April/2015
## 1086                                           1             1     April/2015
## 1088                                          -1             1     April/2015
## 1089                                          -1             1     April/2015
## 1090                                          -1             1     April/2015
## 1091                                           1             1     April/2015
## 1092                                          -1             1     April/2015
## 1093                                          -1             1     April/2015
## 1094                                           1             1     April/2015
## 1095                                          -1             1     April/2015
## 1096                                           1             1     April/2015
## 1097                                           1             1     April/2015
## 1098                                           1             1     April/2015
## 1099                                          -1             1     April/2015
## 1100                                           1             1     April/2015
## 1101                                          -1             1     April/2015
## 1103                                           1             1     April/2015
## 1104                                           1             1     April/2015
## 1105                                           1             1     April/2015
## 1106                                          -1             1     April/2015
## 1107                                          -1             1     April/2015
## 1108                                          -1             1     April/2015
## 1110                                          -1             1     April/2015
## 1111                                          -1             1     April/2015
## 1112                                          -1             1     April/2015
## 1117                                           1            -1     April/2015
## 1118                                           1            -1     April/2015
## 1119                                           1            -1     April/2015
## 1121                                           1            -1     April/2015
## 1122                                           1            -1     April/2015
## 1124                                           1            -1     April/2015
## 1125                                          -1             1  December/2016
## 1126                                           1             1  December/2016
## 1127                                          -1             1  December/2016
## 1128                                          -1             1  December/2016
## 1129                                           1             1  December/2016
## 1130                                           1             1  December/2016
## 1131                                           1             1  December/2016
## 1132                                           1             1  December/2016
## 1133                                           1             1  December/2016
## 1134                                           1             1  December/2016
## 1135                                          -1             1  December/2016
## 1136                                           1             1  December/2016
## 1137                                          -1             1  December/2016
## 1138                                          -1             1  December/2016
## 1142                                           1             1  December/2016
## 1143                                           1             1  December/2016
## 1144                                          -1             1  December/2016
## 1146                                           1             1  December/2016
## 1148                                          -1             1  December/2016
## 1155                                           1             1  December/2016
## 1156                                           1             1  December/2016
## 1158                                           1             1  December/2016
## 1160                                          -1             1  December/2016
## 1161                                          -1             1  December/2016
## 1162                                           1             1  December/2016
## 1164                                           1             1  December/2016
## 1166                                           1             1  December/2016
## 1167                                           1             1  December/2016
## 1170                                           1             1  December/2016
## 1174                         tips torn         1             1  December/2016
## 1176                                          -1             1  December/2016
## 1177                         tips torn        -1             1  December/2016
## 1178                         tips torn        -1             1  December/2016
## 1179                         tips torn        -1             1  December/2016
## 1180                                           1             1  December/2016
## 1181                                          -1             1  December/2016
## 1182                                          -1             1  December/2016
## 1185                                          -1             1  December/2016
## 1186                                          -1             1  December/2016
## 1188                                           1             1  December/2016
## 1189                                          -1             1  December/2016
## 1191                                          -1             1  December/2016
## 1192                                          -1             1  December/2016
## 1193                                          -1             1  December/2016
## 1194                                          -1             1  December/2016
## 1203                                           1            -1  December/2016
## 1204                                           1            -1  December/2016
## 1205                                           1            -1  December/2016
## 1208                                          -1            -1  December/2016
## 1209                                          -1            -1  December/2016
## 1210                                          -1            -1  December/2016
## 1213                                           1            -1  December/2016
## 1215                                          -1            -1  December/2016
## 1217                                          -1            -1  December/2016
## 1219                                           1            -1  December/2016
## 1221                                           1            -1  December/2016
## 1222                                           1            -1  December/2016
## 1225                                          -1            -1  December/2016
## 1228                                           1            -1  December/2016
## 1230                                          -1            -1  December/2016
## 1235                                           1            -1  December/2016
## 1238                                           1            -1  December/2016
## 1239                                          -1            -1  December/2016
## 1241                                          -1            -1  December/2016
## 1246                                          -1            -1  December/2016
## 1247                                          -1            -1  December/2016
## 1248                                           1            -1  December/2016
## 1249                                          -1            -1  December/2016
## 1250                                          -1            -1  December/2016
## 1252                                          -1            -1  December/2016
## 1253                                          -1            -1  December/2016
## 1255                                           1            -1  December/2016
## 1257                                           1            -1  December/2016
## 1258                                          -1            -1  December/2016
## 1268                                          -1             1  December/2016
## 1272                                          -1             1  December/2016
## 1276                                           1             1  December/2016
## 1281                                           1             1  December/2016
## 1285                                          -1             1  December/2016
## 1289                                          -1             1  December/2016
## 1290                                          -1             1  December/2016
## 1291                         tips torn         1             1  December/2016
## 1292                                          -1             1  December/2016
## 1294                                          -1             1  December/2016
## 1295                                           1             1  December/2016
## 1296                                           1             1  December/2016
## 1297                                           1             1  December/2016
## 1298                                           1             1  December/2016
## 1299                                           1             1  December/2016
## 1300                                           1             1  December/2016
## 1301                                          -1             1  December/2016
## 1302                                           1             1  December/2016
## 1303                                           1             1  December/2016
## 1304                                           1             1  December/2016
## 1306                                          -1             1  December/2016
## 1307                                          -1             1  December/2016
## 1308                                           1             1  December/2016
## 1309                                          -1             1  December/2016
## 1310                                          -1             1  December/2016
## 1311                                           1             1  December/2016
## 1312                                           1             1  December/2016
## 1313                                           1             1  December/2016
## 1315                                          -1             1  December/2016
## 1316                                          -1             1  December/2016
## 1317                                           1             1  December/2016
## 1318                                          -1             1  December/2016
## 1319                                          -1             1  December/2016
## 1320                                           1             1  December/2016
## 1321                                           1             1  December/2016
## 1322                                           1             1  December/2016
## 1323                                           1             1  December/2016
## 1324                                           1             1  December/2016
## 1325                                          -1             1  December/2016
## 1326                                           1             1  December/2016
## 1327                                          -1             1  December/2016
## 1328                                          -1             1  December/2016
## 1329                                           1             1  December/2016
## 1330                                           1             1  December/2016
## 1331                                          -1             1  December/2016
## 1332                                           1             1  December/2016
## 1333                                          -1             1  December/2016
## 1334                                          -1             1  December/2016
## 1335                                          -1             1  December/2016
## 1336                                          -1             1  December/2016
## 1337                                          -1             1  December/2016
## 1338                                          -1             1  December/2016
## 1340                                          -1            -1  December/2016
## 1341                                          -1            -1  December/2016
## 1343                                           1            -1  December/2016
## 1344                                          -1            -1  December/2016
## 1346                                          -1            -1  December/2016
## 1347                                           1            -1  December/2016
## 1349                                           1            -1  December/2016
## 1354                                           1            -1  December/2016
## 1355                                          -1            -1  December/2016
## 1356                                           1            -1  December/2016
## 1357                                           1            -1  December/2016
## 1358                                           1            -1  December/2016
## 1361                                          -1            -1  December/2016
## 1364                                          -1            -1  December/2016
## 1365                                          -1            -1  December/2016
## 1367                                           1            -1  December/2016
## 1368                                          -1            -1  December/2016
## 1369                                          -1            -1  December/2016
## 1370                                          -1            -1  December/2016
## 1371                                          -1            -1  December/2016
## 1372                                          -1            -1  December/2016
## 1375                                          -1            -1  December/2016
## 1545                                          -1             1    August/2017
## 1546                                          -1             1    August/2017
## 1547                                           1             1    August/2017
## 1549                                          -1             1    August/2017
## 1550                                          -1             1    August/2017
## 1552                                           1             1    August/2017
## 1553                                           1             1    August/2017
## 1554                                          -1             1    August/2017
## 1555                                          -1             1    August/2017
## 1556                                          -1             1    August/2017
## 1557                                           1             1    August/2017
## 1558                                           1             1    August/2017
## 1559                                          -1             1    August/2017
## 1560                                          -1             1    August/2017
## 1562                                           1             1    August/2017
## 1563                                           1             1    August/2017
## 1565                                           1             1    August/2017
## 1566                                           1             1    August/2017
## 1567                                          -1             1    August/2017
## 1568                                          -1             1    August/2017
## 1569                                          -1             1    August/2017
## 1571                                           1             1    August/2017
## 1572                                           1             1    August/2017
## 1573                                          -1             1    August/2017
## 1574                                           1             1    August/2017
## 1575                                           1             1    August/2017
## 1576                                           1             1    August/2017
## 1577                                          -1             1    August/2017
## 1578                                          -1             1    August/2017
## 1579                                          -1             1    August/2017
## 1580                                          -1             1    August/2017
## 1581                                           1             1    August/2017
## 1582                                           1             1    August/2017
## 1583                                          -1             1    August/2017
## 1584                                          -1             1    August/2017
## 1585                                           1             1    August/2017
## 1586                                          -1             1    August/2017
## 1587                                           1             1    August/2017
## 1589                                          -1             1    August/2017
## 1590                                           1             1    August/2017
## 1591                                          -1             1    August/2017
## 1592                                          -1             1    August/2017
## 1593                                           1             1    August/2017
## 1594                                          -1             1    August/2017
## 1595                                          -1             1    August/2017
## 1596                                           1             1    August/2017
## 1597                                          -1             1    August/2017
## 1598                                           1             1    August/2017
## 1599                                           1             1    August/2017
## 1600                                          -1             1    August/2017
## 1601                                           1             1    August/2017
## 1602                                           1             1    August/2017
## 1603                                          -1             1    August/2017
## 1605                       teal marked        -1             1    August/2017
## 1607                       teal marked         1             1    August/2017
## 1608                                          -1             1    August/2017
## 1610                                           1             1    August/2017
## 1611                                           1             1    August/2017
## 1612                                           1             1    August/2017
## 1613                       teal marked        -1             1    August/2017
## 1614                                          -1             1    August/2017
## 1615                                          -1             1    August/2017
## 1616                                           1             1    August/2017
## 1617                                          -1             1    August/2017
## 1618                                           1             1    August/2017
## 1620                                          -1             1    August/2017
## 1621                                          -1             1    August/2017
## 1622                       teal marked        -1             1    August/2017
## 1624                                          -1             1    August/2017
## 1625                                          -1             1    August/2017
## 1626                                           1             1    August/2017
## 1627                                          -1             1    August/2017
## 1628                                          -1             1    August/2017
## 1629                                           1             1    August/2017
## 1630                                          -1             1    August/2017
## 1631                                          -1             1    August/2017
## 1632                                          -1             1    August/2017
## 1634                       teal marked        -1             1    August/2017
## 1635                                           1             1    August/2017
## 1636                                           1             1    August/2017
## 1641                       teal marked         1             1    August/2017
## 1642                       teal marked         1             1    August/2017
## 1643                                          -1             1    August/2017
## 1644                       teal marked        -1             1    August/2017
## 1645                                           1             1    August/2017
## 1646                                           1             1    August/2017
## 1647                       teal marked        -1             1    August/2017
## 1648                                           1             1    August/2017
## 1651                       teal marked        -1             1    August/2017
## 1652                                           1             1    August/2017
## 1654                                          -1             1    August/2017
## 1655                                           1             1    August/2017
## 1656                       teal marked         1             1    August/2017
## 1657                       teal marked        -1             1    August/2017
## 1658                       teal marked         1             1    August/2017
## 1659                                          -1             1    August/2017
## 1660                                           1             1    August/2017
## 1661                                           1             1    August/2017
## 1662                       teal marked         1             1    August/2017
## 1663                                           1             1    August/2017
## 1664                                          -1             1    August/2017
## 1665                                           1             1    August/2017
## 1666                                           1             1    August/2017
## 1667                                           1             1    August/2017
## 1668                                          -1             1    August/2017
## 1669                                          -1             1    August/2017
## 1670                                           1             1    August/2017
## 1671                                          -1             1    August/2017
## 1672                                          -1             1    August/2017
## 1673                                          -1             1    August/2017
## 1674                                          -1             1    August/2017
## 1675                                          -1             1    August/2017
## 1676                                          -1             1    August/2017
## 1677                                           1             1    August/2017
## 1678                                           1             1    August/2017
## 1679                                          -1             1    August/2017
## 1680                                          -1             1    August/2017
## 1681                                           1             1    August/2017
## 1682                                          -1             1    August/2017
## 1683                                           1             1    August/2017
## 1684                                          -1             1    August/2017
## 1685                                           1             1    August/2017
## 1686                                          -1             1    August/2017
## 1687                                          -1             1    August/2017
## 1688                                           1             1    August/2017
## 1689                                          -1             1    August/2017
## 1690                                          -1             1    August/2017
## 1691                                           1             1    August/2017
## 1692                                           1             1    August/2017
## 1693                                          -1             1    August/2017
## 1694                                           1             1    August/2017
## 1695                                          -1             1    August/2017
## 1696                                           1             1    August/2017
## 1697                                           1             1    August/2017
## 1698                                           1             1    August/2017
## 1699                                           1             1    August/2017
## 1700                                          -1             1    August/2017
## 1701                                           1             1    August/2017
## 1702                                          -1             1    August/2017
## 1703                                          -1             1    August/2017
## 1704                                          -1             1    August/2017
## 1705                                           1             1    August/2017
## 1706                                           1             1    August/2017
## 1707                                          -1             1    August/2017
## 1708                                           1             1    August/2017
## 1709                                           1             1    August/2017
## 1710                                           1             1    August/2017
## 1711                                           1             1    August/2017
## 1712                                           1             1    August/2017
## 1713                                          -1             1    August/2017
## 1714                                           1             1    August/2017
## 1715                                           1             1    August/2017
## 1716                                           1             1    August/2017
## 1717                                           1             1    August/2017
## 1718                                           1             1    August/2017
## 1719                                          -1             1    August/2017
## 1720                                          -1             1    August/2017
## 1721                                          -1             1    August/2017
## 1722                                           1             1    August/2017
## 1723                                          -1             1    August/2017
## 1724                                          -1             1    August/2017
## 1725                                           1             1    August/2017
## 1726                                          -1             1    August/2017
## 1727                                           1             1    August/2017
## 1728                                          -1             1    August/2017
## 1729                                          -1             1    August/2017
## 1730                                           1             1    August/2017
## 1731                                          -1             1    August/2017
## 1732                                          -1             1    August/2017
## 1733                                          -1             1    August/2017
## 1734                                           1            -1    August/2017
## 1735                                          -1            -1    August/2017
## 1736                                          -1            -1    August/2017
## 1738                                           1            -1    August/2017
## 1739                                          -1            -1    August/2017
## 1740                                          -1            -1    August/2017
## 1741                                          -1            -1    August/2017
## 1742                                           1            -1    August/2017
## 1743                                          -1            -1    August/2017
## 1744                                           1            -1    August/2017
## 1746                                          -1            -1    August/2017
## 1747                                          -1            -1    August/2017
## 1748                                          -1            -1    August/2017
## 1749                                           1            -1    August/2017
## 1750                                          -1            -1    August/2017
## 1751                                          -1            -1    August/2017
## 1752                                           1            -1    August/2017
## 1753                                           1            -1    August/2017
## 1754                                           1            -1    August/2017
## 1755                                           1            -1    August/2017
## 1758                                           1            -1    August/2017
## 1759                                           1            -1    August/2017
## 1760                                          -1            -1    August/2017
## 1761                                          -1            -1    August/2017
## 1762                                           1            -1    August/2017
## 1763                                           1            -1    August/2017
## 1764                                          -1            -1    August/2017
## 1765                                          -1            -1    August/2017
## 1766                                          -1            -1    August/2017
## 1768                                          -1            -1    August/2017
## 1769                                          -1            -1    August/2017
## 1770                                           1            -1    August/2017
## 1771                                          -1            -1    August/2017
## 1772                                           1            -1    August/2017
## 1774                                          -1            -1    August/2017
## 1775                                           1            -1    August/2017
## 1776                                           1            -1    August/2017
## 1779                                          -1            -1    August/2017
## 1780                                           1            -1    August/2017
## 1782                                          -1            -1    August/2017
## 1785                                           1            -1    August/2017
## 1786                                          -1            -1    August/2017
## 1788                                          -1            -1    August/2017
## 1789                                          -1            -1    August/2017
## 1790                                           1            -1    August/2017
## 1791                                          -1            -1    August/2017
## 1793                                          -1            -1    August/2017
## 1800                                          -1            -1    August/2017
## 1802                                          -1            -1    August/2017
## 1805                                          -1            -1    August/2017
## 1806                                           1            -1    August/2017
## 1807                                           1            -1    August/2017
## 1808                                           1            -1    August/2017
## 1809                                          -1            -1    August/2017
## 1810                                           1            -1    August/2017
## 1811                                           1            -1    August/2017
## 1812                                           1            -1    August/2017
## 1813                                          -1            -1    August/2017
## 1814                                          -1            -1    August/2017
## 1815                                           1            -1    August/2017
## 1816                                          -1            -1    August/2017
## 1817                                          -1            -1    August/2017
## 1819                                          -1            -1    August/2017
## 1821                                           1            -1    August/2017
## 1822                                          -1            -1    August/2017
## 1823                                           1            -1    August/2017
## 1824                                           1            -1    August/2017
## 1826                                          -1             1    August/2017
## 1827                                           1             1    August/2017
## 1828                                           1             1    August/2017
## 1829                                          -1             1    August/2017
## 1831                                          -1             1    August/2017
## 1832                                           1             1    August/2017
## 1833                                          -1             1    August/2017
## 1834                                           1             1    August/2017
## 1835                                          -1             1    August/2017
## 1836                                          -1             1    August/2017
## 1837                                          -1             1    August/2017
## 1838                                           1             1    August/2017
## 1839                                           1             1    August/2017
## 1840                                           1             1    August/2017
## 1842                                           1             1    August/2017
## 1844                                          -1             1    August/2017
## 1845                                           1             1    August/2017
## 1846                                          -1             1    August/2017
## 1847                                          -1             1    August/2017
## 1848                                          -1             1    August/2017
## 1849                                           1             1    August/2017
## 1850                                          -1             1    August/2017
## 1852                                           1             1    August/2017
## 1853                                          -1             1    August/2017
## 1854                                          -1             1    August/2017
## 1855                                          -1             1    August/2017
## 1856                                           1             1    August/2017
## 1857                                          -1             1    August/2017
## 1858                                           1             1    August/2017
## 1859                                          -1             1    August/2017
## 1862                                          -1             1    August/2017
## 1863                                           1             1    August/2017
## 1864                                           1             1    August/2017
## 1867                                          -1             1    August/2017
## 1868                                          -1             1    August/2017
## 1871                                          -1             1    August/2017
## 1874                                           1             1    August/2017
## 1876                                          -1             1    August/2017
## 1878                                           1             1    August/2017
## 1879                                          -1             1    August/2017
## 1881                                          -1             1    August/2017
## 1882                                          -1             1    August/2017
## 1884                                           1             1    August/2017
## 1885                                          -1             1    August/2017
## 1887                                           1             1    August/2017
## 1892                                          -1             1    August/2017
## 1894                                          -1             1    August/2017
## 1895                                          -1             1    August/2017
## 1896                                          -1             1    August/2017
## 1897                                          -1             1    August/2017
## 1898                                           1             1    August/2017
## 1901                                           1             1    August/2017
## 1905                                          -1             1    August/2017
## 1907                                          -1             1    August/2017
## 1912                                          -1             1    August/2017
## 1914                                          -1             1    August/2017
## 1915                                          -1             1    August/2017
## 1917                                          -1             1    August/2017
## 1918                                           1             1    August/2017
## 1922                                          -1             1    August/2017
## 1923                                           1             1    August/2017
## 1924                                          -1             1    August/2017
## 1925                                          -1             1    August/2017
## 1927                                          -1             1    August/2017
## 1928                                           1             1    August/2017
## 1929                                           1             1    August/2017
## 1930                                          -1             1    August/2017
## 1933                                           1             1    August/2017
## 1935                                           1             1    August/2017
## 1936                                          -1             1    August/2017
## 1937                                          -1             1    August/2017
## 1938                                          -1             1    August/2017
## 1939                                          -1             1    August/2017
## 1941                                          -1             1    August/2017
## 1942                                           1             1    August/2017
## 1944                                          -1             1    August/2017
## 1945                                           1             1    August/2017
## 1946                                          -1             1    August/2017
## 1947                                          -1             1    August/2017
## 1948                                           1             1    August/2017
## 1949                                          -1             1    August/2017
## 1952                                          -1             1    August/2017
## 1953                                          -1             1    August/2017
## 1955                                          -1             1    August/2017
## 1956                                           1             1    August/2017
## 1958                                          -1             1    August/2017
## 1959                                           1             1    August/2017
## 1960                                          -1             1    August/2017
## 1963                                          -1             1    August/2017
## 1964                                          -1             1    August/2017
## 1965                                          -1             1    August/2017
## 1973                                           1             1    August/2017
## 1975                                          -1             1 September/2018
## 1976                                          -1             1 September/2018
## 1977                                          -1             1 September/2018
## 1978                                           1             1 September/2018
## 1979                                           1             1 September/2018
## 1980                                          -1             1 September/2018
## 1981                                          -1             1 September/2018
## 1982                                           1             1 September/2018
## 1983                         torn tips         1             1 September/2018
## 1984                                           1             1 September/2018
## 1985                                           1             1 September/2018
## 1986                                           1             1 September/2018
## 1987                                           1             1 September/2018
## 1988                                           1             1 September/2018
## 1989                                           1             1 September/2018
## 1990                                           1             1 September/2018
## 1992                         torn tips        -1             1 September/2018
## 1993                                          -1             1 September/2018
## 1994                                          -1             1 September/2018
## 1995                                          -1             1 September/2018
## 1996                         torn tips        -1             1 September/2018
## 1997                                           1             1 September/2018
## 1998                         torn tips        -1             1 September/2018
## 1999                         torn tips         1             1 September/2018
## 2000                                           1             1 September/2018
## 2001                                          -1             1 September/2018
## 2002                                          -1             1 September/2018
## 2003                                          -1             1 September/2018
## 2004                                          -1             1 September/2018
## 2005                                           1             1 September/2018
## 2006                                           1             1 September/2018
## 2007                                           1             1 September/2018
## 2008                                          -1             1 September/2018
## 2009                                           1             1 September/2018
## 2010                                          -1             1 September/2018
## 2011                                          -1             1 September/2018
## 2012                                          -1             1 September/2018
## 2013                                           1             1 September/2018
## 2014                                          -1             1 September/2018
## 2015                                           1             1 September/2018
## 2016                                           1             1 September/2018
## 2017                                           1             1 September/2018
## 2018                                          -1             1 September/2018
## 2019                                          -1             1 September/2018
## 2020                                           1             1 September/2018
## 2021                         torn tips        -1             1 September/2018
## 2022                                          -1             1 September/2018
## 2023                                          -1             1 September/2018
## 2024                                           1             1 September/2018
## 2025                                           1             1 September/2018
## 2026                                           1             1 September/2018
## 2027                                          -1             1 September/2018
## 2028                                          -1             1 September/2018
## 2029                                           1             1 September/2018
## 2031                                           1             1 September/2018
## 2032                                           1             1 September/2018
## 2033                                          -1             1 September/2018
## 2034                                          -1             1 September/2018
## 2036                                          -1             1 September/2018
## 2037                                           1             1 September/2018
## 2038                                          -1             1 September/2018
## 2039                                          -1            -1 September/2018
## 2040                                          -1            -1 September/2018
## 2041                                          -1            -1 September/2018
## 2042                                           1            -1 September/2018
## 2047                                           1            -1 September/2018
## 2050                                           1            -1 September/2018
## 2053                                          -1            -1 September/2018
## 2055                                           1            -1 September/2018
## 2057                                           1            -1 September/2018
## 2058                                          -1            -1 September/2018
## 2059                                          -1            -1 September/2018
## 2062                                           1            -1 September/2018
## 2064                                           1            -1 September/2018
## 2065                                          -1            -1 September/2018
## 2069                                           1            -1 September/2018
## 2071                                          -1            -1 September/2018
## 2072                                          -1            -1 September/2018
## 2073                                           1            -1 September/2018
## 2079                                           1            -1 September/2018
## 2081                                           1            -1 September/2018
## 2082                                          -1            -1 September/2018
## 2083                                           1            -1 September/2018
## 2085                                          -1            -1 September/2018
## 2086                                          -1            -1 September/2018
## 2087                                           1            -1 September/2018
## 2088                                           1            -1 September/2018
## 2091                                           1            -1 September/2018
## 2094                                          -1            -1 September/2018
## 2095                                           1            -1 September/2018
## 2097                                           1            -1 September/2018
## 2099                                          -1            -1 September/2018
## 2101                                           1            -1 September/2018
## 2103                                          -1            -1 September/2018
## 2107                                           1             1 September/2018
## 2108                                           1             1 September/2018
## 2109                                           1             1 September/2018
## 2110                                          -1             1 September/2018
## 2111                                          -1             1 September/2018
## 2112                                           1             1 September/2018
## 2113                                           1             1 September/2018
## 2115                                           1             1 September/2018
## 2116                                          -1             1 September/2018
## 2117                                           1             1 September/2018
## 2118                         torn tips         1             1 September/2018
## 2119                                          -1             1 September/2018
## 2120                                           1             1 September/2018
## 2121                                          -1             1 September/2018
## 2122                                           1             1 September/2018
## 2123                                           1             1 September/2018
## 2124                                          -1             1 September/2018
## 2125                                           1             1 September/2018
## 2126                                           1             1 September/2018
## 2127                                           1             1 September/2018
## 2128                                          -1             1 September/2018
## 2129                                          -1             1 September/2018
## 2130                                           1             1 September/2018
## 2131                                          -1             1 September/2018
## 2133                                          -1             1 September/2018
## 2134                                           1             1 September/2018
## 2136                         torn tips         1             1 September/2018
## 2137                         torn tips        -1             1 September/2018
## 2138                                           1             1 September/2018
## 2139                         torn tips         1             1 September/2018
## 2140                                           1             1 September/2018
## 2141                                           1             1 September/2018
## 2142                                           1             1 September/2018
## 2143                                           1             1 September/2018
## 2144                                          -1             1 September/2018
## 2145                                          -1             1 September/2018
## 2146                                          -1             1 September/2018
## 2147                                          -1             1 September/2018
## 2148                                           1             1       May/2019
## 2149                                           1             1       May/2019
## 2150                                          -1             1       May/2019
## 2151                                           1             1       May/2019
## 2152                                          -1             1       May/2019
## 2154                                           1             1       May/2019
## 2155                                          -1             1       May/2019
## 2156                                          -1             1       May/2019
## 2157                                           1             1       May/2019
## 2158                                           1             1       May/2019
## 2159                                           1             1       May/2019
## 2160                                          -1             1       May/2019
## 2161                                           1             1       May/2019
## 2162                                           1             1       May/2019
## 2163                                           1             1       May/2019
## 2164                                           1             1       May/2019
## 2165                                           1             1       May/2019
## 2166                                           1             1       May/2019
## 2168                                           1             1       May/2019
## 2169                                           1             1       May/2019
## 2170                                           1             1       May/2019
## 2171                                           1             1       May/2019
## 2172                                          -1             1       May/2019
## 2173                                           1             1       May/2019
## 2174                                           1             1       May/2019
## 2175                                          -1             1       May/2019
## 2176                                           1             1       May/2019
## 2177                                           1             1       May/2019
## 2178                                          -1             1       May/2019
## 2179                                           1             1       May/2019
## 2180                                           1             1       May/2019
## 2181                                           1             1       May/2019
## 2182                                           1             1       May/2019
## 2183                                           1             1       May/2019
## 2184                                           1             1       May/2019
## 2185                                           1             1       May/2019
## 2186                                           1             1       May/2019
## 2187                                           1             1       May/2019
## 2188                                           1             1       May/2019
## 2189                                           1             1       May/2019
## 2190                                          -1             1       May/2019
## 2191                                           1             1       May/2019
## 2192                                           1             1       May/2019
## 2193                                           1             1       May/2019
## 2194                                           1             1       May/2019
## 2195                                           1             1       May/2019
## 2196                                           1             1       May/2019
## 2198                                          -1             1       May/2019
## 2199                                           1             1       May/2019
## 2200                                           1             1       May/2019
## 2201                                          -1             1       May/2019
## 2202                                          -1             1       May/2019
## 2204                                          -1             1       May/2019
## 2212                                          -1             1       May/2019
## 2213                                           1             1       May/2019
## 2218                                          -1            -1       May/2019
## 2219                      d1+d2 yellow         1            -1       May/2019
## 2220                                          -1            -1       May/2019
## 2221                      d1+d2 yellow        -1            -1       May/2019
## 2228                                           1            -1       May/2019
## 2232                                           1            -1       May/2019
## 2233                        d1+d2 blue        -1            -1       May/2019
## 2234                                          -1            -1       May/2019
## 2235                         d1 yellow        -1            -1       May/2019
## 2237                                          -1            -1       May/2019
## 2238                                          -1            -1       May/2019
## 2240                         d3 yellow        -1            -1       May/2019
## 2245                                          -1            -1       May/2019
## 2247                                          -1            -1       May/2019
## 2251                         d3 yellow        -1            -1       May/2019
## 2256                           d1 pink        -1            -1       May/2019
## 2261                                          -1            -1       May/2019
## 2262                                           1            -1       May/2019
## 2263                         d1 yellow        -1            -1       May/2019
## 2266                                          -1            -1       May/2019
## 2268                                          -1            -1       May/2019
## 2270                                          -1            -1       May/2019
## 2274                                           1            -1       May/2019
## 2282                           d2 pink        -1            -1       May/2019
## 2285                         d2 yellow        -1            -1       May/2019
## 2288                                          -1            -1       May/2019
## 2291                                           1             1       May/2019
## 2292                                           1             1       May/2019
## 2293                                           1             1       May/2019
## 2294                                           1             1       May/2019
## 2295                                           1             1       May/2019
## 2296                                           1             1       May/2019
## 2297                                           1             1       May/2019
## 2298                                           1             1       May/2019
## 2300                                           1             1       May/2019
## 2302                                           1             1       May/2019
## 2305                                           1             1       May/2019
## 2306                                          -1             1       May/2019
## 2308                                           1             1       May/2019
## 2310                                           1             1       May/2019
## 2312                                           1             1       May/2019
## 2313                                           1             1       May/2019
## 2314                                           1             1       May/2019
## 2315                                           1             1       May/2019
## 2316                                           1             1       May/2019
## 2317                                          -1             1       May/2019
## 2318                                           1             1       May/2019
## 2319                                           1             1       May/2019
## 2320                                           1             1       May/2019
## 2321                       torn thorax         1             1       May/2019
## 2322                                           1             1       May/2019
## 2323                                           1             1       May/2019
## 2324                                           1             1       May/2019
## 2325                                           1             1       May/2019
## 2326                                           1             1       May/2019
## 2327                                           1             1       May/2019
## 2328                                           1             1       May/2019
## 2329                                           1             1       May/2019
## 2330                                           1             1       May/2019
## 2331                                           1             1       May/2019
## 2332                                           1             1       May/2019
## 2333                                           1             1       May/2019
## 2334                                           1             1       May/2019
## 2335                                           1             1       May/2019
## 2337                                           1             1       May/2019
## 2338                                           1             1       May/2019
## 2340                                          -1             1       May/2019
## 2342                       torn thorax        -1             1       May/2019
## 2343                                           1             1       May/2019
## 2344                                          -1             1       May/2019
## 2345                                           1             1       May/2019
## 2346                                          -1             1       May/2019
## 2347                                           1             1       May/2019
## 2348                                           1             1       May/2019
## 2349                                           1             1       May/2019
## 2350                                           1             1       May/2019
## 2351                                           1             1       May/2019
## 2352                                           1             1       May/2019
## 2353                                          -1             1       May/2019
## 2354                                           1            -1       May/2019
## 2355                                          -1            -1       May/2019
## 2356                                          -1            -1       May/2019
## 2357                                          -1            -1       May/2019
## 2359                                           1            -1       May/2019
## 2361                                          -1            -1       May/2019
## 2362                                           1            -1       May/2019
## 2363                                          -1            -1       May/2019
## 2365                         tips torn        -1            -1       May/2019
## 2366                                          -1            -1       May/2019
## 2367                                          -1            -1       May/2019
## 2368                                          -1            -1       May/2019
## 2370 tips torn; marked purple hind leg        -1            -1       May/2019
## 2371                                          -1            -1       May/2019
## 2372                                          -1            -1       May/2019
## 2373                                          -1            -1       May/2019
## 2374                         tips torn        -1            -1       May/2019
## 2376                                          -1            -1       May/2019
## 2379                                          -1            -1       May/2019
## 2381                                           1            -1       May/2019
## 2383                                          -1            -1       May/2019
## 2386                                           1            -1       May/2019
## 2387                                          -1            -1       May/2019
## 2388                                          -1            -1       May/2019
## 2389                                           1            -1       May/2019
## 2390                                           1            -1       May/2019
## 2391                                           1            -1       May/2019
## 2392                                          -1            -1       May/2019
## 2394                                           1            -1       May/2019
## 2395                                           1            -1       May/2019
## 2398                                           1            -1       May/2019
## 2399                                          -1            -1       May/2019
## 2400                                           1            -1       May/2019
## 2401                                          -1            -1       May/2019
## 2403                       marked blue        -1            -1       May/2019
## 2404                                          -1            -1       May/2019
## 2406                                          -1            -1       May/2019
## 2408                       marked blue         1            -1       May/2019
## 2409                                          -1            -1       May/2019
## 2410                       marked blue        -1            -1       May/2019
## 2417                                           1            -1       May/2019
## 2418                       marked blue        -1            -1       May/2019
## 2420                                           1            -1       May/2019
## 2421                                           1            -1       May/2019
## 2422                    marked blue x2         1            -1       May/2019
## 2423                                           1            -1       May/2019
## 2425                    marked blue x3        -1            -1       May/2019
## 2428                    marked blue x2        -1            -1       May/2019
## 2429                                           1            -1       May/2019
## 2431                                          -1            -1       May/2019
## 2432                                          -1            -1       May/2019
## 2434                       marked blue        -1            -1       May/2019
## 2436                                          -1            -1       May/2019
## 2439                                          -1            -1       May/2019
## 2440                                          -1            -1       May/2019
## 2441                                          -1            -1       May/2019
## 2447                       marked blue        -1            -1       May/2019
## 2452                                          -1            -1       May/2019
## 2456                 torn tips; marked         1            -1       May/2019
## 2457                        torn tips         -1            -1       May/2019
## 2459                                          -1            -1       May/2019
## 2466                         marked x2         1            -1       May/2019
## 2469                            marked         1            -1       May/2019
## 2470                            marked        -1            -1       May/2019
## 2472                            marked         1            -1       May/2019
## 2473                                          -1            -1       May/2019
## 2476                                          -1            -1       May/2019
## 2477                                          -1            -1       May/2019
## 2478                                           1            -1       May/2019
## 2479                                           1            -1       May/2019
## 2480                                           1            -1       May/2019
## 2482                                          -1            -1       May/2019
## 2484                                           1            -1       May/2019
## 2487                                          -1            -1       May/2019
## 2496                                          -1            -1       May/2019
## 2497                                          -1            -1       May/2019
## 2498                                           1            -1       May/2019
## 2499                                           1            -1       May/2019
## 2501                                          -1            -1       May/2019
## 2502                                           1            -1       May/2019
## 2503                                           1            -1       May/2019
## 2504                   marked white x2        -1            -1       May/2019
## 2505                                          -1            -1       May/2019
## 2507                       marked pink         1            -1       May/2019
## 2510                                           1            -1       May/2019
## 2512                       marked pink        -1            -1       May/2019
## 2514                                           1            -1       May/2019
## 2518                       marked pink         1            -1       May/2019
## 2519                      marked white         1            -1       May/2019
## 2521                      marked white        -1            -1       May/2019
## 2523                      marked white        -1            -1       May/2019
## 2524                                          -1            -1       May/2019
## 2525                                          -1            -1       May/2019
## 2526                                           1            -1       May/2019
## 2527                                           1            -1       May/2019
## 2530                                           1            -1       May/2019
## 2535                                           1            -1       May/2019
## 2537                   marked white d2         1            -1       May/2019
## 2541                   marked white d3        -1            -1       May/2019
## 2543                                          -1            -1       May/2019
## 2544                                          -1            -1       May/2019
## 2545                   marked white d2        -1            -1       May/2019
## 2546               marked pink d1 + d3         1            -1       May/2019
## 2549                                          -1            -1       May/2019
## 2554                          white d2         1            -1       May/2019
## 2561                                          -1            -1       May/2019
## 2566                                          -1            -1       May/2019
## 2567                                           1            -1       May/2019
## 2568                         marked d3         1            -1       May/2019
## 2569                         marked d3         1            -1       May/2019
## 2570                         marked d3        -1            -1       May/2019
## 2572                    marked d1 + d2        -1            -1       May/2019
## 2573                                           1            -1       May/2019
## 2574                    marked d2 + d3         1            -1       May/2019
## 2575                                          -1            -1       May/2019
## 2576                                           1            -1       May/2019
## 2577                         marked d1        -1            -1       May/2019
## 2578                                           1            -1       May/2019
## 2579                    marked d1 + d3        -1            -1       May/2019
## 2580                    marked d1 + d3        -1            -1       May/2019
## 2581                         marked d3         1            -1       May/2019
## 2582                                          -1            -1       May/2019
## 2584                                          -1            -1       May/2019
## 2585                         marked d3         1            -1       May/2019
## 2586                                          -1            -1       May/2019
## 2587                                           1            -1       May/2019
## 2588                         marked d1        -1            -1       May/2019
## 2590                         marked d1         1            -1       May/2019
## 2591                                          -1            -1       May/2019
## 2592                                          -1            -1       May/2019
## 2593                         marked d1        -1            -1       May/2019
## 2595                                          -1            -1       May/2019
## 2596                                           1            -1       May/2019
## 2597          marked turquoise d1 + d3         1            -1       May/2019
## 2598               marked turquoise d3         1            -1       May/2019
## 2600                                           1            -1       May/2019
## 2604                                          -1            -1       May/2019
## 2606                                          -1            -1       May/2019
## 2607                                          -1            -1       May/2019
## 2608                                           1            -1       May/2019
## 2614                                          -1            -1       May/2019
## 2622                                          -1            -1       May/2019
## 2624                                          -1            -1       May/2019
## 2625                                          -1            -1       May/2019
## 2628                                          -1            -1       May/2019
## 2629                                           1            -1       May/2019
## 2634                                           1            -1       May/2019
## 2637                                           1             1   October/2019
## 2638                                          -1             1   October/2019
## 2639                                          -1             1   October/2019
## 2640                                           1             1   October/2019
## 2641                                           1             1   October/2019
## 2645                                          -1             1   October/2019
## 2647                                           1             1   October/2019
## 2651                                          -1             1   October/2019
## 2652                                          -1             1   October/2019
## 2653                                          -1             1   October/2019
## 2654                                           1             1   October/2019
## 2655                                          -1             1   October/2019
## 2656                                          -1             1   October/2019
## 2657                                           1             1   October/2019
## 2658                                          -1             1   October/2019
## 2659                                           1             1   October/2019
## 2660                                          -1             1   October/2019
## 2661                                          -1             1   October/2019
## 2662                                           1             1   October/2019
## 2663                                          -1             1   October/2019
## 2664                                           1             1   October/2019
## 2665                                           1             1   October/2019
## 2666                                           1             1   October/2019
## 2667                                           1             1   October/2019
## 2669                                          -1             1   October/2019
## 2670                                          -1             1   October/2019
## 2671                                          -1             1   October/2019
## 2672                                          -1             1   October/2019
## 2673                                          -1             1   October/2019
## 2674                                          -1             1   October/2019
## 2675                                          -1             1   October/2019
## 2676                                          -1             1   October/2019
## 2677                                          -1             1   October/2019
## 2678                                          -1             1   October/2019
## 2679                                          -1             1   October/2019
## 2683                                           1             1   October/2019
## 2684                                          -1             1   October/2019
## 2685                                          -1             1   October/2019
## 2686                                           1             1   October/2019
## 2687                                          -1             1   October/2019
## 2693                                           1            -1   October/2019
## 2695                                          -1            -1   October/2019
## 2697                                          -1            -1   October/2019
## 2698                                          -1            -1   October/2019
## 2701                                           1            -1   October/2019
## 2704                                          -1             1   October/2019
## 2705                                           1             1   October/2019
## 2706                                           1             1   October/2019
## 2707                                          -1             1   October/2019
## 2709                                           1             1   October/2019
## 2710                                           1             1   October/2019
## 2711                                           1             1   October/2019
## 2712                                          -1             1   October/2019
## 2713                                           1             1   October/2019
## 2716                                           1             1   October/2019
## 2717                                           1             1   October/2019
## 2718                                           1             1   October/2019
## 2719                                          -1             1   October/2019
## 2720                                           1             1   October/2019
## 2721                                           1             1   October/2019
## 2722                                          -1             1   October/2019
## 2723                                          -1             1   October/2019
## 2724                                           1             1   October/2019
## 2725                                          -1             1   October/2019
## 2726                                          -1             1   October/2019
## 2727                                           1             1   October/2019
## 2728                                          -1             1   October/2019
## 2730                                           1             1   October/2019
## 2731                                          -1             1   October/2019
## 2733                                          -1             1   October/2019
## 2734                                           1             1   October/2019
## 2735                                           1             1   October/2019
## 2736                                          -1             1   October/2019
## 2737                                          -1             1   October/2019
## 2738                                           1             1   October/2019
## 2739                                           1             1   October/2019
## 2740                                          -1             1   October/2019
## 2741                                          -1             1   October/2019
## 2742                                          -1             1   October/2019
## 2743                                          -1             1   October/2019
## 2744                                          -1             1   October/2019
## 2745                                          -1             1   October/2019
## 2747                                           1             1   October/2019
## 2748                                           1             1   October/2019
## 2749                                           1             1   October/2019
## 2752                                          -1             1   October/2019
## 2754                                           1             1   October/2019
## 2756                                          -1             1   October/2019
## 2757                                          -1             1   October/2019
## 2758                                           1             1   October/2019
## 2759                                          -1             1   October/2019
## 2760                                           1             1   October/2019
## 2761                                           1             1   October/2019
## 2763                                          -1             1   October/2019
## 2764                                          -1             1   October/2019
## 2765                                           1             1   October/2019
## 2767                                          -1             1   October/2019
## 2768                                           1             1   October/2019
## 2769                                           1             1   October/2019
## 2772                                           1             1   October/2019
## 2773                                           1             1   October/2019
## 2774                                           1             1   October/2019
## 2777                                          -1             1   October/2019
## 2779                                           1             1   October/2019
## 2780                                          -1             1   October/2019
## 2781                                          -1             1   October/2019
## 2782                                           1             1   October/2019
## 2784                                          -1             1   October/2019
## 2785                                          -1             1   October/2019
## 2786                                          -1             1   October/2019
## 2787                                           1             1   October/2019
## 2788                                          -1             1   October/2019
## 2789                                          -1             1   October/2019
## 2791                                           1             1   October/2019
## 2792                                          -1             1   October/2019
## 2794                                           1             1   October/2019
## 2795                                           1             1   October/2019
## 2797                                          -1             1   October/2019
## 2798                                           1            -1   October/2019
## 2799                                          -1            -1   October/2019
## 2800                                           1            -1   October/2019
## 2801                                           1            -1   October/2019
## 2802                                          -1            -1   October/2019
## 2806                                          -1            -1   October/2019
## 2807                                          -1            -1   October/2019
## 2808                                          -1            -1   October/2019
## 2810                                          -1            -1   October/2019
## 2812                                          -1            -1   October/2019
## 2813                                           1            -1   October/2019
## 2816                                          -1            -1   October/2019
## 2820                                           1            -1   October/2019
## 2823                                           1            -1   October/2019
## 2826                                           1            -1   October/2019
## 2830                                           1            -1   October/2019
## 2831                                           1            -1   October/2019
## 2833                                          -1            -1   October/2019
## 2834                                           1            -1   October/2019
## 2835                                           1            -1   October/2019
## 2836                                           1            -1   October/2019
## 2837                                           1            -1   October/2019
## 2839                                           1            -1   October/2019
## 2841                                           1            -1   October/2019
## 2842                                           1            -1   October/2019
## 2844                                           1            -1   October/2019
## 2845                                           1            -1   October/2019
## 2847                                          -1            -1   October/2019
## 2848                                           1            -1   October/2019
## 2850                                          -1            -1   October/2019
## 2851                                          -1            -1   October/2019
## 2853                                          -1            -1   October/2019
## 2854                                           1            -1   October/2019
## 2855                                          -1            -1   October/2019
## 2856                                           1            -1   October/2019
## 2859                                          -1            -1   October/2019
## 2860                                           1            -1   October/2019
## 2862                                          -1            -1   October/2019
## 2863                                          -1            -1   October/2019
## 2864                                          -1            -1   October/2019
## 2868                                           1            -1   October/2019
## 2869                                          -1            -1   October/2019
## 2871                                          -1            -1   October/2019
## 2878                                           1            -1   October/2019
## 2884                                           1            -1   October/2019
## 2886                                          -1            -1   October/2019
## 2887                                           1            -1   October/2019
## 2891                                          -1            -1   October/2019
## 2892                                           1            -1   October/2019
## 2893                                          -1            -1   October/2019
## 2895                                           1            -1   October/2019
## 2896                                          -1            -1   October/2019
## 2897                                          -1             1  February/2020
## 2899                                          -1             1  February/2020
## 2900                                          -1             1  February/2020
## 2901                                          -1             1  February/2020
## 2904                                          -1             1  February/2020
## 2905                                          -1             1  February/2020
## 2906                                          -1             1  February/2020
## 2907                                           1             1  February/2020
## 2908                                          -1             1  February/2020
## 2911                                          -1             1  February/2020
## 2912                                          -1             1  February/2020
## 2914                                           1             1  February/2020
## 2917                                          -1             1  February/2020
## 2919                                          -1             1  February/2020
## 2921                                          -1             1  February/2020
## 2923                                          -1             1  February/2020
## 2929                                          -1             1  February/2020
## 2930                                           1             1  February/2020
## 2931                                          -1             1  February/2020
## 2932                                          -1             1  February/2020
## 2933                                          -1             1  February/2020
## 2934                                           1             1  February/2020
## 2935                                           1             1  February/2020
## 2936                                           1             1  February/2020
## 2937                                           1             1  February/2020
## 2939                                          -1             1  February/2020
## 2940                                           1             1  February/2020
## 2944                                          -1             1  February/2020
## 2945                                          -1             1  February/2020
## 2947                                           1             1  February/2020
## 2948                                           1             1  February/2020
## 2949                                           1             1  February/2020
## 2950                                          -1             1  February/2020
## 2951                                          -1             1  February/2020
## 2952                                           1             1  February/2020
## 2953                                          -1             1  February/2020
## 2954                                           1             1  February/2020
## 2955                                           1             1  February/2020
## 2956                                          -1             1  February/2020
## 2957                                          -1             1  February/2020
## 2958                                          -1             1  February/2020
## 2959                                          -1             1  February/2020
## 2960                                          -1             1  February/2020
## 2964                                          -1             1  February/2020
## 2965                                          -1             1  February/2020
## 2970                                           1             1  February/2020
## 2971                                          -1             1  February/2020
## 2972                                          -1             1  February/2020
## 2973                                          -1             1  February/2020
## 2974                                          -1             1  February/2020
## 2975                                          -1            -1  February/2020
## 2976                                           1            -1  February/2020
## 2978                                          -1            -1  February/2020
## 2979                                          -1            -1  February/2020
## 2980                                           1            -1  February/2020
## 2981                                          -1            -1  February/2020
## 2982                                          -1            -1  February/2020
## 2983                                           1            -1  February/2020
## 2984                                          -1            -1  February/2020
## 2985                                           1            -1  February/2020
## 2986                                           1            -1  February/2020
## 2987                                          -1            -1  February/2020
## 2988                                          -1            -1  February/2020
## 2990                                           1            -1  February/2020
## 2991                                          -1            -1  February/2020
## 2992                                           1            -1  February/2020
## 2994                                           1            -1  February/2020
## 2995                                          -1            -1  February/2020
## 2997                                           1            -1  February/2020
## 2998                                          -1            -1  February/2020
## 2999                                          -1            -1  February/2020
## 3000                                           1            -1  February/2020
## 3001                                          -1            -1  February/2020
## 3002                                           1            -1  February/2020
## 3004                                          -1            -1  February/2020
## 3005                                          -1            -1  February/2020
## 3006           thorax torn on one side         1            -1  February/2020
## 3007                                          -1            -1  February/2020
## 3009                                           1            -1  February/2020
## 3010                                           1            -1  February/2020
## 3011                                          -1            -1  February/2020
## 3013                                          -1            -1  February/2020
## 3014                                          -1            -1  February/2020
## 3015                                          -1            -1  February/2020
## 3016                                          -1            -1  February/2020
## 3019                                          -1            -1  February/2020
## 3020                                          -1            -1  February/2020
## 3045                                           1            -1  February/2020
## 3050                                           1            -1  February/2020
## 3052                                          -1            -1  February/2020
## 3053                                          -1            -1  February/2020
## 3054                                          -1             1  February/2020
## 3055                                           1             1  February/2020
## 3056                                           1             1  February/2020
## 3057                                          -1             1  February/2020
## 3058                                          -1             1  February/2020
## 3059                                           1             1  February/2020
## 3060                                           1             1  February/2020
## 3061                                           1             1  February/2020
## 3062                                          -1             1  February/2020
## 3063                                           1             1  February/2020
## 3064                                          -1             1  February/2020
## 3066                                          -1             1  February/2020
## 3067                                          -1             1  February/2020
## 3068                                           1             1  February/2020
## 3069                                          -1             1  February/2020
## 3070                                           1             1  February/2020
## 3071                                          -1             1  February/2020
## 3072                                          -1             1  February/2020
## 3073                                          -1             1  February/2020
## 3074                                           1             1  February/2020
## 3075                                          -1             1  February/2020
## 3076                                          -1             1  February/2020
## 3077                                           1             1  February/2020
## 3078                                           1             1  February/2020
## 3079                                          -1             1  February/2020
## 3080                                           1             1  February/2020
## 3081                                           1             1  February/2020
## 3082                                          -1             1  February/2020
## 3083                                          -1             1  February/2020
## 3084                                          -1             1  February/2020
## 3085                                          -1             1  February/2020
## 3086                                          -1             1  February/2020
## 3087                                          -1             1  February/2020
## 3088                                           1             1  February/2020
## 3089                                          -1             1  February/2020
## 3090                                           1             1  February/2020
## 3091                                          -1             1  February/2020
## 3092                                          -1             1  February/2020
## 3093                                          -1             1  February/2020
## 3094                                           1             1  February/2020
## 3095                                          -1             1  February/2020
## 3096                                          -1             1  February/2020
## 3097                                          -1             1  February/2020
## 3098                                           1             1  February/2020
## 3099                                          -1             1  February/2020
## 3100                                           1             1  February/2020
## 3101                                           1             1  February/2020
## 3102                                           1             1  February/2020
## 3103                                           1             1  February/2020
## 3105                                          -1             1  February/2020
## 3107                                          -1             1  February/2020
## 3108                                          -1             1  February/2020
## 3109                                          -1             1  February/2020
## 3110                                           1             1  February/2020
## 3111                                           1             1  February/2020
## 3112                                          -1             1  February/2020
## 3113                                          -1             1  February/2020
## 3115                                           1             1  February/2020
## 3116                                          -1             1  February/2020
## 3117                                          -1             1  February/2020
## 3118                                           1             1  February/2020
## 3119                                          -1             1  February/2020
## 3120                                           1             1  February/2020
## 3121                                          -1             1  February/2020
## 3122                                           1             1  February/2020
## 3123                                           1             1  February/2020
## 3124                                          -1             1  February/2020
## 3125                                          -1             1  February/2020
## 3126                                           1             1  February/2020
## 3127                                           1             1  February/2020
## 3128                                           1             1  February/2020
## 3129                                          -1             1  February/2020
## 3131                                           1             1  February/2020
## 3132                                          -1             1  February/2020
## 3133                                          -1             1  February/2020
## 3134                                          -1             1  February/2020
## 3135                                          -1             1  February/2020
## 3136                                          -1             1  February/2020
## 3137                                           1             1  February/2020
## 3138                                          -1             1  February/2020
## 3139                                          -1             1  February/2020
## 3140                                          -1             1  February/2020
## 3141                                           1             1  February/2020
## 3142                                          -1             1  February/2020
## 3143                                           1             1  February/2020
## 3144                                           1             1  February/2020
## 3145                                          -1             1  February/2020
## 3146                                          -1             1  February/2020
## 3147                                          -1             1  February/2020
## 3148                                          -1             1  February/2020
## 3149                                          -1             1  February/2020
## 3150                                          -1             1  February/2020
## 3151                                          -1             1  February/2020
## 3152                                          -1             1  February/2020
## 3153                                           1             1  February/2020
## 3154                                           1             1  February/2020
## 3155                                           1             1  February/2020
## 3157                                          -1             1  February/2020
## 3158                                          -1             1  February/2020
## 3159                                           1             1  February/2020
## 3160                                          -1             1  February/2020
## 3162                                           1             1  February/2020
## 3164                                          -1             1  February/2020
## 3165                                          -1             1  February/2020
## 3167                                          -1             1  February/2020
## 3168                                          -1             1  February/2020
## 3169                                          -1             1  February/2020
## 3170                                           1             1  February/2020
## 3171                                           1             1  February/2020
## 3172                                          -1             1  February/2020
## 3175                                          -1             1  February/2020
## 3176                                          -1             1  February/2020
## 3177                                          -1            -1  February/2020
## 3178                                          -1            -1  February/2020
## 3180                                          -1            -1  February/2020
## 3181                                           1            -1  February/2020
## 3182                                           1            -1  February/2020
## 3183                                           1            -1  February/2020
## 3185                                           1            -1  February/2020
## 3186                                           1            -1  February/2020
## 3187                                           1            -1  February/2020
## 3189                                          -1            -1  February/2020
## 3190                                          -1            -1  February/2020
## 3191                                          -1            -1  February/2020
## 3192                                          -1            -1  February/2020
## 3193                                           1            -1  February/2020
## 3194                                          -1            -1  February/2020
## 3196                                           1            -1  February/2020
## 3197                                           1            -1  February/2020
## 3198                                          -1            -1  February/2020
## 3199                                           1            -1  February/2020
## 3200                                           1            -1  February/2020
## 3201                                          -1            -1  February/2020
## 3202                                          -1            -1  February/2020
## 3203                                          -1            -1  February/2020
## 3205                                          -1            -1  February/2020
## 3206                                          -1            -1  February/2020
## 3207                                          -1            -1  February/2020
## 3209                                          -1            -1  February/2020
## 3210                                           1            -1  February/2020
## 3211                                          -1            -1  February/2020
## 3212                                           1            -1  February/2020
## 3213                                           1            -1  February/2020
## 3214                                           1            -1  February/2020
## 3215                                           1            -1  February/2020
## 3216                                          -1            -1  February/2020
## 3218                                          -1            -1  February/2020
## 3219                                           1            -1  February/2020
## 3220                                           1            -1  February/2020
## 3221                                           1            -1  February/2020
## 3222                                          -1            -1  February/2020
## 3223                                          -1            -1  February/2020
## 3224                                          -1            -1  February/2020
## 3226                                           1            -1  February/2020
## 3227                                           1            -1  February/2020
## 3229                                           1            -1  February/2020
## 3230                                          -1            -1  February/2020
## 3231                                          -1            -1  February/2020
## 3232                                          -1            -1  February/2020
## 3234                                           1            -1  February/2020
## 3235                                          -1            -1  February/2020
## 3236                                           1            -1  February/2020
## 3237                                          -1            -1  February/2020
## 3238                                          -1            -1  February/2020
## 3239                                          -1            -1  February/2020
## 3240                                           1            -1  February/2020
## 3241                                           1            -1  February/2020
## 3242                                          -1            -1  February/2020
## 3243           thorax torn on one side        -1            -1  February/2020
## 3244                                           1            -1  February/2020
## 3246                                          -1            -1  February/2020
## 3247                                          -1            -1  February/2020
## 3248                                          -1            -1  February/2020
## 3249                                           1            -1  February/2020
## 3250                                          -1            -1  February/2020
## 3251                                          -1            -1  February/2020
## 3252                                          -1            -1  February/2020
## 3253                                          -1            -1  February/2020
## 3254                                          -1            -1  February/2020
## 3255                                           1            -1  February/2020
## 3256                                           1            -1  February/2020
## 3257                                           1            -1  February/2020
## 3258                                          -1            -1  February/2020
## 3259                                          -1            -1  February/2020
## 3260                                          -1            -1  February/2020
## 3261                                           1            -1  February/2020
## 3262                                           1            -1  February/2020
## 3263                                           1            -1  February/2020
## 3264                                           1            -1  February/2020
## 3265                                           1            -1  February/2020
## 3266                                          -1            -1  February/2020
## 3267                                          -1            -1  February/2020
## 3268                                          -1            -1  February/2020
## 3269                                           1            -1  February/2020
## 3270                                          -1            -1  February/2020
## 3271                                           1            -1  February/2020
## 3273                                           1            -1  February/2020
## 3274                                          -1            -1  February/2020
## 3279                                          -1            -1  February/2020
## 3280                                          -1            -1  February/2020
## 3281                                          -1            -1  February/2020
## 3282                                          -1            -1  February/2020
## 3283                                          -1            -1  February/2020
## 3285                                          -1            -1  February/2020
## 3287                                          -1            -1  February/2020
## 3288                                          -1            -1  February/2020
## 3289                                          -1            -1  February/2020
## 3290                                           1            -1  February/2020
## 3291                                          -1            -1  February/2020
## 3292                                          -1            -1  February/2020
## 3293                                          -1            -1  February/2020
## 3294                                          -1            -1  February/2020
## 3295                                          -1            -1  February/2020
## 3296                                          -1            -1  February/2020
## 3297                                          -1            -1  February/2020
## 3300                                          -1            -1  February/2020
## 3301                                          -1            -1  February/2020
## 3302                                           1            -1  February/2020
## 3303                                          -1            -1  February/2020
## 3304                                          -1            -1  February/2020
## 3305                                          -1            -1  February/2020
## 3306                                           1            -1  February/2020
## 3307                                           1            -1  February/2020
## 3308                                          -1            -1  February/2020
## 3309                                          -1            -1  February/2020
## 3311                                          -1            -1  February/2020
## 3312                                          -1            -1  February/2020
## 3313                                          -1            -1  February/2020
## 3314                                           1            -1  February/2020
## 3315                                          -1            -1  February/2020
## 3316                                          -1            -1  February/2020
## 3317                                          -1            -1  February/2020
## 3318                                          -1            -1  February/2020
## 3319                                          -1            -1  February/2020
## 3320                                          -1            -1  February/2020
## 3321                                          -1            -1  February/2020
## 3322                                           1            -1  February/2020
## 3323                                           1            -1  February/2020
## 3325                                           1            -1  February/2020
## 3327                                          -1            -1  February/2020
## 3332                                           1            -1  February/2020
## 3339                                          -1            -1  February/2020
## 3340                                           1            -1  February/2020
## 3341                                           1            -1  February/2020
## 3342                                          -1            -1  February/2020
## 3343                                          -1            -1  February/2020
## 3348                                           1            -1  February/2020
## 3350                                          -1            -1  February/2020
## 3351                                           1            -1  February/2020
## 3379                                           1            -1  February/2020
## 3391                                           1            -1  February/2020
## 3394                                           1            -1  February/2020
## 3396                                          -1            -1  February/2020
## 3398                                           1            -1  February/2020
## 3399                                           1            -1  February/2020
## 3400                                          -1            -1  February/2020
## 3401                                           1            -1  February/2020
## 3402                                          -1            -1  February/2020
## 3404                                          -1            -1  February/2020
## 3405                                          -1            -1  February/2020
## 3406                                          -1            -1  February/2020
## 3407                                           1            -1  February/2020
## 3408                                          -1            -1  February/2020
## 3409                                           1            -1  February/2020
## 3410                                           1            -1  February/2020
## 3411                                          -1            -1  February/2020
## 3412                                          -1            -1  February/2020
## 3414                                          -1            -1  February/2020
## 3415                                           1            -1  February/2020
## 3418                                           1            -1  February/2020
## 3419                                          -1            -1  February/2020
## 3420                                          -1            -1  February/2020
## 3421                                           1            -1  February/2020
## 3422                                          -1            -1  February/2020
## 3423                                          -1            -1  February/2020
## 3424                                          -1            -1  February/2020
## 3425                                          -1            -1  February/2020
## 3426           thorax torn on one side        -1            -1  February/2020
## 3428                                          -1            -1  February/2020
## 3429                                          -1            -1  February/2020
## 3430                                          -1            -1  February/2020
## 3431                                           1            -1  February/2020
## 3432                                          -1            -1  February/2020
## 3433                                          -1            -1  February/2020
## 3434                                          -1            -1  February/2020
## 3435                                          -1            -1  February/2020
## 3436                                          -1            -1  February/2020
## 3437                                           1            -1  February/2020
## 3438                                          -1            -1  February/2020
## 3439                                          -1            -1  February/2020
## 3440                                          -1            -1  February/2020
## 3441                                          -1            -1  February/2020
## 3442                                          -1            -1  February/2020
## 3443                                           1            -1  February/2020
## 3444                                           1            -1  February/2020
## 3445                                          -1            -1  February/2020
## 3448                                           1            -1  February/2020
## 3451                                          -1            -1  February/2020
## 3452                                           1            -1  February/2020
## 3453                                          -1            -1  February/2020
## 3454                                          -1            -1  February/2020
## 3461                                           1            -1  February/2020
## 3462                                          -1            -1  February/2020
## 3466                                          -1            -1  February/2020
## 3473                                           1            -1  February/2020
## 3476                                          -1            -1   October/2019
## 3477                                           1            -1   October/2019
## 3478                                           1            -1   October/2019
## 3479                                          -1            -1   October/2019
## 3480                                          -1            -1   October/2019
## 3481                                           1            -1   October/2019
## 3482                                           1            -1   October/2019
## 3483                                          -1            -1   October/2019
## 3485                                           1            -1   October/2019
## 3486                                          -1            -1   October/2019
## 3487                                          -1            -1   October/2019
## 3488                                          -1            -1   October/2019
## 3489                                          -1            -1   October/2019
## 3492                                          -1            -1   October/2019
## 3493                                           1            -1   October/2019
## 3496                                           1            -1   October/2019
## 3498                                          -1            -1   October/2019
## 3499                                          -1            -1   October/2019
## 3500                                          -1            -1   October/2019
## 3501                                           1            -1   October/2019
## 3502                                           1            -1   October/2019
## 3503                                          -1             1   October/2019
## 3504                                          -1             1   October/2019
## 3505                                           1             1   October/2019
## 3506                                          -1             1   October/2019
## 3507                                           1             1   October/2019
## 3508                                           1             1   October/2019
## 3509                                          -1             1   October/2019
## 3510                                           1             1   October/2019
## 3511                                           1             1   October/2019
## 3513                                          -1             1   October/2019
## 3514                                           1             1   October/2019
## 3515                                           1            -1   October/2019
## 3516                                           1            -1   October/2019
## 3517                                           1            -1   October/2019
## 3518                                           1            -1   October/2019
## 3519                                          -1            -1   October/2019
## 3520                                           1            -1   October/2019
## 3521                                          -1            -1   October/2019
## 3522                                           1            -1   October/2019
## 3523                                           1            -1   October/2019
## 3524                                           1            -1   October/2019
## 3525                                          -1            -1   October/2019
## 3526                                           1            -1   October/2019
## 3528                                          -1            -1   October/2019
## 3529                                           1            -1   October/2019
## 3530                                          -1            -1   October/2019
## 3531                                           1            -1   October/2019
## 3532                                          -1            -1   October/2019
## 3533                                           1            -1   October/2019
## 3534                                          -1            -1   October/2019
## 3535                                           1            -1   October/2019
## 3536                                          -1            -1   October/2019
## 3537                                           1            -1   October/2019
## 3538                                          -1            -1   October/2019
## 3539                                          -1            -1   October/2019
## 3540                                          -1            -1   October/2019
## 3541                                          -1             1   October/2019
## 3542                                           1             1   October/2019
## 3543                                          -1             1   October/2019
## 3544                                          -1             1   October/2019
## 3545                                           1             1   October/2019
## 3546                                           1             1   October/2019
## 3547                                           1             1   October/2019
## 3549                                          -1             1   October/2019
## 3550                                           1             1   October/2019
## 3551                                          -1             1   October/2019
## 3552                                           1             1   October/2019
## 3553                                          -1             1   October/2019
## 3554                                           1             1   October/2019
## 3555                                          -1             1   October/2019
## 3556                                           1             1   October/2019
## 3557                                           1             1   October/2019
## 3558                                          -1             1   October/2019
## 3559                                           1             1   October/2019
## 3560                                          -1             1   October/2019
## 3561                                          -1             1   October/2019
## 3562                                          -1            -1   October/2019
## 3563                                           1            -1   October/2019
## 3564                                          -1            -1   October/2019
## 3565                                          -1            -1   October/2019
## 3566                                           1             1  December/2016
## 3570                                          -1            -1   October/2019
## 3571                                          -1            -1   October/2019
## 3572                                           1            -1   October/2019
## 3573                                          -1            -1   October/2019
## 3574                                           1            -1   October/2019
## 3575                                           1            -1   October/2019
## 3576                                           1            -1   October/2019
## 3577                                          -1            -1   October/2019
## 3578                                           1            -1   October/2019
## 3579                                           1            -1   October/2019
## 3581                                          -1            -1   October/2019
## 3583                                          -1            -1   October/2019
## 3584                                           1            -1   October/2019
## 3585                                          -1            -1   October/2019
## 3586                                           1            -1   October/2019
## 3587                                           1            -1   October/2019
## 3588                                          -1            -1   October/2019
## 3589                                           1            -1   October/2019
## 3590                                          -1            -1   October/2019
## 3591                                           1            -1   October/2019
## 3592                                           1             1       May/2019
## 3594                                           1             1       May/2019
## 3595                                           1             1       May/2019
## 3596                       torn thorax         1             1       May/2019
## 3597                                           1             1       May/2019
## 3598                                           1             1       May/2019
## 3599                                           1             1       May/2019
## 3600                                           1             1       May/2019
## 3601                                          -1             1       May/2019
## 3602                                           1             1       May/2019
## 3603                                          -1             1       May/2019
## 3604                                           1             1       May/2019
## 3605                                           1             1       May/2019
## 3606                                           1             1       May/2019
## 3607                                           1             1       May/2019
## 3608                                           1             1       May/2019
## 3609                                           1             1       May/2019
## 3610                                           1             1       May/2019
## 3611                                           1             1       May/2019
## 3612                                           1             1       May/2019
## 3613                                           1             1       May/2019
## 3614                                          -1             1       May/2019
## 3615                                          -1             1       May/2019
## 3616                                           1             1       May/2019
## 3617                                           1             1       May/2019
## 3618                                           1             1       May/2019
## 3619                                           1             1       May/2019
## 3620                                          -1             1       May/2019
## 3621                                          -1             1       May/2019
## 3622                                           1             1       May/2019
## 3623                                           1             1       May/2019
## 3624                                           1             1       May/2019
## 3625                                          -1             1       May/2019
## 3626                                           1             1       May/2019
## 3627                                          -1             1       May/2019
## 3628                                           1             1       May/2019
## 3629                                           1             1       May/2019
## 3630                                           1             1       May/2019
## 3631                                          -1             1       May/2019
## 3632                                          -1             1       May/2019
## 3633                                           1             1       May/2019
## 3634                                          -1             1       May/2019
## 3635                                           1             1       May/2019
## 3636                                           1             1       May/2019
## 3637                                           1             1       May/2019
## 3638                                          -1             1       May/2019
## 3639                                           1             1       May/2019
## 3640                                          -1             1       May/2019
## 3641                                           1             1       May/2019
## 3642                                           1             1       May/2019
## 3643                                           1             1       May/2019
## 3644                                           1             1       May/2019
## 3645                                          -1             1       May/2019
## 3646                     (8th x Mound)        -1             1       May/2019
## 3647                                           1             1       May/2019
## 3648                                           1             1       May/2019
## 3649                                           1             1       May/2019
## 3650                                           1             1       May/2019
## 3651                                          -1             1       May/2019
## 3652                                           1             1       May/2019
## 3653                                           1             1       May/2019
## 3655                                           1             1       May/2019
## 3656                                          -1             1       May/2019
## 3658                                          -1             1       May/2019
## 3659                                           1             1       May/2019
## 3660                                           1             1       May/2019
## 3661                                           1             1       May/2019
## 3662                                           1             1       May/2019
## 3663                                          -1             1       May/2019
## 3664                                           1             1       May/2019
## 3665                                           1             1       May/2019
## 3666                                          -1             1       May/2019
## 3667                                          -1             1       May/2019
## 3668                                           1             1       May/2019
## 3669                                           1             1       May/2019
## 3670                                           1             1       May/2019
## 3671                                           1             1       May/2019
## 3672                                           1             1       May/2019
## 3673                                           1             1       May/2019
## 3674                                           1             1       May/2019
## 3675                                           1             1       May/2019
## 3676                                           1             1       May/2019
## 3677                                           1             1       May/2019
## 3678                                           1             1       May/2019
## 3680                                           1             1       May/2019
## 3681                                           1             1       May/2019
## 3682                                          -1             1       May/2019
## 3683                                           1             1       May/2019
## 3684                                           1             1       May/2019
## 3685                                          -1             1       May/2019
## 3686                                           1             1       May/2019
## 3687                                           1             1       May/2019
## 3688                                           1             1       May/2019
## 3689                                           1             1       May/2019
## 3690                                           1             1       May/2019
## 3691                                          -1             1       May/2019
## 3692                                           1             1       May/2019
## 3693                                           1             1       May/2019
## 3694                                          -1             1       May/2019
## 3695                                           1             1       May/2019
## 3696                                           1             1       May/2019
## 3698                                          -1             1       May/2019
##      datetime      dates month_of_year wing2thorax wing_morph_binom wing2body
## 1    Apr 2013 2013-04-01             4    2.790210                1 0.7307692
## 2    Apr 2013 2013-04-01             4    2.676375                1 0.7141623
## 3    Apr 2013 2013-04-01             4    2.812903                1 0.7556326
## 4    Apr 2013 2013-04-01             4    2.617530                1 0.7340782
## 5    Apr 2013 2013-04-01             4    2.821549                1 0.7363796
## 6    Apr 2013 2013-04-01             4    2.652027                1 0.7268519
## 7    Apr 2013 2013-04-01             4    2.794425                1 0.7516401
## 8    Apr 2013 2013-04-01             4    2.830769                1 0.7258383
## 9    Apr 2013 2013-04-01             4    2.721254                1 0.7495202
## 10   Apr 2013 2013-04-01             4    2.626984                1 0.7355556
## 11   Apr 2013 2013-04-01             4    2.707463                1 0.7285141
## 12   Apr 2013 2013-04-01             4    2.765125                1 0.7435407
## 13   Apr 2013 2013-04-01             4    2.686520                1 0.7407087
## 14   Apr 2013 2013-04-01             4    2.555556                1 0.7348877
## 16   Apr 2013 2013-04-01             4    2.652459                1 0.7539609
## 17   Apr 2013 2013-04-01             4    2.652459                1 0.7381387
## 18   Apr 2013 2013-04-01             4    2.743316                1 0.7731726
## 19   Apr 2013 2013-04-01             4    2.770492                1 0.7431838
## 20   Apr 2013 2013-04-01             4    2.762658                1 0.7379544
## 21   Apr 2013 2013-04-01             4    2.887608                1 0.7433234
## 22   Apr 2013 2013-04-01             4    2.485246                1 0.7253589
## 23   Apr 2013 2013-04-01             4    2.848138                1 0.7456864
## 24   Apr 2013 2013-04-01             4    2.710247                1 0.7297812
## 25   Apr 2013 2013-04-01             4    2.781250                1 0.7333333
## 26   Apr 2013 2013-04-01             4    2.817857                1 0.7478673
## 104  Apr 2013 2013-04-01             4    2.120301                1 0.6650943
## 105  Apr 2013 2013-04-01             4    2.693548                1 0.6999162
## 106  Apr 2013 2013-04-01             4    2.727829                1 0.7359736
## 107  Apr 2013 2013-04-01             4    2.713396                1 0.7350211
## 109  Apr 2013 2013-04-01             4    2.851266                1 0.7307380
## 110  Apr 2013 2013-04-01             4    2.667702                1 0.6933010
## 111  Apr 2013 2013-04-01             4    2.803448                1 0.7258929
## 112  Apr 2013 2013-04-01             4    2.746082                1 0.7474403
## 114  Apr 2013 2013-04-01             4    2.449275                1 0.7354221
## 141  Apr 2013 2013-04-01             4    2.813380                1 0.7102222
## 142  Apr 2013 2013-04-01             4    2.678344                1 0.7325784
## 143  Apr 2013 2013-04-01             4    2.529114                1 0.7372694
## 144  Apr 2013 2013-04-01             4    2.707547                1 0.7441659
## 146  Apr 2013 2013-04-01             4    2.551320                1 0.7480653
## 147  Apr 2013 2013-04-01             4    2.657609                1 0.7347859
## 148  Apr 2013 2013-04-01             4    2.974684                1 0.7520000
## 149  Apr 2013 2013-04-01             4    2.773649                1 0.7504570
## 150  Apr 2013 2013-04-01             4    2.689231                1 0.7431973
## 152  Apr 2013 2013-04-01             4    2.799228                1 0.7520747
## 153  Apr 2013 2013-04-01             4    2.698413                1 0.7215620
## 202  Apr 2013 2013-04-01             4    2.559486                1 0.7282708
## 203  Apr 2013 2013-04-01             4    2.422481                1 0.6778742
## 204  Apr 2013 2013-04-01             4    2.635783                1 0.6997455
## 205  Apr 2013 2013-04-01             4    2.964744                1 0.7663629
## 206  Apr 2013 2013-04-01             4    2.826568                1 0.7185741
## 207  Apr 2013 2013-04-01             4    2.827309                1 0.7183673
## 208  Apr 2013 2013-04-01             4    2.722388                1 0.7366721
## 209  Apr 2013 2013-04-01             4    2.989130                1 0.7385855
## 210  Apr 2013 2013-04-01             4    2.482072                1 0.6831140
## 211  Apr 2013 2013-04-01             4    2.532680                1 0.7202602
## 213  Apr 2013 2013-04-01             4    2.796562                1 0.7224278
## 214  Apr 2013 2013-04-01             4    2.596429                1 0.6983670
## 215  Apr 2013 2013-04-01             4    2.521875                1 0.6927039
## 217  Apr 2013 2013-04-01             4    2.396104                1 0.7055449
## 219  Apr 2013 2013-04-01             4    2.670103                1 0.6993699
## 221  Apr 2013 2013-04-01             4    2.744275                1 0.7306911
## 222  Apr 2013 2013-04-01             4    2.655914                1 0.7236328
## 223  Apr 2013 2013-04-01             4    2.602410                1 0.7384615
## 224  Apr 2013 2013-04-01             4    2.738255                1 0.7338129
## 225  Apr 2013 2013-04-01             4    2.858657                1 0.7596244
## 226  Apr 2013 2013-04-01             4    2.649007                1 0.7252947
## 228  Apr 2013 2013-04-01             4    2.738170                1 0.7469880
## 229  Apr 2013 2013-04-01             4    2.608280                1 0.7325581
## 230  Apr 2013 2013-04-01             4    2.647651                1 0.7238532
## 837  Apr 2014 2014-04-01             4    2.667722                1 0.7311362
## 839  Apr 2014 2014-04-01             4    2.680272                1 0.7562380
## 840  Apr 2014 2014-04-01             4    2.629820                1 0.7343862
## 841  Apr 2014 2014-04-01             4    2.749319                1 0.7150957
## 844  Apr 2014 2014-04-01             4    2.785965                1 0.7462406
## 845  Apr 2014 2014-04-01             4    2.619565                1 0.7237237
## 847  Apr 2014 2014-04-01             4    2.782090                1 0.7571080
## 848  Apr 2014 2014-04-01             4    2.674740                1 0.7098255
## 849  Apr 2014 2014-04-01             4    2.824138                1 0.7527574
## 850  Apr 2014 2014-04-01             4    2.693498                1 0.7243963
## 851  Apr 2014 2014-04-01             4    2.726727                1 0.7436527
## 852  Apr 2014 2014-04-01             4    2.648387                1 0.7220756
## 853  Apr 2014 2014-04-01             4    2.686649                1 0.7481032
## 854  Apr 2014 2014-04-01             4    2.555215                1 0.7457475
## 856  Apr 2014 2014-04-01             4    2.706667                1 0.7442713
## 857  Apr 2014 2014-04-01             4    2.840391                1 0.7340067
## 858  Apr 2014 2014-04-01             4    2.637771                1 0.7546501
## 859  Apr 2014 2014-04-01             4    2.525641                1 0.7202925
## 860  Apr 2014 2014-04-01             4    2.730887                1 0.7313677
## 861  Apr 2014 2014-04-01             4    2.863481                1 0.7327511
## 862  Apr 2014 2014-04-01             4    2.827839                1 0.7338403
## 863  Apr 2014 2014-04-01             4    2.711246                1 0.7439533
## 865  Apr 2014 2014-04-01             4    2.621993                1 0.7336538
## 866  Apr 2014 2014-04-01             4    2.598160                1 0.7093802
## 867  Apr 2014 2014-04-01             4    2.752475                1 0.7581818
## 868  Apr 2014 2014-04-01             4    2.630682                1 0.7223089
## 870  Apr 2014 2014-04-01             4    2.665653                1 0.7489325
## 871  Apr 2014 2014-04-01             4    2.934211                1 0.7527426
## 872  Apr 2014 2014-04-01             4    2.456338                1 0.6661574
## 873  Apr 2014 2014-04-01             4    2.722071                1 0.7334802
## 874  Apr 2014 2014-04-01             4    2.523810                1 0.7019868
## 875  Apr 2014 2014-04-01             4    2.747720                1 0.7609428
## 877  Apr 2014 2014-04-01             4    2.727586                1 0.7303786
## 878  Apr 2014 2014-04-01             4    2.772109                1 0.7244444
## 879  Apr 2014 2014-04-01             4    2.756579                1 0.7230371
## 880  Apr 2014 2014-04-01             4    2.770227                1 0.7303754
## 881  Apr 2014 2014-04-01             4    2.803175                1 0.7352206
## 882  Apr 2014 2014-04-01             4    2.472789                1 0.6917222
## 883  Apr 2014 2014-04-01             4    2.428571                1 0.7043315
## 884  Apr 2014 2014-04-01             4    2.598662                1 0.7161290
## 886  Apr 2014 2014-04-01             4    2.727829                1 0.7305487
## 887  Apr 2014 2014-04-01             4    2.944444                1 0.7511072
## 888  Apr 2014 2014-04-01             4    2.727575                1 0.7139130
## 889  Apr 2014 2014-04-01             4    2.723810                1 0.7289720
## 890  Apr 2014 2014-04-01             4    2.631250                1 0.7208904
## 905  Apr 2014 2014-04-01             4    2.788690                1 0.7343260
## 907  Apr 2014 2014-04-01             4    2.729167                1 0.7345794
## 911  Apr 2014 2014-04-01             4    2.696594                1 0.7127660
## 912  Apr 2014 2014-04-01             4    2.608414                1 0.7367459
## 915  Apr 2014 2014-04-01             4    2.826667                1 0.7223169
## 917  Apr 2014 2014-04-01             4    2.625749                1 0.7320534
## 918  Apr 2014 2014-04-01             4    2.792388                1 0.7160603
## 975  Apr 2015 2015-04-01             4    2.583554                1 0.7172312
## 978  Apr 2015 2015-04-01             4    2.812903                1 0.7188788
## 986  Apr 2015 2015-04-01             4    2.705502                1 0.7042965
## 990  Apr 2015 2015-04-01             4    2.675585                1 0.7285974
## 993  Apr 2015 2015-04-01             4    2.615917                1 0.7159091
## 995  Apr 2015 2015-04-01             4    2.511628                1 0.6997840
## 996  Apr 2015 2015-04-01             4    2.575221                1 0.7275000
## 997  Apr 2015 2015-04-01             4    2.644295                1 0.7547893
## 1001 Apr 2015 2015-04-01             4    2.596774                1 0.7213262
## 1012 Apr 2015 2015-04-01             4    2.653595                1 0.6858108
## 1017 Apr 2015 2015-04-01             4    2.721854                1 0.7007673
## 1023 Apr 2015 2015-04-01             4    2.663551                1 0.7307692
## 1024 Apr 2015 2015-04-01             4    2.703583                1 0.6992418
## 1025 Apr 2015 2015-04-01             4    2.881720                1 0.7679083
## 1026 Apr 2015 2015-04-01             4    2.731392                1 0.7201365
## 1027 Apr 2015 2015-04-01             4    2.571429                1 0.7122302
## 1028 Apr 2015 2015-04-01             4    2.547401                1 0.7101449
## 1029 Apr 2015 2015-04-01             4    2.674051                1 0.7191489
## 1030 Apr 2015 2015-04-01             4    2.574307                1 0.6952381
## 1031 Apr 2015 2015-04-01             4    2.690554                1 0.7071918
## 1032 Apr 2015 2015-04-01             4    2.636628                1 0.7362013
## 1033 Apr 2015 2015-04-01             4    2.550152                1 0.7511191
## 1034 Apr 2015 2015-04-01             4    2.934708                1 0.7426087
## 1035 Apr 2015 2015-04-01             4    2.639394                1 0.7400170
## 1036 Apr 2015 2015-04-01             4    2.433584                1 0.7010830
## 1037 Apr 2015 2015-04-01             4    2.636667                1 0.7151899
## 1038 Apr 2015 2015-04-01             4    2.668449                1 0.7481259
## 1039 Apr 2015 2015-04-01             4    2.737430                1 0.7259259
## 1040 Apr 2015 2015-04-01             4    2.689944                1 0.7523437
## 1041 Apr 2015 2015-04-01             4    2.467456                1 0.6909693
## 1042 Apr 2015 2015-04-01             4    2.681063                1 0.7060367
## 1043 Apr 2015 2015-04-01             4    2.571429                1 0.7397260
## 1044 Apr 2015 2015-04-01             4    2.573427                1 0.7002854
## 1045 Apr 2015 2015-04-01             4    2.620130                1 0.6968912
## 1046 Apr 2015 2015-04-01             4    2.705015                1 0.7114042
## 1047 Apr 2015 2015-04-01             4    2.755556                1 0.7689922
## 1048 Apr 2015 2015-04-01             4    2.946023                1 0.7221448
## 1049 Apr 2015 2015-04-01             4    2.664634                1 0.7425658
## 1050 Apr 2015 2015-04-01             4    2.616438                1 0.7385924
## 1051 Apr 2015 2015-04-01             4    2.704762                1 0.7389419
## 1052 Apr 2015 2015-04-01             4    2.731629                1 0.7071960
## 1054 Apr 2015 2015-04-01             4    2.731861                1 0.7029221
## 1055 Apr 2015 2015-04-01             4    2.667732                1 0.7173540
## 1056 Apr 2015 2015-04-01             4    2.604222                1 0.7121212
## 1057 Apr 2015 2015-04-01             4    2.664894                1 0.7483196
## 1058 Apr 2015 2015-04-01             4    2.693151                1 0.7430083
## 1059 Apr 2015 2015-04-01             4    2.656338                1 0.7372948
## 1060 Apr 2015 2015-04-01             4    2.656250                1 0.7350629
## 1061 Apr 2015 2015-04-01             4    2.666667                1 0.7333894
## 1062 Apr 2015 2015-04-01             4    2.552910                1 0.7394636
## 1063 Apr 2015 2015-04-01             4    2.661442                1 0.7312661
## 1064 Apr 2015 2015-04-01             4    2.659375                1 0.6963993
## 1065 Apr 2015 2015-04-01             4    2.736842                1 0.7349823
## 1066 Apr 2015 2015-04-01             4    2.638418                1 0.7360126
## 1067 Apr 2015 2015-04-01             4    2.717105                1 0.7361854
## 1068 Apr 2015 2015-04-01             4    2.645604                1 0.7447796
## 1069 Apr 2015 2015-04-01             4    2.788690                1 0.7454256
## 1070 Apr 2015 2015-04-01             4    2.541796                1 0.7239859
## 1071 Apr 2015 2015-04-01             4    2.605333                1 0.7033837
## 1072 Apr 2015 2015-04-01             4    2.746835                1 0.7149918
## 1073 Apr 2015 2015-04-01             4    2.661376                1 0.7375367
## 1074 Apr 2015 2015-04-01             4    2.730061                1 0.7313065
## 1075 Apr 2015 2015-04-01             4    2.753247                1 0.7432077
## 1076 Apr 2015 2015-04-01             4    2.887052                1 0.7427356
## 1077 Apr 2015 2015-04-01             4    2.516575                1 0.6970161
## 1078 Apr 2015 2015-04-01             4    2.796825                1 0.7215397
## 1079 Apr 2015 2015-04-01             4    2.737003                1 0.7264610
## 1080 Apr 2015 2015-04-01             4    2.763231                1 0.7283407
## 1081 Apr 2015 2015-04-01             4    3.021148                1 0.7183908
## 1082 Apr 2015 2015-04-01             4    2.567657                1 0.6655261
## 1083 Apr 2015 2015-04-01             4    2.728395                1 0.7342193
## 1084 Apr 2015 2015-04-01             4    2.841935                1 0.7390940
## 1085 Apr 2015 2015-04-01             4    2.926421                1 0.7346767
## 1086 Apr 2015 2015-04-01             4    2.556410                1 0.7116345
## 1088 Apr 2015 2015-04-01             4    2.914089                1 0.7335640
## 1089 Apr 2015 2015-04-01             4    2.798658                1 0.7302977
## 1090 Apr 2015 2015-04-01             4    2.813725                1 0.7271959
## 1091 Apr 2015 2015-04-01             4    2.693182                1 0.7482242
## 1092 Apr 2015 2015-04-01             4    2.874214                1 0.7406807
## 1093 Apr 2015 2015-04-01             4    2.828070                1 0.7209302
## 1094 Apr 2015 2015-04-01             4    2.755486                1 0.7065916
## 1095 Apr 2015 2015-04-01             4    2.764120                1 0.7375887
## 1096 Apr 2015 2015-04-01             4    2.563187                1 0.7116705
## 1097 Apr 2015 2015-04-01             4    2.581921                1 0.7163009
## 1098 Apr 2015 2015-04-01             4    2.813253                1 0.7113481
## 1099 Apr 2015 2015-04-01             4    2.781538                1 0.7667515
## 1100 Apr 2015 2015-04-01             4    2.651297                1 0.7365893
## 1101 Apr 2015 2015-04-01             4    2.723776                1 0.7219648
## 1103 Apr 2015 2015-04-01             4    2.736232                1 0.7018587
## 1104 Apr 2015 2015-04-01             4    2.581267                1 0.7418844
## 1105 Apr 2015 2015-04-01             4    2.250689                1 0.6791355
## 1106 Apr 2015 2015-04-01             4    2.750000                1 0.7196262
## 1107 Apr 2015 2015-04-01             4    2.660714                1 0.7163462
## 1108 Apr 2015 2015-04-01             4    2.818815                1 0.7134039
## 1110 Apr 2015 2015-04-01             4    3.048544                1 0.8219895
## 1111 Apr 2015 2015-04-01             4    2.744262                1 0.7374449
## 1112 Apr 2015 2015-04-01             4    2.594771                1 0.7345051
## 1117 Apr 2015 2015-04-01             4    2.544262                1 0.6837004
## 1118 Apr 2015 2015-04-01             4    2.509485                1 0.6764061
## 1119 Apr 2015 2015-04-01             4    2.679894                1 0.7199716
## 1121 Apr 2015 2015-04-01             4    2.600575                1 0.7188245
## 1122 Apr 2015 2015-04-01             4    2.591592                1 0.7369769
## 1124 Apr 2015 2015-04-01             4    2.589888                1 0.7169518
## 1125 Dec 2016 2016-12-01            12    2.564417                1 0.7359155
## 1126 Dec 2016 2016-12-01            12    2.743516                1 0.7374129
## 1127 Dec 2016 2016-12-01            12    3.006472                1 0.7534469
## 1128 Dec 2016 2016-12-01            12    2.691030                1 0.7264574
## 1129 Dec 2016 2016-12-01            12    2.844444                1 0.7208367
## 1130 Dec 2016 2016-12-01            12    2.539846                1 0.7417417
## 1131 Dec 2016 2016-12-01            12    2.575198                1 0.7456073
## 1132 Dec 2016 2016-12-01            12    2.654494                1 0.7348367
## 1133 Dec 2016 2016-12-01            12    2.626741                1 0.7198473
## 1134 Dec 2016 2016-12-01            12    2.635097                1 0.7102102
## 1135 Dec 2016 2016-12-01            12    2.662207                1 0.7242948
## 1136 Dec 2016 2016-12-01            12    2.742297                1 0.7371988
## 1137 Dec 2016 2016-12-01            12    2.728395                1 0.7311828
## 1138 Dec 2016 2016-12-01            12    2.710692                1 0.7534965
## 1142 Dec 2016 2016-12-01            12    2.609290                1 0.7431907
## 1143 Dec 2016 2016-12-01            12    2.587432                1 0.7223494
## 1144 Dec 2016 2016-12-01            12    2.699659                1 0.7283610
## 1146 Dec 2016 2016-12-01            12    2.749296                1 0.7589425
## 1148 Dec 2016 2016-12-01            12    2.673653                1 0.7612958
## 1155 Dec 2016 2016-12-01            12    2.648936                1 0.7388724
## 1156 Dec 2016 2016-12-01            12    2.677419                1 0.7321572
## 1158 Dec 2016 2016-12-01            12    2.639205                1 0.7455859
## 1160 Dec 2016 2016-12-01            12    2.600000                1 0.7330017
## 1161 Dec 2016 2016-12-01            12    2.657343                1 0.7129456
## 1162 Dec 2016 2016-12-01            12    2.632708                1 0.7428139
## 1164 Dec 2016 2016-12-01            12    2.605714                1 0.7238095
## 1166 Dec 2016 2016-12-01            12    2.640483                1 0.7283333
## 1167 Dec 2016 2016-12-01            12    2.669697                1 0.7409588
## 1170 Dec 2016 2016-12-01            12    2.794872                1 0.7381490
## 1174 Dec 2016 2016-12-01            12    2.573099                1 0.7230896
## 1176 Dec 2016 2016-12-01            12    3.076412                1 0.7534581
## 1177 Dec 2016 2016-12-01            12    2.856688                1 0.7550505
## 1178 Dec 2016 2016-12-01            12    2.886667                1 0.7543554
## 1179 Dec 2016 2016-12-01            12    2.721739                1 0.7851171
## 1180 Dec 2016 2016-12-01            12    2.726496                1 0.7344589
## 1181 Dec 2016 2016-12-01            12    2.743056                1 0.7321594
## 1182 Dec 2016 2016-12-01            12    2.800000                1 0.7704213
## 1185 Dec 2016 2016-12-01            12    2.661585                1 0.7506449
## 1186 Dec 2016 2016-12-01            12    2.750760                1 0.7430213
## 1188 Dec 2016 2016-12-01            12    2.789617                1 0.7479853
## 1189 Dec 2016 2016-12-01            12    2.752542                1 0.7463235
## 1191 Dec 2016 2016-12-01            12    2.729299                1 0.7577365
## 1192 Dec 2016 2016-12-01            12    2.889241                1 0.7776831
## 1193 Dec 2016 2016-12-01            12    2.818750                1 0.7624683
## 1194 Dec 2016 2016-12-01            12    2.733746                1 0.7508503
## 1203 Dec 2016 2016-12-01            12    2.721264                1 0.7346780
## 1204 Dec 2016 2016-12-01            12    2.410494                1 0.6998208
## 1205 Dec 2016 2016-12-01            12    2.571066                1 0.7498150
## 1208 Dec 2016 2016-12-01            12    2.814286                1 0.7330233
## 1209 Dec 2016 2016-12-01            12    2.527950                1 0.7090592
## 1210 Dec 2016 2016-12-01            12    2.610778                1 0.7321579
## 1213 Dec 2016 2016-12-01            12    2.662921                1 0.7482242
## 1215 Dec 2016 2016-12-01            12    2.716511                1 0.7427598
## 1217 Dec 2016 2016-12-01            12    2.370370                1 0.7123288
## 1219 Dec 2016 2016-12-01            12    2.665706                1 0.7489879
## 1221 Dec 2016 2016-12-01            12    2.473545                1 0.7225657
## 1222 Dec 2016 2016-12-01            12    2.557065                1 0.7244034
## 1225 Dec 2016 2016-12-01            12    2.495601                1 0.7187500
## 1228 Dec 2016 2016-12-01            12    2.652778                1 0.7306809
## 1230 Dec 2016 2016-12-01            12    2.787781                1 0.7526042
## 1235 Dec 2016 2016-12-01            12    2.593315                1 0.7406523
## 1238 Dec 2016 2016-12-01            12    2.484419                1 0.7078289
## 1239 Dec 2016 2016-12-01            12    2.652308                1 0.7574692
## 1241 Dec 2016 2016-12-01            12    2.790123                1 0.7471074
## 1246 Dec 2016 2016-12-01            12    2.703571                1 0.7250958
## 1247 Dec 2016 2016-12-01            12    2.607717                1 0.7132806
## 1248 Dec 2016 2016-12-01            12    2.368564                1 0.7003205
## 1249 Dec 2016 2016-12-01            12    2.776271                1 0.7325581
## 1250 Dec 2016 2016-12-01            12    2.613333                1 0.7225806
## 1252 Dec 2016 2016-12-01            12    2.460568                1 0.7195572
## 1253 Dec 2016 2016-12-01            12    2.615836                1 0.7246141
## 1255 Dec 2016 2016-12-01            12    2.660870                1 0.7512275
## 1257 Dec 2016 2016-12-01            12    2.545455                1 0.7407407
## 1258 Dec 2016 2016-12-01            12    2.682243                1 0.7454545
## 1268 Dec 2016 2016-12-01            12    2.833333                1 0.7645503
## 1272 Dec 2016 2016-12-01            12    2.821053                1 0.7451344
## 1276 Dec 2016 2016-12-01            12    2.675676                1 0.7156627
## 1281 Dec 2016 2016-12-01            12    2.840116                1 0.7296490
## 1285 Dec 2016 2016-12-01            12    2.809689                1 0.7645951
## 1289 Dec 2016 2016-12-01            12    3.127907                1 0.7486085
## 1290 Dec 2016 2016-12-01            12    2.866450                1 0.7413648
## 1291 Dec 2016 2016-12-01            12    2.710843                1 0.7481297
## 1292 Dec 2016 2016-12-01            12    2.729373                1 0.7229021
## 1294 Dec 2016 2016-12-01            12    2.466667                1 0.7273504
## 1295 Dec 2016 2016-12-01            12    2.776836                1 0.7270710
## 1296 Dec 2016 2016-12-01            12    2.611594                1 0.7162162
## 1297 Dec 2016 2016-12-01            12    2.530055                1 0.7240031
## 1298 Dec 2016 2016-12-01            12    2.603352                1 0.7338583
## 1299 Dec 2016 2016-12-01            12    2.797101                1 0.7400307
## 1300 Dec 2016 2016-12-01            12    2.744792                1 0.7334725
## 1301 Dec 2016 2016-12-01            12    2.895082                1 0.7476715
## 1302 Dec 2016 2016-12-01            12    2.718841                1 0.7420886
## 1303 Dec 2016 2016-12-01            12    2.845455                1 0.7382075
## 1304 Dec 2016 2016-12-01            12    2.702941                1 0.7613919
## 1306 Dec 2016 2016-12-01            12    2.533537                1 0.7289474
## 1307 Dec 2016 2016-12-01            12    2.832168                1 0.7641509
## 1308 Dec 2016 2016-12-01            12    2.760736                1 0.7401316
## 1309 Dec 2016 2016-12-01            12    2.766892                1 0.7425204
## 1310 Dec 2016 2016-12-01            12    2.558065                1 0.7474081
## 1311 Dec 2016 2016-12-01            12    2.672414                1 0.7226107
## 1312 Dec 2016 2016-12-01            12    2.674931                1 0.7372817
## 1313 Dec 2016 2016-12-01            12    2.974843                1 0.7580128
## 1315 Dec 2016 2016-12-01            12    2.501538                1 0.7344173
## 1316 Dec 2016 2016-12-01            12    2.822485                1 0.7762408
## 1317 Dec 2016 2016-12-01            12    2.656642                1 0.7402235
## 1318 Dec 2016 2016-12-01            12    2.693662                1 0.7362849
## 1319 Dec 2016 2016-12-01            12    2.518519                1 0.7214854
## 1320 Dec 2016 2016-12-01            12    2.678161                1 0.7420382
## 1321 Dec 2016 2016-12-01            12    2.821326                1 0.7416667
## 1322 Dec 2016 2016-12-01            12    2.629179                1 0.7043974
## 1323 Dec 2016 2016-12-01            12    2.535897                1 0.7282769
## 1324 Dec 2016 2016-12-01            12    2.595679                1 0.7169650
## 1325 Dec 2016 2016-12-01            12    2.737542                1 0.7121867
## 1326 Dec 2016 2016-12-01            12    2.739255                1 0.7428127
## 1327 Dec 2016 2016-12-01            12    2.729032                1 0.7427568
## 1328 Dec 2016 2016-12-01            12    2.686007                1 0.7226814
## 1329 Dec 2016 2016-12-01            12    2.738889                1 0.7369208
## 1330 Dec 2016 2016-12-01            12    2.632312                1 0.7505957
## 1331 Dec 2016 2016-12-01            12    2.779264                1 0.7406417
## 1332 Dec 2016 2016-12-01            12    2.689024                1 0.7164907
## 1333 Dec 2016 2016-12-01            12    2.678808                1 0.7127753
## 1334 Dec 2016 2016-12-01            12    2.781350                1 0.7521739
## 1335 Dec 2016 2016-12-01            12    2.888179                1 0.7706735
## 1336 Dec 2016 2016-12-01            12    2.642405                1 0.7273519
## 1337 Dec 2016 2016-12-01            12    2.731629                1 0.7409012
## 1338 Dec 2016 2016-12-01            12    2.710963                1 0.7418182
## 1340 Dec 2016 2016-12-01            12    2.716612                1 0.7322212
## 1341 Dec 2016 2016-12-01            12    2.931271                1 0.7462817
## 1343 Dec 2016 2016-12-01            12    2.699422                1 0.7430390
## 1344 Dec 2016 2016-12-01            12    2.739550                1 0.7447552
## 1346 Dec 2016 2016-12-01            12    2.790036                1 0.7445394
## 1347 Dec 2016 2016-12-01            12    2.607843                1 0.7448000
## 1349 Dec 2016 2016-12-01            12    2.733974                1 0.7186184
## 1354 Dec 2016 2016-12-01            12    2.663580                1 0.7126342
## 1355 Dec 2016 2016-12-01            12    2.389439                1 0.7077224
## 1356 Dec 2016 2016-12-01            12    2.694215                1 0.7353383
## 1357 Dec 2016 2016-12-01            12    2.922360                1 0.7480127
## 1358 Dec 2016 2016-12-01            12    2.792244                1 0.7352298
## 1361 Dec 2016 2016-12-01            12    2.900709                1 0.7342908
## 1364 Dec 2016 2016-12-01            12    2.728302                1 0.7251755
## 1365 Dec 2016 2016-12-01            12    2.580858                1 0.7342723
## 1367 Dec 2016 2016-12-01            12    2.678788                1 0.7263763
## 1368 Dec 2016 2016-12-01            12    2.635452                1 0.7183227
## 1369 Dec 2016 2016-12-01            12    2.605797                1 0.7303006
## 1370 Dec 2016 2016-12-01            12    2.613383                1 0.7254902
## 1371 Dec 2016 2016-12-01            12    2.722222                1 0.7371681
## 1372 Dec 2016 2016-12-01            12    2.646465                1 0.7318436
## 1375 Dec 2016 2016-12-01            12    2.619377                1 0.7299904
## 1545 Aug 2017 2017-08-01             8    2.769481                1 0.7430314
## 1546 Aug 2017 2017-08-01             8    2.755034                1 0.7182852
## 1547 Aug 2017 2017-08-01             8    2.607843                1 0.7273437
## 1549 Aug 2017 2017-08-01             8    2.816129                1 0.7329975
## 1550 Aug 2017 2017-08-01             8    2.779026                1 0.7260274
## 1552 Aug 2017 2017-08-01             8    2.645963                1 0.7202029
## 1553 Aug 2017 2017-08-01             8    2.675900                1 0.7517510
## 1554 Aug 2017 2017-08-01             8    2.757862                1 0.7278008
## 1555 Aug 2017 2017-08-01             8    2.685246                1 0.7222222
## 1556 Aug 2017 2017-08-01             8    2.732143                1 0.7230624
## 1557 Aug 2017 2017-08-01             8    2.609610                1 0.7265886
## 1558 Aug 2017 2017-08-01             8    2.663818                1 0.7248062
## 1559 Aug 2017 2017-08-01             8    2.857143                1 0.7420814
## 1560 Aug 2017 2017-08-01             8    2.672297                1 0.7210574
## 1562 Aug 2017 2017-08-01             8    2.578348                1 0.7263242
## 1563 Aug 2017 2017-08-01             8    2.525373                1 0.7032419
## 1565 Aug 2017 2017-08-01             8    2.815789                1 0.7508772
## 1566 Aug 2017 2017-08-01             8    2.631737                1 0.7288557
## 1567 Aug 2017 2017-08-01             8    2.807829                1 0.7429379
## 1568 Aug 2017 2017-08-01             8    2.674658                1 0.7431018
## 1569 Aug 2017 2017-08-01             8    2.728188                1 0.7317732
## 1571 Aug 2017 2017-08-01             8    2.702312                1 0.7259317
## 1572 Aug 2017 2017-08-01             8    2.443425                1 0.6829060
## 1573 Aug 2017 2017-08-01             8    2.713805                1 0.7354015
## 1574 Aug 2017 2017-08-01             8    2.680251                1 0.7258065
## 1575 Aug 2017 2017-08-01             8    2.681818                1 0.7189277
## 1576 Aug 2017 2017-08-01             8    2.574648                1 0.7231013
## 1577 Aug 2017 2017-08-01             8    2.548896                1 0.7220733
## 1578 Aug 2017 2017-08-01             8    2.789474                1 0.7458223
## 1579 Aug 2017 2017-08-01             8    2.737003                1 0.7378401
## 1580 Aug 2017 2017-08-01             8    2.700000                1 0.7092391
## 1581 Aug 2017 2017-08-01             8    2.740223                1 0.7255917
## 1582 Aug 2017 2017-08-01             8    2.730435                1 0.7251732
## 1583 Aug 2017 2017-08-01             8    2.762376                1 0.7290941
## 1584 Aug 2017 2017-08-01             8    2.676976                1 0.7273576
## 1585 Aug 2017 2017-08-01             8    2.726761                1 0.7272727
## 1586 Aug 2017 2017-08-01             8    2.712991                1 0.7288961
## 1587 Aug 2017 2017-08-01             8    2.725989                1 0.7794830
## 1589 Aug 2017 2017-08-01             8    2.785479                1 0.7658802
## 1590 Aug 2017 2017-08-01             8    2.752778                1 0.7249451
## 1591 Aug 2017 2017-08-01             8    2.818182                1 0.7342105
## 1592 Aug 2017 2017-08-01             8    2.791809                1 0.7422868
## 1593 Aug 2017 2017-08-01             8    2.657658                1 0.7308010
## 1594 Aug 2017 2017-08-01             8    2.517483                1 0.7265388
## 1595 Aug 2017 2017-08-01             8    2.735669                1 0.7298216
## 1596 Aug 2017 2017-08-01             8    2.808023                1 0.7270030
## 1597 Aug 2017 2017-08-01             8    2.730519                1 0.7529096
## 1598 Aug 2017 2017-08-01             8    2.740845                1 0.7343396
## 1599 Aug 2017 2017-08-01             8    2.601744                1 0.7069510
## 1600 Aug 2017 2017-08-01             8    2.728223                1 0.7236599
## 1601 Aug 2017 2017-08-01             8    2.616959                1 0.7288274
## 1602 Aug 2017 2017-08-01             8    2.649573                1 0.7317073
## 1603 Aug 2017 2017-08-01             8    2.873134                1 0.7354346
## 1605 Aug 2017 2017-08-01             8    2.635514                1 0.7280551
## 1607 Aug 2017 2017-08-01             8    2.627168                1 0.7336562
## 1608 Aug 2017 2017-08-01             8    2.638889                1 0.7546337
## 1610 Aug 2017 2017-08-01             8    2.696793                1 0.7341270
## 1611 Aug 2017 2017-08-01             8    2.561538                1 0.7260174
## 1612 Aug 2017 2017-08-01             8    2.511173                1 0.7197758
## 1613 Aug 2017 2017-08-01             8    2.693333                1 0.7352138
## 1614 Aug 2017 2017-08-01             8    2.860215                1 0.7492958
## 1615 Aug 2017 2017-08-01             8    2.749164                1 0.7365591
## 1616 Aug 2017 2017-08-01             8    2.695187                1 0.7293777
## 1617 Aug 2017 2017-08-01             8    2.572327                1 0.7238938
## 1618 Aug 2017 2017-08-01             8    2.601156                1 0.7293355
## 1620 Aug 2017 2017-08-01             8    2.710191                1 0.7336207
## 1621 Aug 2017 2017-08-01             8    2.552817                1 0.6951103
## 1622 Aug 2017 2017-08-01             8    2.701695                1 0.7352399
## 1624 Aug 2017 2017-08-01             8    2.590625                1 0.7177489
## 1625 Aug 2017 2017-08-01             8    2.722054                1 0.7307380
## 1626 Aug 2017 2017-08-01             8    2.722930                1 0.7184874
## 1627 Aug 2017 2017-08-01             8    2.646341                1 0.7355932
## 1628 Aug 2017 2017-08-01             8    2.714286                1 0.7343750
## 1629 Aug 2017 2017-08-01             8    2.621469                1 0.7227414
## 1630 Aug 2017 2017-08-01             8    2.583815                1 0.7487437
## 1631 Aug 2017 2017-08-01             8    2.581662                1 0.7331164
## 1632 Aug 2017 2017-08-01             8    2.554839                1 0.7259395
## 1634 Aug 2017 2017-08-01             8    2.820755                1 0.7468776
## 1635 Aug 2017 2017-08-01             8    2.787356                1 0.7255049
## 1636 Aug 2017 2017-08-01             8    2.397059                1 0.6691297
## 1641 Aug 2017 2017-08-01             8    2.681347                1 0.7521802
## 1642 Aug 2017 2017-08-01             8    2.680233                1 0.7282780
## 1643 Aug 2017 2017-08-01             8    2.674912                1 0.7223282
## 1644 Aug 2017 2017-08-01             8    2.758410                1 0.7529215
## 1645 Aug 2017 2017-08-01             8    2.631902                1 0.7409326
## 1646 Aug 2017 2017-08-01             8    2.679083                1 0.7159265
## 1647 Aug 2017 2017-08-01             8    2.692042                1 0.7318909
## 1648 Aug 2017 2017-08-01             8    2.600515                1 0.7413666
## 1651 Aug 2017 2017-08-01             8    2.725979                1 0.7240076
## 1652 Aug 2017 2017-08-01             8    2.790909                1 0.7356230
## 1654 Aug 2017 2017-08-01             8    2.549488                1 0.7027281
## 1655 Aug 2017 2017-08-01             8    2.748588                1 0.7427481
## 1656 Aug 2017 2017-08-01             8    2.686275                1 0.7388290
## 1657 Aug 2017 2017-08-01             8    2.757764                1 0.7538200
## 1658 Aug 2017 2017-08-01             8    2.837758                1 0.7539185
## 1659 Aug 2017 2017-08-01             8    2.706070                1 0.7365217
## 1660 Aug 2017 2017-08-01             8    2.661808                1 0.7446982
## 1661 Aug 2017 2017-08-01             8    2.648101                1 0.7402689
## 1662 Aug 2017 2017-08-01             8    2.549575                1 0.7569386
## 1663 Aug 2017 2017-08-01             8    2.707831                1 0.7380952
## 1664 Aug 2017 2017-08-01             8    2.766026                1 0.7313559
## 1665 Aug 2017 2017-08-01             8    2.784264                1 0.7412162
## 1666 Aug 2017 2017-08-01             8    2.602041                1 0.7391304
## 1667 Aug 2017 2017-08-01             8    2.713924                1 0.7597449
## 1668 Aug 2017 2017-08-01             8    2.750000                1 0.7528180
## 1669 Aug 2017 2017-08-01             8    2.649852                1 0.7612958
## 1670 Aug 2017 2017-08-01             8    2.621891                1 0.7314365
## 1671 Aug 2017 2017-08-01             8    2.754839                1 0.7317909
## 1672 Aug 2017 2017-08-01             8    2.742331                1 0.7425249
## 1673 Aug 2017 2017-08-01             8    2.763077                1 0.7397035
## 1674 Aug 2017 2017-08-01             8    2.598784                1 0.7364341
## 1675 Aug 2017 2017-08-01             8    2.825243                1 0.7558442
## 1676 Aug 2017 2017-08-01             8    2.762058                1 0.7628774
## 1677 Aug 2017 2017-08-01             8    2.544794                1 0.7517883
## 1678 Aug 2017 2017-08-01             8    2.745407                1 0.7444840
## 1679 Aug 2017 2017-08-01             8    2.617162                1 0.7467043
## 1680 Aug 2017 2017-08-01             8    2.763407                1 0.7306088
## 1681 Aug 2017 2017-08-01             8    2.693671                1 0.7605432
## 1682 Aug 2017 2017-08-01             8    2.757009                1 0.7326159
## 1683 Aug 2017 2017-08-01             8    2.932394                1 0.7576419
## 1684 Aug 2017 2017-08-01             8    2.712121                1 0.7415079
## 1685 Aug 2017 2017-08-01             8    2.659459                1 0.7208791
## 1686 Aug 2017 2017-08-01             8    2.857143                1 0.7326007
## 1687 Aug 2017 2017-08-01             8    2.651376                1 0.7335025
## 1688 Aug 2017 2017-08-01             8    2.739247                1 0.7536982
## 1689 Aug 2017 2017-08-01             8    2.671779                1 0.7381356
## 1690 Aug 2017 2017-08-01             8    2.694268                1 0.7255575
## 1691 Aug 2017 2017-08-01             8    2.559113                1 0.7384506
## 1692 Aug 2017 2017-08-01             8    2.729050                1 0.7526965
## 1693 Aug 2017 2017-08-01             8    2.698361                1 0.7488626
## 1694 Aug 2017 2017-08-01             8    2.688347                1 0.7085714
## 1695 Aug 2017 2017-08-01             8    2.707602                1 0.7565359
## 1696 Aug 2017 2017-08-01             8    2.666667                1 0.7500000
## 1697 Aug 2017 2017-08-01             8    2.652893                1 0.7339939
## 1698 Aug 2017 2017-08-01             8    2.711688                1 0.7592727
## 1699 Aug 2017 2017-08-01             8    2.814404                1 0.7373004
## 1700 Aug 2017 2017-08-01             8    2.704969                1 0.7337826
## 1701 Aug 2017 2017-08-01             8    2.692090                1 0.7404817
## 1702 Aug 2017 2017-08-01             8    2.803175                1 0.7618637
## 1703 Aug 2017 2017-08-01             8    2.820144                1 0.7272727
## 1704 Aug 2017 2017-08-01             8    2.753846                1 0.7372323
## 1705 Aug 2017 2017-08-01             8    2.506112                1 0.7553427
## 1706 Aug 2017 2017-08-01             8    2.653333                1 0.7612854
## 1707 Aug 2017 2017-08-01             8    2.577259                1 0.7378965
## 1708 Aug 2017 2017-08-01             8    2.669492                1 0.7482185
## 1709 Aug 2017 2017-08-01             8    2.672872                1 0.7438934
## 1710 Aug 2017 2017-08-01             8    2.582210                1 0.7192192
## 1711 Aug 2017 2017-08-01             8    2.622283                1 0.7148148
## 1712 Aug 2017 2017-08-01             8    2.615183                1 0.7602740
## 1713 Aug 2017 2017-08-01             8    2.645963                1 0.7533156
## 1714 Aug 2017 2017-08-01             8    2.663317                1 0.7459536
## 1715 Aug 2017 2017-08-01             8    2.597884                1 0.7361319
## 1716 Aug 2017 2017-08-01             8    2.806548                1 0.7361436
## 1717 Aug 2017 2017-08-01             8    2.721180                1 0.7435897
## 1718 Aug 2017 2017-08-01             8    2.664935                1 0.7533040
## 1719 Aug 2017 2017-08-01             8    2.784247                1 0.7424658
## 1720 Aug 2017 2017-08-01             8    2.752294                1 0.7383101
## 1721 Aug 2017 2017-08-01             8    2.761610                1 0.7408638
## 1722 Aug 2017 2017-08-01             8    2.768730                1 0.7365685
## 1723 Aug 2017 2017-08-01             8    2.691131                1 0.7333333
## 1724 Aug 2017 2017-08-01             8    2.711656                1 0.7555556
## 1725 Aug 2017 2017-08-01             8    2.726519                1 0.7393258
## 1726 Aug 2017 2017-08-01             8    2.698413                1 0.7495591
## 1727 Aug 2017 2017-08-01             8    2.815013                1 0.7317073
## 1728 Aug 2017 2017-08-01             8    2.835484                1 0.7487223
## 1729 Aug 2017 2017-08-01             8    2.726727                1 0.7623846
## 1730 Aug 2017 2017-08-01             8    2.624339                1 0.7256767
## 1731 Aug 2017 2017-08-01             8    2.728435                1 0.7317909
## 1732 Aug 2017 2017-08-01             8    2.803681                1 0.7566225
## 1733 Aug 2017 2017-08-01             8    2.969697                1 0.7723292
## 1734 Aug 2017 2017-08-01             8    2.580110                1 0.7442231
## 1735 Aug 2017 2017-08-01             8    2.757475                1 0.7621671
## 1736 Aug 2017 2017-08-01             8    2.882759                1 0.7398230
## 1738 Aug 2017 2017-08-01             8    2.769231                1 0.7188020
## 1739 Aug 2017 2017-08-01             8    2.600000                1 0.7107584
## 1740 Aug 2017 2017-08-01             8    2.748175                1 0.7171429
## 1741 Aug 2017 2017-08-01             8    2.687273                1 0.7367896
## 1742 Aug 2017 2017-08-01             8    2.691643                1 0.7212355
## 1743 Aug 2017 2017-08-01             8    2.598639                1 0.7173709
## 1744 Aug 2017 2017-08-01             8    2.754491                1 0.7238395
## 1746 Aug 2017 2017-08-01             8    2.651466                1 0.7090592
## 1747 Aug 2017 2017-08-01             8    2.596721                1 0.7346939
## 1748 Aug 2017 2017-08-01             8    2.813149                1 0.7337545
## 1749 Aug 2017 2017-08-01             8    2.481928                1 0.7152778
## 1750 Aug 2017 2017-08-01             8    2.577419                1 0.7217706
## 1751 Aug 2017 2017-08-01             8    2.785714                1 0.7402934
## 1752 Aug 2017 2017-08-01             8    2.630814                1 0.7274920
## 1753 Aug 2017 2017-08-01             8    2.540541                1 0.7073579
## 1754 Aug 2017 2017-08-01             8    2.618076                1 0.7207063
## 1755 Aug 2017 2017-08-01             8    2.593923                1 0.7076112
## 1758 Aug 2017 2017-08-01             8    2.894737                1 0.7370184
## 1759 Aug 2017 2017-08-01             8    2.768392                1 0.7356988
## 1760 Aug 2017 2017-08-01             8    2.588785                1 0.7133047
## 1761 Aug 2017 2017-08-01             8    2.581749                1 0.7080292
## 1762 Aug 2017 2017-08-01             8    2.713896                1 0.7323529
## 1763 Aug 2017 2017-08-01             8    2.697740                1 0.7380216
## 1764 Aug 2017 2017-08-01             8    2.631068                1 0.7304582
## 1765 Aug 2017 2017-08-01             8    2.695971                1 0.7345309
## 1766 Aug 2017 2017-08-01             8    2.741135                1 0.7224299
## 1768 Aug 2017 2017-08-01             8    2.743056                1 0.7188353
## 1769 Aug 2017 2017-08-01             8    2.700000                1 0.7463415
## 1770 Aug 2017 2017-08-01             8    2.614943                1 0.7239459
## 1771 Aug 2017 2017-08-01             8    2.646865                1 0.7544685
## 1772 Aug 2017 2017-08-01             8    2.642651                1 0.7277778
## 1774 Aug 2017 2017-08-01             8    2.751534                1 0.7304560
## 1775 Aug 2017 2017-08-01             8    2.698413                1 0.7396664
## 1776 Aug 2017 2017-08-01             8    2.678344                1 0.7091062
## 1779 Aug 2017 2017-08-01             8    2.492401                1 0.7124240
## 1780 Aug 2017 2017-08-01             8    2.663793                1 0.7230889
## 1782 Aug 2017 2017-08-01             8    2.792763                1 0.7300086
## 1785 Aug 2017 2017-08-01             8    2.673973                1 0.7289022
## 1786 Aug 2017 2017-08-01             8    2.924342                1 0.7483165
## 1788 Aug 2017 2017-08-01             8    2.622074                1 0.7279480
## 1789 Aug 2017 2017-08-01             8    2.720430                1 0.7263158
## 1790 Aug 2017 2017-08-01             8    2.588972                1 0.7213687
## 1791 Aug 2017 2017-08-01             8    2.796667                1 0.7282986
## 1793 Aug 2017 2017-08-01             8    2.766871                1 0.7442244
## 1800 Aug 2017 2017-08-01             8    2.814394                1 0.7103250
## 1802 Aug 2017 2017-08-01             8    2.749129                1 0.7325905
## 1805 Aug 2017 2017-08-01             8    2.737542                1 0.7183958
## 1806 Aug 2017 2017-08-01             8    2.444744                1 0.7003861
## 1807 Aug 2017 2017-08-01             8    2.763736                1 0.7232207
## 1808 Aug 2017 2017-08-01             8    2.674699                1 0.7284660
## 1809 Aug 2017 2017-08-01             8    2.968858                1 0.7579505
## 1810 Aug 2017 2017-08-01             8    2.748485                1 0.7344130
## 1811 Aug 2017 2017-08-01             8    2.770308                1 0.7224251
## 1812 Aug 2017 2017-08-01             8    2.707006                1 0.7264957
## 1813 Aug 2017 2017-08-01             8    2.649547                1 0.7489325
## 1814 Aug 2017 2017-08-01             8    2.541219                1 0.7040715
## 1815 Aug 2017 2017-08-01             8    2.776536                1 0.7218591
## 1816 Aug 2017 2017-08-01             8    3.048860                1 0.7578947
## 1817 Aug 2017 2017-08-01             8    2.679310                1 0.7323280
## 1819 Aug 2017 2017-08-01             8    2.806584                1 0.7126437
## 1821 Aug 2017 2017-08-01             8    2.601852                1 0.7162277
## 1822 Aug 2017 2017-08-01             8    2.741818                1 0.7487587
## 1823 Aug 2017 2017-08-01             8    2.839879                1 0.7332293
## 1824 Aug 2017 2017-08-01             8    2.660000                1 0.7234814
## 1826 Aug 2017 2017-08-01             8    2.831715                1 0.7303840
## 1827 Aug 2017 2017-08-01             8    2.596306                1 0.7415222
## 1828 Aug 2017 2017-08-01             8    2.702703                1 0.7299270
## 1829 Aug 2017 2017-08-01             8    2.647841                1 0.7298535
## 1831 Aug 2017 2017-08-01             8    2.664516                1 0.7309735
## 1832 Aug 2017 2017-08-01             8    2.779070                1 0.7370856
## 1833 Aug 2017 2017-08-01             8    2.696078                1 0.7346394
## 1834 Aug 2017 2017-08-01             8    2.650273                1 0.7255049
## 1835 Aug 2017 2017-08-01             8    2.850365                1 0.7333333
## 1836 Aug 2017 2017-08-01             8    2.766551                1 0.7237922
## 1837 Aug 2017 2017-08-01             8    2.779605                1 0.7316017
## 1838 Aug 2017 2017-08-01             8    2.678571                1 0.7341867
## 1839 Aug 2017 2017-08-01             8    2.660057                1 0.7330211
## 1840 Aug 2017 2017-08-01             8    2.612069                1 0.7301205
## 1842 Aug 2017 2017-08-01             8    2.644699                1 0.7389912
## 1844 Aug 2017 2017-08-01             8    2.546980                1 0.7173913
## 1845 Aug 2017 2017-08-01             8    2.731988                1 0.7258806
## 1846 Aug 2017 2017-08-01             8    2.645963                1 0.7383016
## 1847 Aug 2017 2017-08-01             8    2.630573                1 0.7571036
## 1848 Aug 2017 2017-08-01             8    2.724359                1 0.7535461
## 1849 Aug 2017 2017-08-01             8    2.553719                1 0.7328063
## 1850 Aug 2017 2017-08-01             8    2.604294                1 0.7080901
## 1852 Aug 2017 2017-08-01             8    2.603878                1 0.7258687
## 1853 Aug 2017 2017-08-01             8    2.711806                1 0.7445186
## 1854 Aug 2017 2017-08-01             8    2.567485                1 0.7513465
## 1855 Aug 2017 2017-08-01             8    2.787986                1 0.7285319
## 1856 Aug 2017 2017-08-01             8    2.737160                1 0.7213376
## 1857 Aug 2017 2017-08-01             8    2.675758                1 0.7285479
## 1858 Aug 2017 2017-08-01             8    2.716216                1 0.7142857
## 1859 Aug 2017 2017-08-01             8    2.728188                1 0.7298025
## 1862 Aug 2017 2017-08-01             8    2.813291                1 0.7310855
## 1863 Aug 2017 2017-08-01             8    2.584046                1 0.7141732
## 1864 Aug 2017 2017-08-01             8          NA                1 0.7270660
## 1867 Aug 2017 2017-08-01             8    2.812500                1 0.7099036
## 1868 Aug 2017 2017-08-01             8    2.676101                1 0.7273504
## 1871 Aug 2017 2017-08-01             8    2.828383                1 0.7465157
## 1874 Aug 2017 2017-08-01             8    2.715762                1 0.7443343
## 1876 Aug 2017 2017-08-01             8    2.755700                1 0.7382199
## 1878 Aug 2017 2017-08-01             8    2.582418                1 0.7148289
## 1879 Aug 2017 2017-08-01             8    2.879870                1 0.7478921
## 1881 Aug 2017 2017-08-01             8    2.841317                1 0.7519810
## 1882 Aug 2017 2017-08-01             8    2.755486                1 0.7367980
## 1884 Aug 2017 2017-08-01             8    2.879880                1 0.7376923
## 1885 Aug 2017 2017-08-01             8    2.413174                1 0.7215756
## 1887 Aug 2017 2017-08-01             8    2.527132                1 0.7386707
## 1892 Aug 2017 2017-08-01             8    2.694915                1 0.7117278
## 1894 Aug 2017 2017-08-01             8    2.854305                1 0.7373824
## 1895 Aug 2017 2017-08-01             8    2.735294                1 0.7234226
## 1896 Aug 2017 2017-08-01             8    2.624138                1 0.7226971
## 1897 Aug 2017 2017-08-01             8    2.714286                1 0.7320789
## 1898 Aug 2017 2017-08-01             8    2.714744                1 0.7190153
## 1901 Aug 2017 2017-08-01             8    2.668675                1 0.7226754
## 1905 Aug 2017 2017-08-01             8          NA                1 0.7287279
## 1907 Aug 2017 2017-08-01             8    2.684015                1 0.7113300
## 1912 Aug 2017 2017-08-01             8    2.603960                1 0.7305556
## 1914 Aug 2017 2017-08-01             8    2.811912                1 0.7419355
## 1915 Aug 2017 2017-08-01             8    2.429134                1 0.6750547
## 1917 Aug 2017 2017-08-01             8    2.868852                1 0.7655293
## 1918 Aug 2017 2017-08-01             8    2.750760                1 0.7357724
## 1922 Aug 2017 2017-08-01             8    2.641104                1 0.7403267
## 1923 Aug 2017 2017-08-01             8    2.853125                1 0.7422764
## 1924 Aug 2017 2017-08-01             8    2.853147                1 0.7164179
## 1925 Aug 2017 2017-08-01             8    2.730104                1 0.7360075
## 1927 Aug 2017 2017-08-01             8    2.753571                1 0.7349857
## 1928 Aug 2017 2017-08-01             8    2.675393                1 0.7459854
## 1929 Aug 2017 2017-08-01             8    2.685792                1 0.7238586
## 1930 Aug 2017 2017-08-01             8    2.799242                1 0.7188716
## 1933 Aug 2017 2017-08-01             8    2.787356                1 0.7255049
## 1935 Aug 2017 2017-08-01             8    2.643243                1 0.7353383
## 1936 Aug 2017 2017-08-01             8    2.837838                1 0.7374890
## 1937 Aug 2017 2017-08-01             8    2.726667                1 0.7131648
## 1938 Aug 2017 2017-08-01             8    2.729537                1 0.7375000
## 1939 Aug 2017 2017-08-01             8    2.738971                1 0.7464930
## 1941 Aug 2017 2017-08-01             8    2.854545                1 0.7398680
## 1942 Aug 2017 2017-08-01             8    2.732938                1 0.7257683
## 1944 Aug 2017 2017-08-01             8    2.957295                1 0.7393238
## 1945 Aug 2017 2017-08-01             8    2.704762                1 0.7226463
## 1946 Aug 2017 2017-08-01             8    2.777027                1 0.7378815
## 1947 Aug 2017 2017-08-01             8    2.733333                1 0.7341092
## 1948 Aug 2017 2017-08-01             8    2.690544                1 0.7440571
## 1949 Aug 2017 2017-08-01             8    2.778502                1 0.7359793
## 1952 Aug 2017 2017-08-01             8    2.886792                1 0.7203390
## 1953 Aug 2017 2017-08-01             8    2.815331                1 0.7266187
## 1955 Aug 2017 2017-08-01             8    2.612676                1 0.7375746
## 1956 Aug 2017 2017-08-01             8    2.824926                1 0.7420109
## 1958 Aug 2017 2017-08-01             8    2.850174                1 0.7303571
## 1959 Aug 2017 2017-08-01             8    2.775510                1 0.7206662
## 1960 Aug 2017 2017-08-01             8    2.720497                1 0.7423729
## 1963 Aug 2017 2017-08-01             8    2.883212                1 0.7376284
## 1964 Aug 2017 2017-08-01             8    2.764479                1 0.7261663
## 1965 Aug 2017 2017-08-01             8    2.559871                1 0.7406367
## 1973 Aug 2017 2017-08-01             8    2.708197                1 0.7226597
## 1975 Sep 2018 2018-09-01             9    2.779783                1 0.7109880
## 1976 Sep 2018 2018-09-01             9    2.916955                1 0.7506679
## 1977 Sep 2018 2018-09-01             9    2.907285                1 0.7347280
## 1978 Sep 2018 2018-09-01             9    2.664935                1 0.7235543
## 1979 Sep 2018 2018-09-01             9    2.666667                1 0.7481542
## 1980 Sep 2018 2018-09-01             9    2.770677                1 0.7311508
## 1981 Sep 2018 2018-09-01             9    2.859873                1 0.7546218
## 1982 Sep 2018 2018-09-01             9    2.760606                1 0.7370550
## 1983 Sep 2018 2018-09-01             9    2.747059                1 0.7550525
## 1984 Sep 2018 2018-09-01             9    2.849315                1 0.7530775
## 1985 Sep 2018 2018-09-01             9    2.735385                1 0.7310855
## 1986 Sep 2018 2018-09-01             9    2.740845                1 0.7272048
## 1987 Sep 2018 2018-09-01             9    2.857143                1 0.7356715
## 1988 Sep 2018 2018-09-01             9    2.813754                1 0.7490465
## 1989 Sep 2018 2018-09-01             9    2.894410                1 0.7379256
## 1990 Sep 2018 2018-09-01             9    2.691429                1 0.7163498
## 1992 Sep 2018 2018-09-01             9    2.874150                1 0.7354221
## 1993 Sep 2018 2018-09-01             9    2.828947                1 0.7369323
## 1994 Sep 2018 2018-09-01             9    2.911864                1 0.7430796
## 1995 Sep 2018 2018-09-01             9    2.758503                1 0.7502313
## 1996 Sep 2018 2018-09-01             9    2.622150                1 0.7149201
## 1997 Sep 2018 2018-09-01             9    2.650307                1 0.7422680
## 1998 Sep 2018 2018-09-01             9    2.881533                1 0.7463899
## 1999 Sep 2018 2018-09-01             9    2.668588                1 0.6988679
## 2000 Sep 2018 2018-09-01             9    2.717868                1 0.7429306
## 2001 Sep 2018 2018-09-01             9    2.892593                1 0.7438095
## 2002 Sep 2018 2018-09-01             9    2.855219                1 0.7399651
## 2003 Sep 2018 2018-09-01             9    2.723183                1 0.7128623
## 2004 Sep 2018 2018-09-01             9    2.594595                1 0.7020110
## 2005 Sep 2018 2018-09-01             9    2.846386                1 0.7371295
## 2006 Sep 2018 2018-09-01             9    2.630058                1 0.7309237
## 2007 Sep 2018 2018-09-01             9    2.596257                1 0.7372817
## 2008 Sep 2018 2018-09-01             9    2.989247                1 0.7574932
## 2009 Sep 2018 2018-09-01             9    2.694444                1 0.7373311
## 2010 Sep 2018 2018-09-01             9    2.841424                1 0.7292359
## 2011 Sep 2018 2018-09-01             9    2.790769                1 0.7332255
## 2012 Sep 2018 2018-09-01             9    2.822581                1 0.7377740
## 2013 Sep 2018 2018-09-01             9    2.677054                1 0.7423409
## 2014 Sep 2018 2018-09-01             9    2.785978                1 0.7082552
## 2015 Sep 2018 2018-09-01             9    2.743590                1 0.7256971
## 2016 Sep 2018 2018-09-01             9    2.725543                1 0.7457249
## 2017 Sep 2018 2018-09-01             9    2.766129                1 0.7467344
## 2018 Sep 2018 2018-09-01             9    2.905797                1 0.7481343
## 2019 Sep 2018 2018-09-01             9    2.741611                1 0.7366997
## 2020 Sep 2018 2018-09-01             9    2.778098                1 0.7421093
## 2021 Sep 2018 2018-09-01             9    2.849462                1 0.7201087
## 2022 Sep 2018 2018-09-01             9    2.698305                1 0.7145422
## 2023 Sep 2018 2018-09-01             9    2.767442                1 0.7378211
## 2024 Sep 2018 2018-09-01             9    2.797059                1 0.7270642
## 2025 Sep 2018 2018-09-01             9    2.921136                1 0.7223089
## 2026 Sep 2018 2018-09-01             9    2.928144                1 0.7465649
## 2027 Sep 2018 2018-09-01             9    2.825083                1 0.7360275
## 2028 Sep 2018 2018-09-01             9    2.761194                1 0.7355865
## 2029 Sep 2018 2018-09-01             9    2.678063                1 0.7159177
## 2031 Sep 2018 2018-09-01             9    2.649390                1 0.7290268
## 2032 Sep 2018 2018-09-01             9    2.679412                1 0.7241653
## 2033 Sep 2018 2018-09-01             9    2.782918                1 0.7308411
## 2034 Sep 2018 2018-09-01             9    2.910299                1 0.7448980
## 2036 Sep 2018 2018-09-01             9    2.739726                1 0.7366483
## 2037 Sep 2018 2018-09-01             9    2.593220                1 0.7121800
## 2038 Sep 2018 2018-09-01             9    2.867797                1 0.7350130
## 2039 Sep 2018 2018-09-01             9    2.796774                1 0.7255230
## 2040 Sep 2018 2018-09-01             9    2.655172                1 0.7289157
## 2041 Sep 2018 2018-09-01             9    2.822695                1 0.7190605
## 2042 Sep 2018 2018-09-01             9    2.598007                1 0.7194112
## 2047 Sep 2018 2018-09-01             9    2.576316                1 0.7219764
## 2050 Sep 2018 2018-09-01             9    2.754448                1 0.7213420
## 2053 Sep 2018 2018-09-01             9    2.717857                1 0.7186025
## 2055 Sep 2018 2018-09-01             9    2.715100                1 0.7319508
## 2057 Sep 2018 2018-09-01             9    2.449367                1 0.6724587
## 2058 Sep 2018 2018-09-01             9    2.730159                1 0.7257384
## 2059 Sep 2018 2018-09-01             9    2.785016                1 0.7389801
## 2062 Sep 2018 2018-09-01             9    2.601719                1 0.7099296
## 2064 Sep 2018 2018-09-01             9    2.711111                1 0.7299925
## 2065 Sep 2018 2018-09-01             9    2.677019                1 0.7274262
## 2069 Sep 2018 2018-09-01             9    2.816901                1 0.7331378
## 2071 Sep 2018 2018-09-01             9    2.732852                1 0.7292871
## 2072 Sep 2018 2018-09-01             9    2.520408                1 0.6951220
## 2073 Sep 2018 2018-09-01             9    2.493197                1 0.6856876
## 2079 Sep 2018 2018-09-01             9    2.661972                1 0.7286045
## 2081 Sep 2018 2018-09-01             9    2.641566                1 0.7147514
## 2082 Sep 2018 2018-09-01             9    2.650794                1 0.7292576
## 2083 Sep 2018 2018-09-01             9    2.543956                1 0.7314376
## 2085 Sep 2018 2018-09-01             9    2.758730                1 0.7223608
## 2086 Sep 2018 2018-09-01             9    2.750000                1 0.7410972
## 2087 Sep 2018 2018-09-01             9    2.735202                1 0.7262200
## 2088 Sep 2018 2018-09-01             9    2.850610                1 0.7516077
## 2091 Sep 2018 2018-09-01             9    2.567901                1 0.7080851
## 2094 Sep 2018 2018-09-01             9    2.828897                1 0.7484909
## 2095 Sep 2018 2018-09-01             9    2.675362                1 0.7233542
## 2097 Sep 2018 2018-09-01             9    2.968652                1 0.7346780
## 2099 Sep 2018 2018-09-01             9    2.858182                1 0.7257618
## 2101 Sep 2018 2018-09-01             9    2.633028                1 0.7265823
## 2103 Sep 2018 2018-09-01             9    2.903780                1 0.7464664
## 2107 Sep 2018 2018-09-01             9    2.778116                1 0.7317854
## 2108 Sep 2018 2018-09-01             9    2.696486                1 0.7152542
## 2109 Sep 2018 2018-09-01             9    2.684058                1 0.7285602
## 2110 Sep 2018 2018-09-01             9    2.698361                1 0.7200350
## 2111 Sep 2018 2018-09-01             9    2.884758                1 0.7411652
## 2112 Sep 2018 2018-09-01             9    2.874598                1 0.7286064
## 2113 Sep 2018 2018-09-01             9    2.907348                1 0.7297514
## 2115 Sep 2018 2018-09-01             9    2.705502                1 0.7200689
## 2116 Sep 2018 2018-09-01             9    2.693333                1 0.7345455
## 2117 Sep 2018 2018-09-01             9    3.016026                1 0.7432859
## 2118 Sep 2018 2018-09-01             9    2.985380                1 0.7195208
## 2119 Sep 2018 2018-09-01             9    2.779935                1 0.7360754
## 2120 Sep 2018 2018-09-01             9    2.720548                1 0.7443778
## 2121 Sep 2018 2018-09-01             9    2.795918                1 0.7293700
## 2122 Sep 2018 2018-09-01             9    2.861963                1 0.7428344
## 2123 Sep 2018 2018-09-01             9    2.677914                1 0.7144026
## 2124 Sep 2018 2018-09-01             9    2.827362                1 0.7412468
## 2125 Sep 2018 2018-09-01             9    2.766484                1 0.7182596
## 2126 Sep 2018 2018-09-01             9    2.846369                1 0.7542561
## 2127 Sep 2018 2018-09-01             9    2.733333                1 0.7233360
## 2128 Sep 2018 2018-09-01             9    2.852830                1 0.7132075
## 2129 Sep 2018 2018-09-01             9    2.661538                1 0.7386849
## 2130 Sep 2018 2018-09-01             9    2.642857                1 0.7084421
## 2131 Sep 2018 2018-09-01             9    2.758741                1 0.7153218
## 2133 Sep 2018 2018-09-01             9    2.856631                1 0.7427773
## 2134 Sep 2018 2018-09-01             9    2.774603                1 0.7375527
## 2136 Sep 2018 2018-09-01             9    2.704787                1 0.7167019
## 2137 Sep 2018 2018-09-01             9    2.769231                1 0.7200000
## 2138 Sep 2018 2018-09-01             9    2.662857                1 0.7076689
## 2139 Sep 2018 2018-09-01             9    2.834320                1 0.7472699
## 2140 Sep 2018 2018-09-01             9    2.691667                1 0.7374429
## 2141 Sep 2018 2018-09-01             9    2.771014                1 0.7405112
## 2142 Sep 2018 2018-09-01             9    2.854489                1 0.7340764
## 2143 Sep 2018 2018-09-01             9    2.696721                1 0.7294900
## 2144 Sep 2018 2018-09-01             9    2.709677                1 0.7039106
## 2145 Sep 2018 2018-09-01             9    2.638298                1 0.7547826
## 2146 Sep 2018 2018-09-01             9    2.763636                1 0.7203791
## 2147 Sep 2018 2018-09-01             9    2.724832                1 0.7348416
## 2148 May 2019 2019-05-01             5    2.651163                1 0.7238095
## 2149 May 2019 2019-05-01             5    2.776536                1 0.7292737
## 2150 May 2019 2019-05-01             5    2.855513                1 0.7355534
## 2151 May 2019 2019-05-01             5    2.715818                1 0.7520416
## 2152 May 2019 2019-05-01             5    2.667674                1 0.7080994
## 2154 May 2019 2019-05-01             5    2.648000                1 0.7438202
## 2155 May 2019 2019-05-01             5    2.600733                1 0.7186235
## 2156 May 2019 2019-05-01             5    2.835664                1 0.7440367
## 2157 May 2019 2019-05-01             5    2.448101                1 0.7007246
## 2158 May 2019 2019-05-01             5    2.486111                1 0.7276423
## 2159 May 2019 2019-05-01             5    2.750000                1 0.7419899
## 2160 May 2019 2019-05-01             5    2.619597                1 0.7101562
## 2161 May 2019 2019-05-01             5    2.553371                1 0.7613065
## 2162 May 2019 2019-05-01             5    2.822535                1 0.7239884
## 2163 May 2019 2019-05-01             5    2.493606                1 0.6974249
## 2164 May 2019 2019-05-01             5    2.629944                1 0.6979010
## 2165 May 2019 2019-05-01             5    2.685976                1 0.7459780
## 2166 May 2019 2019-05-01             5    2.584856                1 0.7258065
## 2168 May 2019 2019-05-01             5    2.604730                1 0.7611056
## 2169 May 2019 2019-05-01             5    2.997101                1 0.7647929
## 2170 May 2019 2019-05-01             5    2.657895                1 0.7645723
## 2171 May 2019 2019-05-01             5    2.464198                1 0.7392593
## 2172 May 2019 2019-05-01             5    3.057047                1 0.7560166
## 2173 May 2019 2019-05-01             5    2.906137                1 0.7703349
## 2174 May 2019 2019-05-01             5    2.917582                1 0.7814570
## 2175 May 2019 2019-05-01             5    2.486553                1 0.7228145
## 2176 May 2019 2019-05-01             5    2.647230                1 0.7252396
## 2177 May 2019 2019-05-01             5    2.901818                1 0.7068202
## 2178 May 2019 2019-05-01             5    2.794788                1 0.7546174
## 2179 May 2019 2019-05-01             5    2.752412                1 0.7810219
## 2180 May 2019 2019-05-01             5    2.820652                1 0.7615554
## 2181 May 2019 2019-05-01             5    2.730871                1 0.7309322
## 2182 May 2019 2019-05-01             5    2.448276                1 0.7184913
## 2183 May 2019 2019-05-01             5    2.723183                1 0.7473884
## 2184 May 2019 2019-05-01             5    2.790378                1 0.7135325
## 2185 May 2019 2019-05-01             5    2.735294                1 0.7472608
## 2186 May 2019 2019-05-01             5    2.842444                1 0.8000000
## 2187 May 2019 2019-05-01             5    2.645902                1 0.7451524
## 2188 May 2019 2019-05-01             5    2.604592                1 0.7298070
## 2189 May 2019 2019-05-01             5    2.622356                1 0.7614035
## 2190 May 2019 2019-05-01             5    2.835866                1 0.7416534
## 2191 May 2019 2019-05-01             5    2.671470                1 0.7304965
## 2192 May 2019 2019-05-01             5    2.533923                1 0.7398794
## 2193 May 2019 2019-05-01             5    2.844595                1 0.7425044
## 2194 May 2019 2019-05-01             5    3.067449                1 0.7596224
## 2195 May 2019 2019-05-01             5    2.792507                1 0.7220566
## 2196 May 2019 2019-05-01             5    2.540625                1 0.7150396
## 2198 May 2019 2019-05-01             5    2.652459                1 0.7146643
## 2199 May 2019 2019-05-01             5    1.830040                1 0.6282225
## 2200 May 2019 2019-05-01             5    2.468750                1 0.7025692
## 2201 May 2019 2019-05-01             5    2.720149                1 0.7282717
## 2202 May 2019 2019-05-01             5    2.775920                1 0.7384342
## 2204 May 2019 2019-05-01             5    1.907336                1 0.6333333
## 2212 May 2019 2019-05-01             5    2.694158                1 0.7354597
## 2213 May 2019 2019-05-01             5    2.215152                1 0.6876764
## 2218 May 2019 2019-05-01             5    2.416357                1 0.6981740
## 2219 May 2019 2019-05-01             5    2.556757                1 0.7419608
## 2220 May 2019 2019-05-01             5    2.714777                1 0.7348837
## 2221 May 2019 2019-05-01             5    2.670330                1 0.7154073
## 2228 May 2019 2019-05-01             5    2.569182                1 0.7037037
## 2232 May 2019 2019-05-01             5    2.696697                1 0.7330612
## 2233 May 2019 2019-05-01             5    2.734694                1 0.7282609
## 2234 May 2019 2019-05-01             5    2.510714                1 0.7044088
## 2235 May 2019 2019-05-01             5    2.616487                1 0.7234886
## 2237 May 2019 2019-05-01             5    2.589342                1 0.7488667
## 2238 May 2019 2019-05-01             5    2.817276                1 0.7198642
## 2240 May 2019 2019-05-01             5    2.625352                1 0.7136294
## 2245 May 2019 2019-05-01             5    2.733564                1 0.7348837
## 2247 May 2019 2019-05-01             5    2.664577                1 0.7112971
## 2251 May 2019 2019-05-01             5    2.539216                1 0.7456814
## 2256 May 2019 2019-05-01             5    2.700348                1 0.7373930
## 2261 May 2019 2019-05-01             5    2.346570                1 0.7049892
## 2262 May 2019 2019-05-01             5    2.617647                1 0.7218167
## 2263 May 2019 2019-05-01             5    2.721014                1 0.7214217
## 2266 May 2019 2019-05-01             5    2.725753                1 0.7511521
## 2268 May 2019 2019-05-01             5    2.695238                1 0.7318966
## 2270 May 2019 2019-05-01             5    2.534722                1 0.7163886
## 2274 May 2019 2019-05-01             5    2.661342                1 0.7071307
## 2282 May 2019 2019-05-01             5    2.688000                1 0.6920700
## 2285 May 2019 2019-05-01             5    2.762987                1 0.7504409
## 2288 May 2019 2019-05-01             5    2.684411                1 0.7218814
## 2291 May 2019 2019-05-01             5    2.619048                1 0.7287986
## 2292 May 2019 2019-05-01             5    2.799308                1 0.7223214
## 2293 May 2019 2019-05-01             5    2.571429                1 0.6649077
## 2294 May 2019 2019-05-01             5    3.061889                1 0.7401575
## 2295 May 2019 2019-05-01             5    2.714286                1 0.7307692
## 2296 May 2019 2019-05-01             5    2.833333                1 0.7419112
## 2297 May 2019 2019-05-01             5    2.656168                1 0.7701674
## 2298 May 2019 2019-05-01             5    2.799331                1 0.7520216
## 2300 May 2019 2019-05-01             5    2.376623                1 0.7256146
## 2302 May 2019 2019-05-01             5    2.592593                1 0.7505361
## 2305 May 2019 2019-05-01             5    2.908046                1 0.7869362
## 2306 May 2019 2019-05-01             5    2.927393                1 0.7354892
## 2308 May 2019 2019-05-01             5    2.944853                1 0.7521127
## 2310 May 2019 2019-05-01             5    2.533333                1 0.7176938
## 2312 May 2019 2019-05-01             5    2.664537                1 0.6720387
## 2313 May 2019 2019-05-01             5    2.755556                1 0.7695035
## 2314 May 2019 2019-05-01             5    2.643454                1 0.7227723
## 2315 May 2019 2019-05-01             5    2.781609                1 0.7533074
## 2316 May 2019 2019-05-01             5    2.900344                1 0.7442681
## 2317 May 2019 2019-05-01             5    2.674772                1 0.7376362
## 2318 May 2019 2019-05-01             5    2.905488                1 0.7921862
## 2319 May 2019 2019-05-01             5    2.278873                1 0.7140335
## 2320 May 2019 2019-05-01             5    2.715625                1 0.7589520
## 2321 May 2019 2019-05-01             5    2.248815                1 0.7216730
## 2322 May 2019 2019-05-01             5    2.785507                1 0.7409406
## 2323 May 2019 2019-05-01             5    1.987437                1 0.5773723
## 2324 May 2019 2019-05-01             5    2.808081                1 0.7387068
## 2325 May 2019 2019-05-01             5    3.023166                1 0.6726804
## 2326 May 2019 2019-05-01             5    2.386792                1 0.7194313
## 2327 May 2019 2019-05-01             5    2.503704                1 0.7363834
## 2328 May 2019 2019-05-01             5    2.725857                1 0.8057090
## 2329 May 2019 2019-05-01             5    2.223022                1 0.6623794
## 2330 May 2019 2019-05-01             5    2.910112                1 0.7625123
## 2331 May 2019 2019-05-01             5    2.667702                1 0.7823315
## 2332 May 2019 2019-05-01             5    2.669841                1 0.7243755
## 2333 May 2019 2019-05-01             5    2.733333                1 0.7648013
## 2334 May 2019 2019-05-01             5    2.583562                1 0.7372948
## 2335 May 2019 2019-05-01             5    2.717391                1 0.7704160
## 2337 May 2019 2019-05-01             5    2.701863                1 0.7638279
## 2338 May 2019 2019-05-01             5    2.862974                1 0.7473364
## 2340 May 2019 2019-05-01             5    2.804487                1 0.7569204
## 2342 May 2019 2019-05-01             5    2.770227                1 0.7051071
## 2343 May 2019 2019-05-01             5    2.650704                1 0.7694195
## 2344 May 2019 2019-05-01             5    2.725000                1 0.7171053
## 2345 May 2019 2019-05-01             5    2.619048                1 0.7327905
## 2346 May 2019 2019-05-01             5    2.578073                1 0.7009937
## 2347 May 2019 2019-05-01             5    3.015385                1 0.7055436
## 2348 May 2019 2019-05-01             5    2.693291                1 0.7900656
## 2349 May 2019 2019-05-01             5    2.781250                1 0.7813248
## 2350 May 2019 2019-05-01             5    2.544872                1 0.7121076
## 2351 May 2019 2019-05-01             5    2.750000                1 0.7535680
## 2352 May 2019 2019-05-01             5    2.568862                1 0.7302128
## 2353 May 2019 2019-05-01             5    2.623418                1 0.7368889
## 2354 May 2019 2019-05-01             5    2.560224                1 0.7074303
## 2355 May 2019 2019-05-01             5    2.763158                1 0.7329843
## 2356 May 2019 2019-05-01             5    2.762963                1 0.7285156
## 2357 May 2019 2019-05-01             5    2.692308                1 0.7349081
## 2359 May 2019 2019-05-01             5    2.726727                1 0.7322581
## 2361 May 2019 2019-05-01             5    2.621359                1 0.7336957
## 2362 May 2019 2019-05-01             5    2.830084                1 0.7448680
## 2363 May 2019 2019-05-01             5    2.709459                1 0.7344322
## 2365 May 2019 2019-05-01             5    2.859779                1 0.7325142
## 2366 May 2019 2019-05-01             5    2.693548                1 0.7356828
## 2367 May 2019 2019-05-01             5    2.812261                1 0.7267327
## 2368 May 2019 2019-05-01             5    2.683636                1 0.7306931
## 2370 May 2019 2019-05-01             5    2.809365                1 0.7433628
## 2371 May 2019 2019-05-01             5    2.688645                1 0.7181996
## 2372 May 2019 2019-05-01             5    2.680782                1 0.7354781
## 2373 May 2019 2019-05-01             5    2.667683                1 0.7415254
## 2374 May 2019 2019-05-01             5    2.685065                1 0.7437050
## 2376 May 2019 2019-05-01             5    2.760383                1 0.7409949
## 2379 May 2019 2019-05-01             5    2.683673                1 0.7278598
## 2381 May 2019 2019-05-01             5    2.525568                1 0.7334983
## 2383 May 2019 2019-05-01             5    2.604096                1 0.7130841
## 2386 May 2019 2019-05-01             5    2.660131                1 0.7084421
## 2387 May 2019 2019-05-01             5    2.772727                1 0.7686769
## 2388 May 2019 2019-05-01             5    2.709343                1 0.7414773
## 2389 May 2019 2019-05-01             5    2.651163                1 0.7189189
## 2390 May 2019 2019-05-01             5    2.659701                1 0.7400332
## 2391 May 2019 2019-05-01             5    2.667722                1 0.7324066
## 2392 May 2019 2019-05-01             5    2.649518                1 0.7330961
## 2394 May 2019 2019-05-01             5    2.657738                1 0.7236629
## 2395 May 2019 2019-05-01             5    2.720149                1 0.7084548
## 2398 May 2019 2019-05-01             5    2.482650                1 0.7051971
## 2399 May 2019 2019-05-01             5    2.671975                1 0.7201717
## 2400 May 2019 2019-05-01             5    2.539773                1 0.7215496
## 2401 May 2019 2019-05-01             5    2.757143                1 0.7430221
## 2403 May 2019 2019-05-01             5    2.692308                1 0.7239459
## 2404 May 2019 2019-05-01             5    2.796935                1 0.7321966
## 2406 May 2019 2019-05-01             5    2.891386                1 0.7366412
## 2408 May 2019 2019-05-01             5    2.603675                1 0.7402985
## 2409 May 2019 2019-05-01             5    2.703833                1 0.7293233
## 2410 May 2019 2019-05-01             5    2.573883                1 0.7092803
## 2417 May 2019 2019-05-01             5    2.536517                1 0.7323601
## 2418 May 2019 2019-05-01             5    2.663082                1 0.6989652
## 2420 May 2019 2019-05-01             5    2.691358                1 0.7303183
## 2421 May 2019 2019-05-01             5    2.639037                1 0.7188638
## 2422 May 2019 2019-05-01             5    2.652406                1 0.7353595
## 2423 May 2019 2019-05-01             5    2.496753                1 0.7140204
## 2425 May 2019 2019-05-01             5    2.668874                1 0.7387718
## 2428 May 2019 2019-05-01             5    2.816547                1 0.7365945
## 2429 May 2019 2019-05-01             5    2.616000                1 0.7488550
## 2431 May 2019 2019-05-01             5    2.637584                1 0.7230911
## 2432 May 2019 2019-05-01             5    2.727273                1 0.7295720
## 2434 May 2019 2019-05-01             5    2.769231                1 0.7145558
## 2436 May 2019 2019-05-01             5    2.760656                1 0.7379492
## 2439 May 2019 2019-05-01             5    2.766187                1 0.7153488
## 2440 May 2019 2019-05-01             5    2.787072                1 0.7257426
## 2441 May 2019 2019-05-01             5    2.728814                1 0.7252252
## 2447 May 2019 2019-05-01             5    2.784553                1 0.7326203
## 2452 May 2019 2019-05-01             5    2.693380                1 0.7231057
## 2456 May 2019 2019-05-01             5    2.639665                1 0.7348367
## 2457 May 2019 2019-05-01             5    2.670175                1 0.7303263
## 2459 May 2019 2019-05-01             5    2.661972                1 0.7346939
## 2466 May 2019 2019-05-01             5    2.601744                1 0.7223567
## 2469 May 2019 2019-05-01             5    2.652047                1 0.7192704
## 2470 May 2019 2019-05-01             5    2.562092                1 0.7286245
## 2472 May 2019 2019-05-01             5    2.671795                1 0.7286713
## 2473 May 2019 2019-05-01             5    2.716012                1 0.7454395
## 2476 May 2019 2019-05-01             5    2.573099                1 0.7370184
## 2477 May 2019 2019-05-01             5    2.709571                1 0.7409747
## 2478 May 2019 2019-05-01             5    2.654434                1 0.7132293
## 2479 May 2019 2019-05-01             5    2.549598                1 0.7309762
## 2480 May 2019 2019-05-01             5    2.764075                1 0.7433309
## 2482 May 2019 2019-05-01             5    2.607717                1 0.7280072
## 2484 May 2019 2019-05-01             5    2.524540                1 0.7200350
## 2487 May 2019 2019-05-01             5    2.342183                1 0.6995595
## 2496 May 2019 2019-05-01             5    2.636066                1 0.7376147
## 2497 May 2019 2019-05-01             5    2.684385                1 0.7365542
## 2498 May 2019 2019-05-01             5    2.548571                1 0.7170418
## 2499 May 2019 2019-05-01             5    2.443590                1 0.7252664
## 2501 May 2019 2019-05-01             5    2.623656                1 0.7349398
## 2502 May 2019 2019-05-01             5    2.587131                1 0.7196122
## 2503 May 2019 2019-05-01             5    2.501377                1 0.7206349
## 2504 May 2019 2019-05-01             5    2.841379                1 0.7259912
## 2505 May 2019 2019-05-01             5    2.833333                1 0.7230624
## 2507 May 2019 2019-05-01             5    2.608187                1 0.7263844
## 2510 May 2019 2019-05-01             5    2.648649                1 0.7164907
## 2512 May 2019 2019-05-01             5    2.754098                1 0.7400881
## 2514 May 2019 2019-05-01             5    2.743590                1 0.7436293
## 2518 May 2019 2019-05-01             5    2.666667                1 0.7437500
## 2519 May 2019 2019-05-01             5    2.688889                1 0.7289157
## 2521 May 2019 2019-05-01             5    2.719178                1 0.7311234
## 2523 May 2019 2019-05-01             5    2.671010                1 0.7308378
## 2524 May 2019 2019-05-01             5    2.567901                1 0.7260035
## 2525 May 2019 2019-05-01             5    2.569892                1 0.7064039
## 2526 May 2019 2019-05-01             5    2.549724                1 0.7419614
## 2527 May 2019 2019-05-01             5    2.509383                1 0.7375887
## 2530 May 2019 2019-05-01             5    2.715625                1 0.7128794
## 2535 May 2019 2019-05-01             5    2.538874                1 0.7245601
## 2537 May 2019 2019-05-01             5    2.509589                1 0.7292994
## 2541 May 2019 2019-05-01             5    2.838488                1 0.7388193
## 2543 May 2019 2019-05-01             5    2.896552                1 0.7440213
## 2544 May 2019 2019-05-01             5    2.722034                1 0.7455896
## 2545 May 2019 2019-05-01             5    2.545775                1 0.7165510
## 2546 May 2019 2019-05-01             5    2.641096                1 0.7461300
## 2549 May 2019 2019-05-01             5    2.612676                1 0.7148362
## 2554 May 2019 2019-05-01             5    2.690625                1 0.7253580
## 2561 May 2019 2019-05-01             5    2.705479                1 0.7254362
## 2566 May 2019 2019-05-01             5    2.666667                1 0.7177700
## 2567 May 2019 2019-05-01             5    2.440860                1 0.7200634
## 2568 May 2019 2019-05-01             5    2.607629                1 0.7418605
## 2569 May 2019 2019-05-01             5    2.485342                1 0.7032258
## 2570 May 2019 2019-05-01             5    2.832335                1 0.7568000
## 2572 May 2019 2019-05-01             5    2.697161                1 0.7270408
## 2573 May 2019 2019-05-01             5    2.666667                1 0.7310550
## 2574 May 2019 2019-05-01             5    2.647230                1 0.7424366
## 2575 May 2019 2019-05-01             5    2.781768                1 0.7611489
## 2576 May 2019 2019-05-01             5    2.651652                1 0.7333887
## 2577 May 2019 2019-05-01             5    2.772242                1 0.7273576
## 2578 May 2019 2019-05-01             5    2.640110                1 0.7263794
## 2579 May 2019 2019-05-01             5    2.715686                1 0.7114726
## 2580 May 2019 2019-05-01             5    2.630189                1 0.7112245
## 2581 May 2019 2019-05-01             5    2.600619                1 0.7241379
## 2582 May 2019 2019-05-01             5    2.674576                1 0.7285319
## 2584 May 2019 2019-05-01             5    2.778169                1 0.7245179
## 2585 May 2019 2019-05-01             5    2.620419                1 0.7333333
## 2586 May 2019 2019-05-01             5    3.040404                1 0.8239051
## 2587 May 2019 2019-05-01             5    2.638418                1 0.7442231
## 2588 May 2019 2019-05-01             5    2.649351                1 0.7176781
## 2590 May 2019 2019-05-01             5    2.654501                1 0.7263648
## 2591 May 2019 2019-05-01             5    2.590759                1 0.7235023
## 2592 May 2019 2019-05-01             5    2.546053                1 0.7140221
## 2593 May 2019 2019-05-01             5    2.705674                1 0.7218543
## 2595 May 2019 2019-05-01             5    2.582456                1 0.7419355
## 2596 May 2019 2019-05-01             5    2.610119                1 0.7141694
## 2597 May 2019 2019-05-01             5    2.614035                1 0.7072785
## 2598 May 2019 2019-05-01             5    2.679083                1 0.7356412
## 2600 May 2019 2019-05-01             5    2.637462                1 0.7057397
## 2604 May 2019 2019-05-01             5    2.740310                1 0.7184959
## 2606 May 2019 2019-05-01             5    2.708075                1 0.7549784
## 2607 May 2019 2019-05-01             5    2.536508                1 0.7133929
## 2608 May 2019 2019-05-01             5    2.579946                1 0.7234043
## 2614 May 2019 2019-05-01             5    2.780405                1 0.7335116
## 2622 May 2019 2019-05-01             5    2.683824                1 0.7177974
## 2624 May 2019 2019-05-01             5    2.668919                1 0.7066190
## 2625 May 2019 2019-05-01             5    2.624573                1 0.6946703
## 2628 May 2019 2019-05-01             5    2.524430                1 0.7149446
## 2629 May 2019 2019-05-01             5    2.654354                1 0.7364568
## 2634 May 2019 2019-05-01             5    2.666667                1 0.7394422
## 2637 Oct 2019 2019-10-01            10    2.673184                1 0.7288652
## 2638 Oct 2019 2019-10-01            10    2.657738                1 0.7242498
## 2639 Oct 2019 2019-10-01            10    2.606250                1 0.7252174
## 2640 Oct 2019 2019-10-01            10    2.735376                1 0.7344802
## 2641 Oct 2019 2019-10-01            10    2.897436                1 0.7676630
## 2645 Oct 2019 2019-10-01            10    2.682390                1 0.7385281
## 2647 Oct 2019 2019-10-01            10    2.778462                1 0.7620253
## 2651 Oct 2019 2019-10-01            10    2.771513                1 0.7442231
## 2652 Oct 2019 2019-10-01            10    2.712610                1 0.7588187
## 2653 Oct 2019 2019-10-01            10    2.673716                1 0.7254098
## 2654 Oct 2019 2019-10-01            10    2.741333                1 0.7665921
## 2655 Oct 2019 2019-10-01            10    2.657321                1 0.7216582
## 2656 Oct 2019 2019-10-01            10    2.730408                1 0.7560764
## 2657 Oct 2019 2019-10-01            10    2.689474                1 0.7212421
## 2658 Oct 2019 2019-10-01            10    2.806452                1 0.7500000
## 2659 Oct 2019 2019-10-01            10    2.570025                1 0.7428977
## 2660 Oct 2019 2019-10-01            10    2.933993                1 0.7604790
## 2661 Oct 2019 2019-10-01            10    2.774603                1 0.7567100
## 2662 Oct 2019 2019-10-01            10    2.682451                1 0.7208084
## 2663 Oct 2019 2019-10-01            10    2.769231                1 0.7309645
## 2664 Oct 2019 2019-10-01            10    2.672087                1 0.7266028
## 2665 Oct 2019 2019-10-01            10    2.486631                1 0.7305577
## 2666 Oct 2019 2019-10-01            10    2.724796                1 0.7496252
## 2667 Oct 2019 2019-10-01            10    2.795082                1 0.7522059
## 2669 Oct 2019 2019-10-01            10    2.740000                1 0.7479527
## 2670 Oct 2019 2019-10-01            10    2.730159                1 0.7356715
## 2671 Oct 2019 2019-10-01            10    2.885449                1 0.7601958
## 2672 Oct 2019 2019-10-01            10    2.718033                1 0.7401786
## 2673 Oct 2019 2019-10-01            10    2.774603                1 0.7419355
## 2674 Oct 2019 2019-10-01            10    2.740132                1 0.7497750
## 2675 Oct 2019 2019-10-01            10    2.643963                1 0.7368421
## 2676 Oct 2019 2019-10-01            10    2.803681                1 0.7479542
## 2677 Oct 2019 2019-10-01            10    2.674772                1 0.7272727
## 2678 Oct 2019 2019-10-01            10    2.827586                1 0.7454545
## 2679 Oct 2019 2019-10-01            10    2.654867                1 0.7389163
## 2683 Oct 2019 2019-10-01            10    2.552430                1 0.7566338
## 2684 Oct 2019 2019-10-01            10    2.722892                1 0.7545910
## 2685 Oct 2019 2019-10-01            10    2.674051                1 0.7537913
## 2686 Oct 2019 2019-10-01            10    2.719653                1 0.7294574
## 2687 Oct 2019 2019-10-01            10    2.860465                1 0.7572559
## 2693 Oct 2019 2019-10-01            10    2.569014                1 0.7249603
## 2695 Oct 2019 2019-10-01            10    2.572700                1 0.7322635
## 2697 Oct 2019 2019-10-01            10    3.008439                1 0.7758433
## 2698 Oct 2019 2019-10-01            10    2.664336                1 0.7161654
## 2701 Oct 2019 2019-10-01            10    2.551084                1 0.6924370
## 2704 Oct 2019 2019-10-01            10    2.718354                1 0.7392427
## 2705 Oct 2019 2019-10-01            10    2.603226                1 0.7078947
## 2706 Oct 2019 2019-10-01            10    2.688889                1 0.7229276
## 2707 Oct 2019 2019-10-01            10    2.774834                1 0.7261698
## 2709 Oct 2019 2019-10-01            10    2.771978                1 0.7479615
## 2710 Oct 2019 2019-10-01            10    2.706553                1 0.7196970
## 2711 Oct 2019 2019-10-01            10    2.588384                1 0.7172848
## 2712 Oct 2019 2019-10-01            10    2.574534                1 0.7177489
## 2713 Oct 2019 2019-10-01            10    2.750685                1 0.7249097
## 2716 Oct 2019 2019-10-01            10    2.678063                1 0.7326578
## 2717 Oct 2019 2019-10-01            10    2.769663                1 0.7745483
## 2718 Oct 2019 2019-10-01            10    2.671733                1 0.7163814
## 2719 Oct 2019 2019-10-01            10    2.772414                1 0.7403315
## 2720 Oct 2019 2019-10-01            10    2.680519                1 0.7319149
## 2721 Oct 2019 2019-10-01            10    2.627119                1 0.7271306
## 2722 Oct 2019 2019-10-01            10    2.849850                1 0.7454831
## 2723 Oct 2019 2019-10-01            10    2.802676                1 0.7396293
## 2724 Oct 2019 2019-10-01            10    2.551813                1 0.7312546
## 2725 Oct 2019 2019-10-01            10    2.758410                1 0.7381342
## 2726 Oct 2019 2019-10-01            10    2.661184                1 0.7236136
## 2727 Oct 2019 2019-10-01            10    2.737805                1 0.7236100
## 2728 Oct 2019 2019-10-01            10    2.659443                1 0.7304422
## 2730 Oct 2019 2019-10-01            10    2.645251                1 0.7109610
## 2731 Oct 2019 2019-10-01            10    2.777429                1 0.7426655
## 2733 Oct 2019 2019-10-01            10    2.761745                1 0.7270318
## 2734 Oct 2019 2019-10-01            10    2.615591                1 0.7239583
## 2735 Oct 2019 2019-10-01            10    2.752294                1 0.7200000
## 2736 Oct 2019 2019-10-01            10    2.664671                1 0.7453936
## 2737 Oct 2019 2019-10-01            10    2.521994                1 0.7239057
## 2738 Oct 2019 2019-10-01            10    2.672365                1 0.7380016
## 2739 Oct 2019 2019-10-01            10    2.780980                1 0.7294029
## 2740 Oct 2019 2019-10-01            10    2.789668                1 0.7145558
## 2741 Oct 2019 2019-10-01            10    2.744526                1 0.7293889
## 2742 Oct 2019 2019-10-01            10    2.587662                1 0.7265269
## 2743 Oct 2019 2019-10-01            10    2.590214                1 0.7339688
## 2744 Oct 2019 2019-10-01            10    2.798077                1 0.7385787
## 2745 Oct 2019 2019-10-01            10    2.635179                1 0.7301444
## 2747 Oct 2019 2019-10-01            10    2.785507                1 0.7472784
## 2748 Oct 2019 2019-10-01            10    2.802292                1 0.7287630
## 2749 Oct 2019 2019-10-01            10    2.679045                1 0.7287157
## 2752 Oct 2019 2019-10-01            10    2.717391                1 0.7334451
## 2754 Oct 2019 2019-10-01            10    2.838983                1 0.7590634
## 2756 Oct 2019 2019-10-01            10    2.094697                1 0.6638655
## 2757 Oct 2019 2019-10-01            10    2.654088                1 0.7364747
## 2758 Oct 2019 2019-10-01            10    2.643590                1 0.7301700
## 2759 Oct 2019 2019-10-01            10    2.793750                1 0.7400662
## 2760 Oct 2019 2019-10-01            10    2.714674                1 0.7307974
## 2761 Oct 2019 2019-10-01            10    2.852507                1 0.7381679
## 2763 Oct 2019 2019-10-01            10    2.694631                1 0.7163247
## 2764 Oct 2019 2019-10-01            10    2.591331                1 0.7374449
## 2765 Oct 2019 2019-10-01            10    2.722513                1 0.7262570
## 2767 Oct 2019 2019-10-01            10    2.702265                1 0.7305337
## 2768 Oct 2019 2019-10-01            10    2.627507                1 0.7125097
## 2769 Oct 2019 2019-10-01            10    2.500000                1 0.7427259
## 2772 Oct 2019 2019-10-01            10    2.824798                1 0.7303136
## 2773 Oct 2019 2019-10-01            10    2.690027                1 0.7242380
## 2774 Oct 2019 2019-10-01            10    2.697406                1 0.7166922
## 2777 Oct 2019 2019-10-01            10    2.650000                1 0.7000000
## 2779 Oct 2019 2019-10-01            10    2.627692                1 0.7188552
## 2780 Oct 2019 2019-10-01            10    2.764706                1 0.7343750
## 2781 Oct 2019 2019-10-01            10    2.431973                1 0.6901544
## 2782 Oct 2019 2019-10-01            10    2.653846                1 0.7472924
## 2784 Oct 2019 2019-10-01            10    2.816054                1 0.7385965
## 2785 Oct 2019 2019-10-01            10    2.688963                1 0.7243243
## 2786 Oct 2019 2019-10-01            10    2.676364                1 0.7258383
## 2787 Oct 2019 2019-10-01            10    2.609290                1 0.7251329
## 2788 Oct 2019 2019-10-01            10    2.245353                1 0.6801802
## 2789 Oct 2019 2019-10-01            10    2.695122                1 0.7536232
## 2791 Oct 2019 2019-10-01            10    2.698630                1 0.7641583
## 2792 Oct 2019 2019-10-01            10    2.775641                1 0.7357689
## 2794 Oct 2019 2019-10-01            10    2.700767                1 0.7203274
## 2795 Oct 2019 2019-10-01            10    2.672087                1 0.7464042
## 2797 Oct 2019 2019-10-01            10    2.566154                1 0.7208297
## 2798 Oct 2019 2019-10-01            10    2.596491                1 0.7014218
## 2799 Oct 2019 2019-10-01            10    2.639456                1 0.7093236
## 2800 Oct 2019 2019-10-01            10    2.681698                1 0.7358079
## 2801 Oct 2019 2019-10-01            10    2.620991                1 0.7163347
## 2802 Oct 2019 2019-10-01            10    2.739414                1 0.7390158
## 2806 Oct 2019 2019-10-01            10    2.761246                1 0.7080745
## 2807 Oct 2019 2019-10-01            10    2.637540                1 0.7335734
## 2808 Oct 2019 2019-10-01            10    2.882943                1 0.7450303
## 2810 Oct 2019 2019-10-01            10    2.707746                1 0.7193639
## 2812 Oct 2019 2019-10-01            10    2.627451                1 0.7362637
## 2813 Oct 2019 2019-10-01            10    2.461957                1 0.7072600
## 2816 Oct 2019 2019-10-01            10    2.713816                1 0.7493188
## 2820 Oct 2019 2019-10-01            10    2.736667                1 0.7029110
## 2823 Oct 2019 2019-10-01            10    2.678261                1 0.7368421
## 2826 Oct 2019 2019-10-01            10    2.560000                1 0.7153502
## 2830 Oct 2019 2019-10-01            10    2.590164                1 0.7231121
## 2831 Oct 2019 2019-10-01            10    2.481894                1 0.6999214
## 2833 Oct 2019 2019-10-01            10    2.776632                1 0.7182222
## 2834 Oct 2019 2019-10-01            10    2.645570                1 0.7163668
## 2835 Oct 2019 2019-10-01            10    2.433584                1 0.7160767
## 2836 Oct 2019 2019-10-01            10    2.663934                1 0.7259866
## 2837 Oct 2019 2019-10-01            10    2.528190                1 0.7012346
## 2839 Oct 2019 2019-10-01            10    2.638177                1 0.7497976
## 2841 Oct 2019 2019-10-01            10    2.700272                1 0.7238860
## 2842 Oct 2019 2019-10-01            10    2.494286                1 0.7114914
## 2844 Oct 2019 2019-10-01            10    2.696532                1 0.7210201
## 2845 Oct 2019 2019-10-01            10    2.522667                1 0.7102102
## 2847 Oct 2019 2019-10-01            10    2.674194                1 0.7529519
## 2848 Oct 2019 2019-10-01            10    2.564885                1 0.7314949
## 2850 Oct 2019 2019-10-01            10    2.582043                1 0.7122118
## 2851 Oct 2019 2019-10-01            10    2.690323                1 0.7208297
## 2853 Oct 2019 2019-10-01            10    2.762058                1 0.7310638
## 2854 Oct 2019 2019-10-01            10    2.608150                1 0.7336861
## 2855 Oct 2019 2019-10-01            10    2.691803                1 0.7246249
## 2856 Oct 2019 2019-10-01            10    2.681818                1 0.7160194
## 2859 Oct 2019 2019-10-01            10    2.671827                1 0.7420464
## 2860 Oct 2019 2019-10-01            10    2.695767                1 0.7273376
## 2862 Oct 2019 2019-10-01            10    2.718750                1 0.7229917
## 2863 Oct 2019 2019-10-01            10    2.592593                1 0.7235142
## 2864 Oct 2019 2019-10-01            10    2.696049                1 0.7147462
## 2868 Oct 2019 2019-10-01            10    2.589674                1 0.7074981
## 2869 Oct 2019 2019-10-01            10    2.543860                1 0.7178218
## 2871 Oct 2019 2019-10-01            10    2.602606                1 0.7303473
## 2878 Oct 2019 2019-10-01            10    2.674699                1 0.7387687
## 2884 Oct 2019 2019-10-01            10    2.506812                1 0.7126259
## 2886 Oct 2019 2019-10-01            10    2.565657                1 0.7250238
## 2887 Oct 2019 2019-10-01            10    2.651163                1 0.7261146
## 2891 Oct 2019 2019-10-01            10    2.643059                1 0.7787980
## 2892 Oct 2019 2019-10-01            10    2.524096                1 0.7174658
## 2893 Oct 2019 2019-10-01            10    2.740741                1 0.7027540
## 2895 Oct 2019 2019-10-01            10    2.525773                1 0.7163743
## 2896 Oct 2019 2019-10-01            10    2.680135                1 0.7203620
## 2897 Feb 2020 2020-02-01             2    2.648810                1 0.7241660
## 2899 Feb 2020 2020-02-01             2    2.698361                1 0.7441230
## 2900 Feb 2020 2020-02-01             2    2.737705                1 0.7363316
## 2901 Feb 2020 2020-02-01             2    2.654839                1 0.7270318
## 2904 Feb 2020 2020-02-01             2    2.670695                1 0.7409891
## 2905 Feb 2020 2020-02-01             2    2.658863                1 0.7188065
## 2906 Feb 2020 2020-02-01             2    2.739286                1 0.7188379
## 2907 Feb 2020 2020-02-01             2    2.782609                1 0.7314286
## 2908 Feb 2020 2020-02-01             2    2.797980                1 0.7244987
## 2911 Feb 2020 2020-02-01             2    2.642857                1 0.7379873
## 2912 Feb 2020 2020-02-01             2    2.564356                1 0.7302632
## 2914 Feb 2020 2020-02-01             2    2.724432                1 0.7382602
## 2917 Feb 2020 2020-02-01             2    2.685430                1 0.7202487
## 2919 Feb 2020 2020-02-01             2    2.772414                1 0.7444444
## 2921 Feb 2020 2020-02-01             2    2.506369                1 0.7280296
## 2923 Feb 2020 2020-02-01             2    2.628975                1 0.7279843
## 2929 Feb 2020 2020-02-01             2    2.662791                1 0.7269841
## 2930 Feb 2020 2020-02-01             2    2.690554                1 0.7488667
## 2931 Feb 2020 2020-02-01             2    2.626582                1 0.7437276
## 2932 Feb 2020 2020-02-01             2    2.688312                1 0.7439353
## 2933 Feb 2020 2020-02-01             2    2.640845                1 0.7109005
## 2934 Feb 2020 2020-02-01             2    2.528796                1 0.7257701
## 2935 Feb 2020 2020-02-01             2    2.671388                1 0.7349961
## 2936 Feb 2020 2020-02-01             2    2.647458                1 0.7042381
## 2937 Feb 2020 2020-02-01             2    2.689349                1 0.7068429
## 2939 Feb 2020 2020-02-01             2    2.776471                1 0.7246673
## 2940 Feb 2020 2020-02-01             2    2.641176                1 0.7087609
## 2944 Feb 2020 2020-02-01             2    2.576208                1 0.7188797
## 2945 Feb 2020 2020-02-01             2    2.906615                1 0.7217391
## 2947 Feb 2020 2020-02-01             2    2.513846                1 0.7024936
## 2948 Feb 2020 2020-02-01             2    2.596825                1 0.7063903
## 2949 Feb 2020 2020-02-01             2    2.789137                1 0.7226821
## 2950 Feb 2020 2020-02-01             2    2.756863                1 0.7232510
## 2951 Feb 2020 2020-02-01             2    2.632727                1 0.7261785
## 2952 Feb 2020 2020-02-01             2    2.612698                1 0.7100949
## 2953 Feb 2020 2020-02-01             2    2.825000                1 0.7317299
## 2954 Feb 2020 2020-02-01             2    2.765957                1 0.7252441
## 2955 Feb 2020 2020-02-01             2    2.667763                1 0.7157988
## 2956 Feb 2020 2020-02-01             2    2.482759                1 0.6967742
## 2957 Feb 2020 2020-02-01             2    2.776978                1 0.7188082
## 2958 Feb 2020 2020-02-01             2    2.724528                1 0.7169811
## 2959 Feb 2020 2020-02-01             2    2.656716                1 0.7127127
## 2960 Feb 2020 2020-02-01             2    2.506024                1 0.7058824
## 2964 Feb 2020 2020-02-01             2    2.567474                1 0.7361111
## 2965 Feb 2020 2020-02-01             2    2.652308                1 0.7418244
## 2970 Feb 2020 2020-02-01             2    2.784314                1 0.7123746
## 2971 Feb 2020 2020-02-01             2    2.718310                1 0.7283019
## 2972 Feb 2020 2020-02-01             2    2.726974                1 0.7259194
## 2973 Feb 2020 2020-02-01             2    2.705167                1 0.7491582
## 2974 Feb 2020 2020-02-01             2    2.697749                1 0.7531418
## 2975 Feb 2020 2020-02-01             2    2.671975                1 0.7183219
## 2976 Feb 2020 2020-02-01             2    2.608808                1 0.7192857
## 2978 Feb 2020 2020-02-01             2    2.893382                1 0.7633366
## 2979 Feb 2020 2020-02-01             2    2.623377                1 0.7144120
## 2980 Feb 2020 2020-02-01             2    2.636637                1 0.7238252
## 2981 Feb 2020 2020-02-01             2    2.653465                1 0.7349177
## 2982 Feb 2020 2020-02-01             2    2.626263                1 0.7123288
## 2983 Feb 2020 2020-02-01             2    2.469208                1 0.7022519
## 2984 Feb 2020 2020-02-01             2    2.704735                1 0.7144960
## 2985 Feb 2020 2020-02-01             2    2.531507                1 0.7085890
## 2986 Feb 2020 2020-02-01             2    2.605505                1 0.7123746
## 2987 Feb 2020 2020-02-01             2    2.870432                1 0.7526132
## 2988 Feb 2020 2020-02-01             2    2.608150                1 0.7160069
## 2990 Feb 2020 2020-02-01             2    2.516517                1 0.6919901
## 2991 Feb 2020 2020-02-01             2    2.833887                1 0.7436792
## 2992 Feb 2020 2020-02-01             2    2.613208                1 0.7054329
## 2994 Feb 2020 2020-02-01             2    2.723214                1 0.7233202
## 2995 Feb 2020 2020-02-01             2    2.800664                1 0.7446996
## 2997 Feb 2020 2020-02-01             2    2.507003                1 0.7036164
## 2998 Feb 2020 2020-02-01             2    2.711974                1 0.7286957
## 2999 Feb 2020 2020-02-01             2    2.685619                1 0.7087379
## 3000 Feb 2020 2020-02-01             2    2.593668                1 0.7259970
## 3001 Feb 2020 2020-02-01             2    2.861842                1 0.7525952
## 3002 Feb 2020 2020-02-01             2    2.598726                1 0.7101828
## 3004 Feb 2020 2020-02-01             2    2.745098                1 0.7394366
## 3005 Feb 2020 2020-02-01             2    2.715232                1 0.7237423
## 3006 Feb 2020 2020-02-01             2    2.878963                1 0.7176724
## 3007 Feb 2020 2020-02-01             2    2.600649                1 0.7416667
## 3009 Feb 2020 2020-02-01             2    2.719033                1 0.7334963
## 3010 Feb 2020 2020-02-01             2    2.554896                1 0.7045827
## 3011 Feb 2020 2020-02-01             2    2.562300                1 0.7091070
## 3013 Feb 2020 2020-02-01             2    2.624615                1 0.7253401
## 3014 Feb 2020 2020-02-01             2    2.626866                1 0.7284768
## 3015 Feb 2020 2020-02-01             2    2.665635                1 0.7352690
## 3016 Feb 2020 2020-02-01             2    2.692308                1 0.7317073
## 3019 Feb 2020 2020-02-01             2    2.726236                1 0.7368962
## 3020 Feb 2020 2020-02-01             2    2.682927                1 0.7357860
## 3045 Feb 2020 2020-02-01             2    2.607345                1 0.7143963
## 3050 Feb 2020 2020-02-01             2    2.558333                1 0.7332803
## 3052 Feb 2020 2020-02-01             2    1.856164                1 0.6361502
## 3053 Feb 2020 2020-02-01             2    2.534591                1 0.7196429
## 3054 Feb 2020 2020-02-01             2    2.743333                1 0.7113224
## 3055 Feb 2020 2020-02-01             2    2.633423                1 0.7178545
## 3056 Feb 2020 2020-02-01             2    2.786982                1 0.7251732
## 3057 Feb 2020 2020-02-01             2    2.802013                1 0.7241977
## 3058 Feb 2020 2020-02-01             2    2.625000                1 0.7134986
## 3059 Feb 2020 2020-02-01             2    3.009375                1 0.7558870
## 3060 Feb 2020 2020-02-01             2    2.886850                1 0.7300851
## 3061 Feb 2020 2020-02-01             2    2.630058                1 0.7137255
## 3062 Feb 2020 2020-02-01             2    2.568702                1 0.7151966
## 3063 Feb 2020 2020-02-01             2    2.708824                1 0.7234878
## 3064 Feb 2020 2020-02-01             2    2.950820                1 0.7493755
## 3066 Feb 2020 2020-02-01             2    2.883721                1 0.7560976
## 3067 Feb 2020 2020-02-01             2    2.775920                1 0.7404103
## 3068 Feb 2020 2020-02-01             2    2.713873                1 0.7434679
## 3069 Feb 2020 2020-02-01             2    2.540070                1 0.7246521
## 3070 Feb 2020 2020-02-01             2    2.508929                1 0.7107926
## 3071 Feb 2020 2020-02-01             2    2.840580                1 0.7361502
## 3072 Feb 2020 2020-02-01             2    2.900000                1 0.7291160
## 3073 Feb 2020 2020-02-01             2    2.746479                1 0.7116788
## 3074 Feb 2020 2020-02-01             2    2.654987                1 0.7296296
## 3075 Feb 2020 2020-02-01             2    2.659722                1 0.7253788
## 3076 Feb 2020 2020-02-01             2    2.721831                1 0.7144177
## 3077 Feb 2020 2020-02-01             2    2.827893                1 0.7241641
## 3078 Feb 2020 2020-02-01             2    2.557103                1 0.7171875
## 3079 Feb 2020 2020-02-01             2    2.672297                1 0.7263545
## 3080 Feb 2020 2020-02-01             2    2.642442                1 0.7135008
## 3081 Feb 2020 2020-02-01             2    2.642857                1 0.7400000
## 3082 Feb 2020 2020-02-01             2    2.520000                1 0.7049847
## 3083 Feb 2020 2020-02-01             2    2.589831                1 0.7126866
## 3084 Feb 2020 2020-02-01             2    2.786667                1 0.7231834
## 3085 Feb 2020 2020-02-01             2    2.506711                1 0.7141491
## 3086 Feb 2020 2020-02-01             2    2.773885                1 0.7313182
## 3087 Feb 2020 2020-02-01             2    2.706485                1 0.7329020
## 3088 Feb 2020 2020-02-01             2    2.708571                1 0.7337461
## 3089 Feb 2020 2020-02-01             2    2.677193                1 0.7252852
## 3090 Feb 2020 2020-02-01             2    2.657609                1 0.7325843
## 3091 Feb 2020 2020-02-01             2    2.801471                1 0.7485265
## 3092 Feb 2020 2020-02-01             2    2.859649                1 0.7388939
## 3093 Feb 2020 2020-02-01             2    2.410256                1 0.7128927
## 3094 Feb 2020 2020-02-01             2    2.707447                1 0.7355491
## 3095 Feb 2020 2020-02-01             2    2.777409                1 0.7307692
## 3096 Feb 2020 2020-02-01             2    2.612426                1 0.7382943
## 3097 Feb 2020 2020-02-01             2    2.694631                1 0.7182469
## 3098 Feb 2020 2020-02-01             2    2.608939                1 0.7043741
## 3099 Feb 2020 2020-02-01             2    2.831034                1 0.7369838
## 3100 Feb 2020 2020-02-01             2    2.696697                1 0.7265372
## 3101 Feb 2020 2020-02-01             2    2.631098                1 0.7144040
## 3102 Feb 2020 2020-02-01             2    2.648968                1 0.7098814
## 3103 Feb 2020 2020-02-01             2    2.782477                1 0.7184087
## 3105 Feb 2020 2020-02-01             2    2.854478                1 0.7327586
## 3107 Feb 2020 2020-02-01             2    2.934307                1 0.7349177
## 3108 Feb 2020 2020-02-01             2    2.635452                1 0.7079964
## 3109 Feb 2020 2020-02-01             2    2.649852                1 0.7374071
## 3110 Feb 2020 2020-02-01             2    2.648725                1 0.7408875
## 3111 Feb 2020 2020-02-01             2    2.735905                1 0.7282780
## 3112 Feb 2020 2020-02-01             2    2.649682                1 0.7247387
## 3113 Feb 2020 2020-02-01             2    2.628289                1 0.7243880
## 3115 Feb 2020 2020-02-01             2    2.571429                1 0.7344214
## 3116 Feb 2020 2020-02-01             2    2.595016                1 0.7430865
## 3117 Feb 2020 2020-02-01             2    2.792388                1 0.7383349
## 3118 Feb 2020 2020-02-01             2    2.537190                1 0.7184087
## 3119 Feb 2020 2020-02-01             2    2.786207                1 0.7332123
## 3120 Feb 2020 2020-02-01             2    2.677326                1 0.7356230
## 3121 Feb 2020 2020-02-01             2    2.835125                1 0.7310536
## 3122 Feb 2020 2020-02-01             2    2.586957                1 0.7374129
## 3123 Feb 2020 2020-02-01             2    2.750000                1 0.7315914
## 3124 Feb 2020 2020-02-01             2    2.660000                1 0.7314390
## 3125 Feb 2020 2020-02-01             2    2.797753                1 0.7302053
## 3126 Feb 2020 2020-02-01             2    2.849398                1 0.7501983
## 3127 Feb 2020 2020-02-01             2    2.783537                1 0.7315705
## 3128 Feb 2020 2020-02-01             2    2.665738                1 0.7424360
## 3129 Feb 2020 2020-02-01             2    2.670175                1 0.7275335
## 3131 Feb 2020 2020-02-01             2    2.715170                1 0.7495726
## 3132 Feb 2020 2020-02-01             2    2.631068                1 0.7252453
## 3133 Feb 2020 2020-02-01             2    2.832787                1 0.7461140
## 3134 Feb 2020 2020-02-01             2    2.577061                1 0.7420021
## 3135 Feb 2020 2020-02-01             2    2.717262                1 0.7398703
## 3136 Feb 2020 2020-02-01             2    2.750799                1 0.7461005
## 3137 Feb 2020 2020-02-01             2    2.564972                1 0.7340340
## 3138 Feb 2020 2020-02-01             2    2.791946                1 0.7408727
## 3139 Feb 2020 2020-02-01             2    2.571429                1 0.7372627
## 3140 Feb 2020 2020-02-01             2    2.861111                1 0.7538884
## 3141 Feb 2020 2020-02-01             2    2.636111                1 0.7437304
## 3142 Feb 2020 2020-02-01             2    3.033582                1 0.7486188
## 3143 Feb 2020 2020-02-01             2    2.388060                1 0.7036060
## 3144 Feb 2020 2020-02-01             2    2.575931                1 0.7368852
## 3145 Feb 2020 2020-02-01             2    2.703947                1 0.7576037
## 3146 Feb 2020 2020-02-01             2    2.751748                1 0.7417531
## 3147 Feb 2020 2020-02-01             2    2.513605                1 0.6811060
## 3148 Feb 2020 2020-02-01             2    2.521084                1 0.7153846
## 3149 Feb 2020 2020-02-01             2    2.839858                1 0.7267760
## 3150 Feb 2020 2020-02-01             2    2.848993                1 0.7587131
## 3151 Feb 2020 2020-02-01             2    2.615385                1 0.7096189
## 3152 Feb 2020 2020-02-01             2    2.551370                1 0.7275391
## 3153 Feb 2020 2020-02-01             2    2.401639                1 0.7240527
## 3154 Feb 2020 2020-02-01             2    2.707071                1 0.7083700
## 3155 Feb 2020 2020-02-01             2    2.588406                1 0.7242498
## 3157 Feb 2020 2020-02-01             2    2.551471                1 0.6953908
## 3158 Feb 2020 2020-02-01             2    2.770968                1 0.7329352
## 3159 Feb 2020 2020-02-01             2    2.671429                1 0.7385466
## 3160 Feb 2020 2020-02-01             2    2.819728                1 0.7455036
## 3162 Feb 2020 2020-02-01             2    2.656667                1 0.7135184
## 3164 Feb 2020 2020-02-01             2    2.682432                1 0.7434457
## 3165 Feb 2020 2020-02-01             2    2.683386                1 0.7353952
## 3167 Feb 2020 2020-02-01             2    2.664653                1 0.7313433
## 3168 Feb 2020 2020-02-01             2    2.820069                1 0.7449726
## 3169 Feb 2020 2020-02-01             2    2.795987                1 0.7565611
## 3170 Feb 2020 2020-02-01             2    2.745665                1 0.7257448
## 3171 Feb 2020 2020-02-01             2    2.642651                1 0.7318436
## 3172 Feb 2020 2020-02-01             2    2.564516                1 0.7022968
## 3175 Feb 2020 2020-02-01             2    2.659016                1 0.7386157
## 3176 Feb 2020 2020-02-01             2    2.466216                1 0.7101167
## 3177 Feb 2020 2020-02-01             2    2.648276                1 0.7197751
## 3178 Feb 2020 2020-02-01             2    2.823129                1 0.7280702
## 3180 Feb 2020 2020-02-01             2    2.592593                1 0.7368421
## 3181 Feb 2020 2020-02-01             2    2.654971                1 0.7110415
## 3182 Feb 2020 2020-02-01             2    2.627907                1 0.7006200
## 3183 Feb 2020 2020-02-01             2    2.456338                1 0.7100977
## 3185 Feb 2020 2020-02-01             2    2.543624                1 0.6903461
## 3186 Feb 2020 2020-02-01             2    2.509202                1 0.6985482
## 3187 Feb 2020 2020-02-01             2    2.547692                1 0.7070880
## 3189 Feb 2020 2020-02-01             2    2.482249                1 0.7282986
## 3190 Feb 2020 2020-02-01             2    2.640000                1 0.7371134
## 3191 Feb 2020 2020-02-01             2    2.525084                1 0.6990741
## 3192 Feb 2020 2020-02-01             2    2.645161                1 0.7142857
## 3193 Feb 2020 2020-02-01             2    2.560261                1 0.7017857
## 3194 Feb 2020 2020-02-01             2    2.645390                1 0.7152445
## 3196 Feb 2020 2020-02-01             2    2.603217                1 0.7356061
## 3197 Feb 2020 2020-02-01             2    2.578313                1 0.7010647
## 3198 Feb 2020 2020-02-01             2    2.654605                1 0.7078947
## 3199 Feb 2020 2020-02-01             2    2.462644                1 0.6978827
## 3200 Feb 2020 2020-02-01             2    2.531646                1 0.7062147
## 3201 Feb 2020 2020-02-01             2    2.612795                1 0.7165282
## 3202 Feb 2020 2020-02-01             2    2.606498                1 0.7205589
## 3203 Feb 2020 2020-02-01             2    2.652308                1 0.7399142
## 3205 Feb 2020 2020-02-01             2    2.484950                1 0.7035985
## 3206 Feb 2020 2020-02-01             2    2.666667                1 0.7215412
## 3207 Feb 2020 2020-02-01             2    2.618012                1 0.7388256
## 3209 Feb 2020 2020-02-01             2    2.732877                1 0.7354839
## 3210 Feb 2020 2020-02-01             2    2.552561                1 0.7051378
## 3211 Feb 2020 2020-02-01             2    2.775510                1 0.7364621
## 3212 Feb 2020 2020-02-01             2    2.744505                1 0.7233888
## 3213 Feb 2020 2020-02-01             2    2.516216                1 0.6927083
## 3214 Feb 2020 2020-02-01             2    2.721713                1 0.7057891
## 3215 Feb 2020 2020-02-01             2    2.584337                1 0.7027027
## 3216 Feb 2020 2020-02-01             2    2.596825                1 0.7336323
## 3218 Feb 2020 2020-02-01             2    2.664384                1 0.7118024
## 3219 Feb 2020 2020-02-01             2    2.609164                1 0.7009413
## 3220 Feb 2020 2020-02-01             2    2.566225                1 0.6888889
## 3221 Feb 2020 2020-02-01             2    2.528986                1 0.7301255
## 3222 Feb 2020 2020-02-01             2    2.607774                1 0.7055449
## 3223 Feb 2020 2020-02-01             2    2.786207                1 0.7440147
## 3224 Feb 2020 2020-02-01             2    2.797468                1 0.7330017
## 3226 Feb 2020 2020-02-01             2    2.518072                1 0.7133106
## 3227 Feb 2020 2020-02-01             2    2.633245                1 0.7306003
## 3229 Feb 2020 2020-02-01             2    2.565445                1 0.7070707
## 3230 Feb 2020 2020-02-01             2    2.549020                1 0.7276119
## 3231 Feb 2020 2020-02-01             2    2.896104                1 0.7439533
## 3232 Feb 2020 2020-02-01             2    2.604096                1 0.7177799
## 3234 Feb 2020 2020-02-01             2    2.552553                1 0.6871463
## 3235 Feb 2020 2020-02-01             2    2.644654                1 0.7091062
## 3236 Feb 2020 2020-02-01             2    2.692529                1 0.7158136
## 3237 Feb 2020 2020-02-01             2    2.710884                1 0.7154399
## 3238 Feb 2020 2020-02-01             2    2.709343                1 0.7118182
## 3239 Feb 2020 2020-02-01             2    2.717532                1 0.7159966
## 3240 Feb 2020 2020-02-01             2    2.625000                1 0.7065421
## 3241 Feb 2020 2020-02-01             2    2.612299                1 0.7401515
## 3242 Feb 2020 2020-02-01             2    2.781350                1 0.7508681
## 3243 Feb 2020 2020-02-01             2    3.068966                1 0.7606838
## 3244 Feb 2020 2020-02-01             2    2.493188                1 0.7065637
## 3246 Feb 2020 2020-02-01             2    2.695035                1 0.7176582
## 3247 Feb 2020 2020-02-01             2    2.615625                1 0.7147737
## 3248 Feb 2020 2020-02-01             2    2.710526                1 0.7177700
## 3249 Feb 2020 2020-02-01             2    2.488571                1 0.7075548
## 3250 Feb 2020 2020-02-01             2    2.561873                1 0.7185741
## 3251 Feb 2020 2020-02-01             2    2.542955                1 0.7054337
## 3252 Feb 2020 2020-02-01             2    2.690852                1 0.7404514
## 3253 Feb 2020 2020-02-01             2    2.655949                1 0.7145329
## 3254 Feb 2020 2020-02-01             2    2.666667                1 0.7324955
## 3255 Feb 2020 2020-02-01             2    2.603960                1 0.7255172
## 3256 Feb 2020 2020-02-01             2    2.514745                1 0.7293935
## 3257 Feb 2020 2020-02-01             2    2.517341                1 0.7069805
## 3258 Feb 2020 2020-02-01             2    2.692053                1 0.7311151
## 3259 Feb 2020 2020-02-01             2    2.643750                1 0.7421053
## 3260 Feb 2020 2020-02-01             2    2.541916                1 0.7312661
## 3261 Feb 2020 2020-02-01             2    2.542500                1 0.7197452
## 3262 Feb 2020 2020-02-01             2    2.554098                1 0.6942959
## 3263 Feb 2020 2020-02-01             2    2.600567                1 0.7268409
## 3264 Feb 2020 2020-02-01             2    2.621538                1 0.7000822
## 3265 Feb 2020 2020-02-01             2    2.671429                1 0.7164751
## 3266 Feb 2020 2020-02-01             2    2.774306                1 0.7357274
## 3267 Feb 2020 2020-02-01             2    2.630662                1 0.7109228
## 3268 Feb 2020 2020-02-01             2    2.491228                1 0.6974460
## 3269 Feb 2020 2020-02-01             2    2.681416                1 0.7289495
## 3270 Feb 2020 2020-02-01             2    2.551495                1 0.7265847
## 3271 Feb 2020 2020-02-01             2    2.581662                1 0.7156473
## 3273 Feb 2020 2020-02-01             2    2.486239                1 0.6702391
## 3274 Feb 2020 2020-02-01             2    2.742574                1 0.7213542
## 3279 Feb 2020 2020-02-01             2    2.839041                1 0.7342781
## 3280 Feb 2020 2020-02-01             2    2.627517                1 0.7196691
## 3281 Feb 2020 2020-02-01             2    2.617940                1 0.7229358
## 3282 Feb 2020 2020-02-01             2    2.585455                1 0.7152918
## 3283 Feb 2020 2020-02-01             2    2.706422                1 0.7474662
## 3285 Feb 2020 2020-02-01             2    2.472789                1 0.7003854
## 3287 Feb 2020 2020-02-01             2    2.590580                1 0.7058243
## 3288 Feb 2020 2020-02-01             2    2.433735                1 0.6816648
## 3289 Feb 2020 2020-02-01             2    2.715909                1 0.7206030
## 3290 Feb 2020 2020-02-01             2    2.637195                1 0.7004049
## 3291 Feb 2020 2020-02-01             2    2.560403                1 0.7130841
## 3292 Feb 2020 2020-02-01             2    2.635379                1 0.7142857
## 3293 Feb 2020 2020-02-01             2    2.530675                1 0.7243196
## 3294 Feb 2020 2020-02-01             2    2.761290                1 0.7341338
## 3295 Feb 2020 2020-02-01             2    2.783333                1 0.7409051
## 3296 Feb 2020 2020-02-01             2    2.670213                1 0.7017707
## 3297 Feb 2020 2020-02-01             2    2.756014                1 0.7147950
## 3300 Feb 2020 2020-02-01             2    2.507553                1 0.7217391
## 3301 Feb 2020 2020-02-01             2    2.643123                1 0.7088734
## 3302 Feb 2020 2020-02-01             2    2.734426                1 0.7140411
## 3303 Feb 2020 2020-02-01             2    2.601375                1 0.7250958
## 3304 Feb 2020 2020-02-01             2    2.626230                1 0.7281818
## 3305 Feb 2020 2020-02-01             2    2.633094                1 0.7233202
## 3306 Feb 2020 2020-02-01             2    2.435644                1 0.6752059
## 3307 Feb 2020 2020-02-01             2    2.559871                1 0.6926445
## 3308 Feb 2020 2020-02-01             2    2.695652                1 0.7337278
## 3309 Feb 2020 2020-02-01             2    2.658784                1 0.7122172
## 3311 Feb 2020 2020-02-01             2    2.652174                1 0.7137714
## 3312 Feb 2020 2020-02-01             2    2.603960                1 0.7271889
## 3313 Feb 2020 2020-02-01             2    2.665672                1 0.7416944
## 3314 Feb 2020 2020-02-01             2    2.706371                1 0.7296490
## 3315 Feb 2020 2020-02-01             2    2.776978                1 0.7502430
## 3316 Feb 2020 2020-02-01             2    2.661677                1 0.7383721
## 3317 Feb 2020 2020-02-01             2    2.745704                1 0.7224231
## 3318 Feb 2020 2020-02-01             2    2.518519                1 0.7145359
## 3319 Feb 2020 2020-02-01             2    2.682759                1 0.7144169
## 3320 Feb 2020 2020-02-01             2    2.610169                1 0.7162791
## 3321 Feb 2020 2020-02-01             2    2.773973                1 0.7472325
## 3322 Feb 2020 2020-02-01             2    2.426513                1 0.7147708
## 3323 Feb 2020 2020-02-01             2    2.500000                1 0.7230769
## 3325 Feb 2020 2020-02-01             2    2.695652                1 0.7299485
## 3327 Feb 2020 2020-02-01             2    2.708609                1 0.7362736
## 3332 Feb 2020 2020-02-01             2    2.506849                1 0.7325861
## 3339 Feb 2020 2020-02-01             2    2.562937                1 0.7144250
## 3340 Feb 2020 2020-02-01             2    2.491620                1 0.7079365
## 3341 Feb 2020 2020-02-01             2    2.516667                1 0.7162055
## 3342 Feb 2020 2020-02-01             2    2.556667                1 0.7195122
## 3343 Feb 2020 2020-02-01             2    2.821561                1 0.7256214
## 3348 Feb 2020 2020-02-01             2    2.550409                1 0.7238979
## 3350 Feb 2020 2020-02-01             2    2.515723                1 0.7259528
## 3351 Feb 2020 2020-02-01             2    2.609756                1 0.7149220
## 3379 Feb 2020 2020-02-01             2    2.589189                1 0.7290715
## 3391 Feb 2020 2020-02-01             2    2.649231                1 0.7247475
## 3394 Feb 2020 2020-02-01             2    2.612500                1 0.7013423
## 3396 Feb 2020 2020-02-01             2    2.724138                1 0.7247706
## 3398 Feb 2020 2020-02-01             2    2.692308                1 0.7291667
## 3399 Feb 2020 2020-02-01             2    2.620779                1 0.7161107
## 3400 Feb 2020 2020-02-01             2    2.445230                1 0.7039674
## 3401 Feb 2020 2020-02-01             2    2.471751                1 0.7033762
## 3402 Feb 2020 2020-02-01             2    2.576803                1 0.7339286
## 3404 Feb 2020 2020-02-01             2    2.525641                1 0.7105500
## 3405 Feb 2020 2020-02-01             2    2.523810                1 0.7126050
## 3406 Feb 2020 2020-02-01             2    2.649832                1 0.7220183
## 3407 Feb 2020 2020-02-01             2    2.509036                1 0.7005887
## 3408 Feb 2020 2020-02-01             2    2.641447                1 0.7300000
## 3409 Feb 2020 2020-02-01             2    2.554945                1 0.7142857
## 3410 Feb 2020 2020-02-01             2    2.649718                1 0.7165775
## 3411 Feb 2020 2020-02-01             2    2.672566                1 0.7462932
## 3412 Feb 2020 2020-02-01             2    2.609756                1 0.7010647
## 3414 Feb 2020 2020-02-01             2    2.704180                1 0.7250000
## 3415 Feb 2020 2020-02-01             2    2.549575                1 0.7182761
## 3418 Feb 2020 2020-02-01             2    2.579114                1 0.7080799
## 3419 Feb 2020 2020-02-01             2    2.610224                1 0.7340521
## 3420 Feb 2020 2020-02-01             2    2.607362                1 0.7124895
## 3421 Feb 2020 2020-02-01             2    2.587744                1 0.7218337
## 3422 Feb 2020 2020-02-01             2    2.666667                1 0.7228916
## 3423 Feb 2020 2020-02-01             2    2.665574                1 0.7057292
## 3424 Feb 2020 2020-02-01             2    2.667732                1 0.7292576
## 3425 Feb 2020 2020-02-01             2    2.550898                1 0.7141660
## 3426 Feb 2020 2020-02-01             2    2.833333                1 0.7278782
## 3428 Feb 2020 2020-02-01             2    2.627660                1 0.6848429
## 3429 Feb 2020 2020-02-01             2    2.797203                1 0.7233273
## 3430 Feb 2020 2020-02-01             2    2.648649                1 0.7239151
## 3431 Feb 2020 2020-02-01             2    2.713043                1 0.7166922
## 3432 Feb 2020 2020-02-01             2    2.777778                1 0.7453152
## 3433 Feb 2020 2020-02-01             2    2.662500                1 0.7319588
## 3434 Feb 2020 2020-02-01             2    2.752542                1 0.7449541
## 3435 Feb 2020 2020-02-01             2    2.712025                1 0.7306053
## 3436 Feb 2020 2020-02-01             2    2.597222                1 0.7117031
## 3437 Feb 2020 2020-02-01             2    2.679412                1 0.7230159
## 3438 Feb 2020 2020-02-01             2    2.651877                1 0.7221190
## 3439 Feb 2020 2020-02-01             2    2.721088                1 0.7272727
## 3440 Feb 2020 2020-02-01             2    2.725632                1 0.7315891
## 3441 Feb 2020 2020-02-01             2    2.652568                1 0.7335004
## 3442 Feb 2020 2020-02-01             2    2.676976                1 0.7233055
## 3443 Feb 2020 2020-02-01             2    2.733333                1 0.7250804
## 3444 Feb 2020 2020-02-01             2    2.591900                1 0.7111111
## 3445 Feb 2020 2020-02-01             2    2.672026                1 0.7257642
## 3448 Feb 2020 2020-02-01             2    2.569697                1 0.7078464
## 3451 Feb 2020 2020-02-01             2    2.824627                1 0.7094658
## 3452 Feb 2020 2020-02-01             2    2.793103                1 0.7597403
## 3453 Feb 2020 2020-02-01             2    2.705696                1 0.7215190
## 3454 Feb 2020 2020-02-01             2    2.716981                1 0.7135778
## 3461 Feb 2020 2020-02-01             2    2.711712                1 0.7413793
## 3462 Feb 2020 2020-02-01             2    2.375000                1 0.7012876
## 3466 Feb 2020 2020-02-01             2    2.843636                1 0.7363465
## 3473 Feb 2020 2020-02-01             2    2.613990                1 0.7419118
## 3476 Oct 2019 2019-10-01            10    2.642623                1 0.7145390
## 3477 Oct 2019 2019-10-01            10    2.531447                1 0.7174688
## 3478 Oct 2019 2019-10-01            10    2.461126                1 0.7160686
## 3479 Oct 2019 2019-10-01            10    2.546547                1 0.7304048
## 3480 Oct 2019 2019-10-01            10    2.609231                1 0.7266495
## 3481 Oct 2019 2019-10-01            10    2.592262                1 0.7139344
## 3482 Oct 2019 2019-10-01            10    2.581281                1 0.7192862
## 3483 Oct 2019 2019-10-01            10    2.664360                1 0.7019143
## 3485 Oct 2019 2019-10-01            10    2.652778                1 0.7240334
## 3486 Oct 2019 2019-10-01            10    2.663333                1 0.7257039
## 3487 Oct 2019 2019-10-01            10    2.631399                1 0.7259887
## 3488 Oct 2019 2019-10-01            10    2.731959                1 0.7313707
## 3489 Oct 2019 2019-10-01            10    2.677316                1 0.7299652
## 3492 Oct 2019 2019-10-01            10    2.557003                1 0.7123412
## 3493 Oct 2019 2019-10-01            10    2.493188                1 0.7176471
## 3496 Oct 2019 2019-10-01            10    2.560773                1 0.7293470
## 3498 Oct 2019 2019-10-01            10    2.893103                1 0.7504472
## 3499 Oct 2019 2019-10-01            10    2.733788                1 0.7409806
## 3500 Oct 2019 2019-10-01            10    2.682119                1 0.7206406
## 3501 Oct 2019 2019-10-01            10    2.729345                1 0.7357911
## 3502 Oct 2019 2019-10-01            10    2.713415                1 0.7367550
## 3503 Oct 2019 2019-10-01            10    2.658462                1 0.7487002
## 3504 Oct 2019 2019-10-01            10    2.616129                1 0.7312894
## 3505 Oct 2019 2019-10-01            10    2.612466                1 0.7432537
## 3506 Oct 2019 2019-10-01            10    2.815436                1 0.7333916
## 3507 Oct 2019 2019-10-01            10    2.665746                1 0.7451737
## 3508 Oct 2019 2019-10-01            10    2.681690                1 0.7357032
## 3509 Oct 2019 2019-10-01            10    2.833333                1 0.7597765
## 3510 Oct 2019 2019-10-01            10    2.603261                1 0.7301829
## 3511 Oct 2019 2019-10-01            10    2.567123                1 0.7360566
## 3513 Oct 2019 2019-10-01            10    2.577181                1 0.7286528
## 3514 Oct 2019 2019-10-01            10    2.767956                1 0.7367647
## 3515 Oct 2019 2019-10-01            10    2.672727                1 0.7266949
## 3516 Oct 2019 2019-10-01            10    2.654255                1 0.7509406
## 3517 Oct 2019 2019-10-01            10    2.675439                1 0.7193396
## 3518 Oct 2019 2019-10-01            10    2.679790                1 0.7313754
## 3519 Oct 2019 2019-10-01            10    2.737952                1 0.7312953
## 3520 Oct 2019 2019-10-01            10    2.796657                1 0.7470238
## 3521 Oct 2019 2019-10-01            10    2.697885                1 0.7380165
## 3522 Oct 2019 2019-10-01            10    2.608696                1 0.7328990
## 3523 Oct 2019 2019-10-01            10    2.673854                1 0.7469880
## 3524 Oct 2019 2019-10-01            10    2.614493                1 0.7170111
## 3525 Oct 2019 2019-10-01            10    2.735294                1 0.7316434
## 3526 Oct 2019 2019-10-01            10    2.552707                1 0.7237480
## 3528 Oct 2019 2019-10-01            10    2.734899                1 0.7257346
## 3529 Oct 2019 2019-10-01            10    2.445652                1 0.7097792
## 3530 Oct 2019 2019-10-01            10    2.668966                1 0.7295005
## 3531 Oct 2019 2019-10-01            10    2.547945                1 0.7288401
## 3532 Oct 2019 2019-10-01            10    2.625455                1 0.7176938
## 3533 Oct 2019 2019-10-01            10    2.609756                1 0.7379310
## 3534 Oct 2019 2019-10-01            10    2.683673                1 0.7325905
## 3535 Oct 2019 2019-10-01            10    2.516304                1 0.7325949
## 3536 Oct 2019 2019-10-01            10    2.658307                1 0.7297762
## 3537 Oct 2019 2019-10-01            10    2.597633                1 0.7132413
## 3538 Oct 2019 2019-10-01            10    2.654952                1 0.7452915
## 3539 Oct 2019 2019-10-01            10    2.557377                1 0.7536232
## 3540 Oct 2019 2019-10-01            10    2.677143                1 0.7366352
## 3541 Oct 2019 2019-10-01            10    2.806950                1 0.7248255
## 3542 Oct 2019 2019-10-01            10    2.626289                1 0.7514749
## 3543 Oct 2019 2019-10-01            10    2.617241                1 0.7187500
## 3544 Oct 2019 2019-10-01            10    2.868339                1 0.7487725
## 3545 Oct 2019 2019-10-01            10    2.845070                1 0.7361516
## 3546 Oct 2019 2019-10-01            10    2.698507                1 0.7237790
## 3547 Oct 2019 2019-10-01            10    2.680912                1 0.7216258
## 3549 Oct 2019 2019-10-01            10    2.513678                1 0.7172593
## 3550 Oct 2019 2019-10-01            10    2.566085                1 0.7282378
## 3551 Oct 2019 2019-10-01            10    2.821086                1 0.7376775
## 3552 Oct 2019 2019-10-01            10    2.713864                1 0.7244094
## 3553 Oct 2019 2019-10-01            10    2.765568                1 0.7169991
## 3554 Oct 2019 2019-10-01            10    2.627451                1 0.7079245
## 3555 Oct 2019 2019-10-01            10    2.691824                1 0.7475983
## 3556 Oct 2019 2019-10-01            10    2.754601                1 0.7318663
## 3557 Oct 2019 2019-10-01            10    2.758427                1 0.7383459
## 3558 Oct 2019 2019-10-01            10    2.848185                1 0.7295013
## 3559 Oct 2019 2019-10-01            10    2.587940                1 0.7529240
## 3560 Oct 2019 2019-10-01            10    2.751678                1 0.7218310
## 3561 Oct 2019 2019-10-01            10    2.700000                1 0.7126100
## 3562 Oct 2019 2019-10-01            10    2.622356                1 0.7425150
## 3563 Oct 2019 2019-10-01            10    2.569322                1 0.7098615
## 3564 Oct 2019 2019-10-01            10    2.693603                1 0.7111111
## 3565 Oct 2019 2019-10-01            10    2.575563                1 0.7281818
## 3566 Dec 2016 2016-12-01            12    2.663185                1 0.7423581
## 3570 Oct 2019 2019-10-01            10    2.669540                1 0.7497982
## 3571 Oct 2019 2019-10-01            10    2.738739                1 0.7037037
## 3572 Oct 2019 2019-10-01            10    2.601770                1 0.7050360
## 3573 Oct 2019 2019-10-01            10    2.811688                1 0.7234754
## 3574 Oct 2019 2019-10-01            10    2.621053                1 0.7275383
## 3575 Oct 2019 2019-10-01            10    2.616519                1 0.7062102
## 3576 Oct 2019 2019-10-01            10    2.645646                1 0.7070626
## 3577 Oct 2019 2019-10-01            10    2.735016                1 0.7378723
## 3578 Oct 2019 2019-10-01            10    2.580475                1 0.7239082
## 3579 Oct 2019 2019-10-01            10    2.567976                1 0.7172996
## 3581 Oct 2019 2019-10-01            10    2.681818                1 0.7441441
## 3583 Oct 2019 2019-10-01            10    2.623794                1 0.7431694
## 3584 Oct 2019 2019-10-01            10    2.845506                1 0.7651057
## 3585 Oct 2019 2019-10-01            10    2.783088                1 0.7257910
## 3586 Oct 2019 2019-10-01            10    2.438356                1 0.7057891
## 3587 Oct 2019 2019-10-01            10    2.554913                1 0.7100402
## 3588 Oct 2019 2019-10-01            10    2.627760                1 0.7174849
## 3589 Oct 2019 2019-10-01            10    2.663073                1 0.7270052
## 3590 Oct 2019 2019-10-01            10    2.695341                1 0.7161905
## 3591 Oct 2019 2019-10-01            10    2.570571                1 0.7109635
## 3592 May 2019 2019-05-01             5    2.498592                1 0.7276456
## 3594 May 2019 2019-05-01             5    2.790123                1 0.7915937
## 3595 May 2019 2019-05-01             5    2.841499                1 0.7520976
## 3596 May 2019 2019-05-01             5    2.629213                1 0.7826087
## 3597 May 2019 2019-05-01             5    2.706897                1 0.7175503
## 3598 May 2019 2019-05-01             5    2.543974                1 0.6797215
## 3599 May 2019 2019-05-01             5    2.712281                1 0.7278719
## 3600 May 2019 2019-05-01             5    2.714789                1 0.7573674
## 3601 May 2019 2019-05-01             5    2.579937                1 0.7082616
## 3602 May 2019 2019-05-01             5    2.824561                1 0.7600315
## 3603 May 2019 2019-05-01             5    2.731250                1 0.7761989
## 3604 May 2019 2019-05-01             5    2.900662                1 0.7711268
## 3605 May 2019 2019-05-01             5    2.284884                1 0.7471483
## 3606 May 2019 2019-05-01             5    2.666667                1 0.7191679
## 3607 May 2019 2019-05-01             5    2.766154                1 0.8033959
## 3608 May 2019 2019-05-01             5    2.677165                1 0.7391304
## 3609 May 2019 2019-05-01             5    2.854545                1 0.7201835
## 3610 May 2019 2019-05-01             5    2.591503                1 0.7538023
## 3611 May 2019 2019-05-01             5    2.325228                1 0.6769912
## 3612 May 2019 2019-05-01             5    2.715596                1 0.7266776
## 3613 May 2019 2019-05-01             5    2.523962                1 0.7009760
## 3614 May 2019 2019-05-01             5    2.748344                1 0.7607699
## 3615 May 2019 2019-05-01             5    3.248227                1 0.7212598
## 3616 May 2019 2019-05-01             5    2.802985                1 0.7417062
## 3617 May 2019 2019-05-01             5    2.889213                1 0.7513268
## 3618 May 2019 2019-05-01             5    2.597911                1 0.7719162
## 3619 May 2019 2019-05-01             5    2.439898                1 0.7254753
## 3620 May 2019 2019-05-01             5    2.759791                1 0.7715328
## 3621 May 2019 2019-05-01             5    2.934426                1 0.8114234
## 3622 May 2019 2019-05-01             5    2.718579                1 0.7630368
## 3623 May 2019 2019-05-01             5    2.692771                1 0.7602041
## 3624 May 2019 2019-05-01             5    2.615873                1 0.7773585
## 3625 May 2019 2019-05-01             5    3.033784                1 0.7788378
## 3626 May 2019 2019-05-01             5    2.812698                1 0.7540426
## 3627 May 2019 2019-05-01             5    2.730650                1 0.7271228
## 3628 May 2019 2019-05-01             5    2.390909                1 0.6669484
## 3629 May 2019 2019-05-01             5    2.729642                1 0.7242869
## 3630 May 2019 2019-05-01             5    2.806878                1 0.7424773
## 3631 May 2019 2019-05-01             5    2.325581                1 0.6706408
## 3632 May 2019 2019-05-01             5    2.646875                1 0.7257926
## 3633 May 2019 2019-05-01             5    2.740053                1 0.7761082
## 3634 May 2019 2019-05-01             5    2.208000                1 0.6731707
## 3635 May 2019 2019-05-01             5    2.219917                1 0.6772152
## 3636 May 2019 2019-05-01             5    3.026012                1 0.8016845
## 3637 May 2019 2019-05-01             5    2.792793                1 0.7941930
## 3638 May 2019 2019-05-01             5    2.544000                1 0.6648084
## 3639 May 2019 2019-05-01             5    2.697128                1 0.7697466
## 3640 May 2019 2019-05-01             5    2.617021                1 0.6684783
## 3641 May 2019 2019-05-01             5    2.567164                1 0.6921529
## 3642 May 2019 2019-05-01             5    2.525316                1 0.6861565
## 3643 May 2019 2019-05-01             5    2.812689                1 0.7436102
## 3644 May 2019 2019-05-01             5    3.041045                1 0.7442922
## 3645 May 2019 2019-05-01             5    2.948387                1 0.6940015
## 3646 May 2019 2019-05-01             5    2.887755                1 0.7225532
## 3647 May 2019 2019-05-01             5    2.571816                1 0.7443137
## 3648 May 2019 2019-05-01             5    2.402367                1 0.7282511
## 3649 May 2019 2019-05-01             5    2.720745                1 0.7544248
## 3650 May 2019 2019-05-01             5    2.620000                1 0.6870629
## 3651 May 2019 2019-05-01             5    2.625407                1 0.6371542
## 3652 May 2019 2019-05-01             5    2.974522                1 0.7789825
## 3653 May 2019 2019-05-01             5    2.856061                1 0.6848320
## 3655 May 2019 2019-05-01             5    2.809816                1 0.7508197
## 3656 May 2019 2019-05-01             5    2.506083                1 0.7490909
## 3658 May 2019 2019-05-01             5    2.625330                1 0.7419836
## 3659 May 2019 2019-05-01             5    2.780576                1 0.7699203
## 3660 May 2019 2019-05-01             5    2.584000                1 0.7402597
## 3661 May 2019 2019-05-01             5    2.731788                1 0.7307352
## 3662 May 2019 2019-05-01             5    2.703583                1 0.7552320
## 3663 May 2019 2019-05-01             5    2.567647                1 0.7718833
## 3664 May 2019 2019-05-01             5    2.891374                1 0.7566890
## 3665 May 2019 2019-05-01             5    2.912621                1 0.7646559
## 3666 May 2019 2019-05-01             5    2.812298                1 0.7510804
## 3667 May 2019 2019-05-01             5    2.216667                1 0.6734177
## 3668 May 2019 2019-05-01             5    2.972892                1 0.8472103
## 3669 May 2019 2019-05-01             5    2.502890                1 0.7086743
## 3670 May 2019 2019-05-01             5    2.889273                1 0.7395926
## 3671 May 2019 2019-05-01             5    2.715084                1 0.7659574
## 3672 May 2019 2019-05-01             5    2.598662                1 0.6833773
## 3673 May 2019 2019-05-01             5    2.309783                1 0.7384883
## 3674 May 2019 2019-05-01             5    2.404624                1 0.7215958
## 3675 May 2019 2019-05-01             5    2.803636                1 0.7342857
## 3676 May 2019 2019-05-01             5    2.541547                1 0.7760280
## 3677 May 2019 2019-05-01             5    2.386010                1 0.7195313
## 3678 May 2019 2019-05-01             5    2.504505                1 0.7264808
## 3680 May 2019 2019-05-01             5    2.483283                1 0.7509191
## 3681 May 2019 2019-05-01             5    2.294737                1 0.6754454
## 3682 May 2019 2019-05-01             5    2.706522                1 0.7556904
## 3683 May 2019 2019-05-01             5    1.746094                1 0.6065129
## 3684 May 2019 2019-05-01             5    2.322767                1 0.7177204
## 3685 May 2019 2019-05-01             5    2.802395                1 0.7684729
## 3686 May 2019 2019-05-01             5    2.714744                1 0.7630631
## 3687 May 2019 2019-05-01             5    2.848943                1 0.7832226
## 3688 May 2019 2019-05-01             5    2.312155                1 0.6986644
## 3689 May 2019 2019-05-01             5    2.754601                1 0.7856518
## 3690 May 2019 2019-05-01             5    2.798780                1 0.7580512
## 3691 May 2019 2019-05-01             5    2.433526                1 0.7464539
## 3692 May 2019 2019-05-01             5    2.523810                1 0.7412587
## 3693 May 2019 2019-05-01             5    2.450151                1 0.6815126
## 3694 May 2019 2019-05-01             5    2.500000                1 0.7728041
## 3695 May 2019 2019-05-01             5    2.448718                1 0.6950509
## 3696 May 2019 2019-05-01             5    2.264935                1 0.7009646
## 3698 May 2019 2019-05-01             5    2.173469                1 0.7094088
##       drop compare_dates   wing2body_c month_of_year_c months_since_start_c
## 1    FALSE            -1  1.045258e-03       -2.846672           -47.025357
## 2    FALSE            -1 -1.556162e-02       -2.846672           -47.025357
## 3    FALSE            -1  2.590861e-02       -2.846672           -47.025357
## 4    FALSE            -1  4.354240e-03       -2.846672           -47.025357
## 5    FALSE            -1  6.655641e-03       -2.846672           -47.025357
## 6    FALSE            -1 -2.872121e-03       -2.846672           -47.025357
## 7    FALSE            -1  2.191614e-02       -2.846672           -47.025357
## 8    FALSE            -1 -3.885708e-03       -2.846672           -47.025357
## 9    FALSE            -1  1.979618e-02       -2.846672           -47.025357
## 10   FALSE            -1  5.831583e-03       -2.846672           -47.025357
## 11   FALSE            -1 -1.209917e-03       -2.846672           -47.025357
## 12   FALSE            -1  1.381670e-02       -2.846672           -47.025357
## 13   FALSE            -1  1.098476e-02       -2.846672           -47.025357
## 14   FALSE            -1  5.163765e-03       -2.846672           -47.025357
## 16   FALSE            -1  2.423688e-02       -2.846672           -47.025357
## 17   FALSE            -1  8.414713e-03       -2.846672           -47.025357
## 18   FALSE            -1  4.344860e-02       -2.846672           -47.025357
## 19   FALSE            -1  1.345984e-02       -2.846672           -47.025357
## 20   FALSE            -1  8.230381e-03       -2.846672           -47.025357
## 21   FALSE            -1  1.359947e-02       -2.846672           -47.025357
## 22   FALSE            -1 -4.365121e-03       -2.846672           -47.025357
## 23   FALSE            -1  1.596245e-02       -2.846672           -47.025357
## 24   FALSE            -1  5.718805e-05       -2.846672           -47.025357
## 25   FALSE            -1  3.609361e-03       -2.846672           -47.025357
## 26   FALSE            -1  1.814333e-02       -2.846672           -47.025357
## 104  FALSE            -1 -6.462963e-02       -2.846672           -47.025357
## 105  FALSE            -1 -2.980780e-02       -2.846672           -47.025357
## 106  FALSE            -1  6.249625e-03       -2.846672           -47.025357
## 107  FALSE            -1  5.297124e-03       -2.846672           -47.025357
## 109  FALSE            -1  1.014065e-03       -2.846672           -47.025357
## 110  FALSE            -1 -3.642292e-02       -2.846672           -47.025357
## 111  FALSE            -1 -3.831116e-03       -2.846672           -47.025357
## 112  FALSE            -1  1.771630e-02       -2.846672           -47.025357
## 114  FALSE            -1  5.698133e-03       -2.846672           -47.025357
## 141  FALSE            -1 -1.950175e-02       -2.846672           -47.025357
## 142  FALSE            -1  2.854424e-03       -2.846672           -47.025357
## 143  FALSE            -1  7.545400e-03       -2.846672           -47.025357
## 144  FALSE            -1  1.444197e-02       -2.846672           -47.025357
## 146  FALSE            -1  1.834138e-02       -2.846672           -47.025357
## 147  FALSE            -1  5.061903e-03       -2.846672           -47.025357
## 148  FALSE            -1  2.227603e-02       -2.846672           -47.025357
## 149  FALSE            -1  2.073307e-02       -2.846672           -47.025357
## 150  FALSE            -1  1.347331e-02       -2.846672           -47.025357
## 152  FALSE            -1  2.235072e-02       -2.846672           -47.025357
## 153  FALSE            -1 -8.162003e-03       -2.846672           -47.025357
## 202  FALSE            -1 -1.453158e-03       -2.846672           -47.025357
## 203  FALSE            -1 -5.184979e-02       -2.846672           -47.025357
## 204  FALSE            -1 -2.997843e-02       -2.846672           -47.025357
## 205  FALSE            -1  3.663891e-02       -2.846672           -47.025357
## 206  FALSE            -1 -1.114986e-02       -2.846672           -47.025357
## 207  FALSE            -1 -1.135663e-02       -2.846672           -47.025357
## 208  FALSE            -1  6.948079e-03       -2.846672           -47.025357
## 209  FALSE            -1  8.861524e-03       -2.846672           -47.025357
## 210  FALSE            -1 -4.660994e-02       -2.846672           -47.025357
## 211  FALSE            -1 -9.463750e-03       -2.846672           -47.025357
## 213  FALSE            -1 -7.296142e-03       -2.846672           -47.025357
## 214  FALSE            -1 -3.135702e-02       -2.846672           -47.025357
## 215  FALSE            -1 -3.702011e-02       -2.846672           -47.025357
## 217  FALSE            -1 -2.417904e-02       -2.846672           -47.025357
## 219  FALSE            -1 -3.035404e-02       -2.846672           -47.025357
## 221  FALSE            -1  9.670842e-04       -2.846672           -47.025357
## 222  FALSE            -1 -6.091160e-03       -2.846672           -47.025357
## 223  FALSE            -1  8.737566e-03       -2.846672           -47.025357
## 224  FALSE            -1  4.088977e-03       -2.846672           -47.025357
## 225  FALSE            -1  2.990044e-02       -2.846672           -47.025357
## 226  FALSE            -1 -4.429322e-03       -2.846672           -47.025357
## 228  FALSE            -1  1.726398e-02       -2.846672           -47.025357
## 229  FALSE            -1  2.834167e-03       -2.846672           -47.025357
## 230  FALSE            -1 -5.870762e-03       -2.846672           -47.025357
## 837  FALSE            -1  1.412194e-03       -2.846672           -36.025357
## 839  FALSE            -1  2.651403e-02       -2.846672           -36.025357
## 840  FALSE            -1  4.662244e-03       -2.846672           -36.025357
## 841  FALSE            -1 -1.462830e-02       -2.846672           -36.025357
## 844  FALSE            -1  1.651663e-02       -2.846672           -36.025357
## 845  FALSE            -1 -6.000249e-03       -2.846672           -36.025357
## 847  FALSE            -1  2.738407e-02       -2.846672           -36.025357
## 848  FALSE            -1 -1.989844e-02       -2.846672           -36.025357
## 849  FALSE            -1  2.303338e-02       -2.846672           -36.025357
## 850  FALSE            -1 -5.327636e-03       -2.846672           -36.025357
## 851  FALSE            -1  1.392877e-02       -2.846672           -36.025357
## 852  FALSE            -1 -7.648335e-03       -2.846672           -36.025357
## 853  FALSE            -1  1.837921e-02       -2.846672           -36.025357
## 854  FALSE            -1  1.602357e-02       -2.846672           -36.025357
## 856  FALSE            -1  1.454734e-02       -2.846672           -36.025357
## 857  FALSE            -1  4.282761e-03       -2.846672           -36.025357
## 858  FALSE            -1  2.492616e-02       -2.846672           -36.025357
## 859  FALSE            -1 -9.431468e-03       -2.846672           -36.025357
## 860  FALSE            -1  1.643759e-03       -2.846672           -36.025357
## 861  FALSE            -1  3.027119e-03       -2.846672           -36.025357
## 862  FALSE            -1  4.116331e-03       -2.846672           -36.025357
## 863  FALSE            -1  1.422932e-02       -2.846672           -36.025357
## 865  FALSE            -1  3.929873e-03       -2.846672           -36.025357
## 866  FALSE            -1 -2.034374e-02       -2.846672           -36.025357
## 867  FALSE            -1  2.845785e-02       -2.846672           -36.025357
## 868  FALSE            -1 -7.415080e-03       -2.846672           -36.025357
## 870  FALSE            -1  1.920856e-02       -2.846672           -36.025357
## 871  FALSE            -1  2.301864e-02       -2.846672           -36.025357
## 872  FALSE            -1 -6.356660e-02       -2.846672           -36.025357
## 873  FALSE            -1  3.756203e-03       -2.846672           -36.025357
## 874  FALSE            -1 -2.773722e-02       -2.846672           -36.025357
## 875  FALSE            -1  3.121879e-02       -2.846672           -36.025357
## 877  FALSE            -1  6.546053e-04       -2.846672           -36.025357
## 878  FALSE            -1 -5.279528e-03       -2.846672           -36.025357
## 879  FALSE            -1 -6.686872e-03       -2.846672           -36.025357
## 880  FALSE            -1  6.514539e-04       -2.846672           -36.025357
## 881  FALSE            -1  5.496677e-03       -2.846672           -36.025357
## 882  FALSE            -1 -3.800180e-02       -2.846672           -36.025357
## 883  FALSE            -1 -2.539252e-02       -2.846672           -36.025357
## 884  FALSE            -1 -1.359494e-02       -2.846672           -36.025357
## 886  FALSE            -1  8.247578e-04       -2.846672           -36.025357
## 887  FALSE            -1  2.138320e-02       -2.846672           -36.025357
## 888  FALSE            -1 -1.581093e-02       -2.846672           -36.025357
## 889  FALSE            -1 -7.520101e-04       -2.846672           -36.025357
## 890  FALSE            -1 -8.833562e-03       -2.846672           -36.025357
## 905  FALSE            -1  4.602046e-03       -2.846672           -36.025357
## 907  FALSE            -1  4.855467e-03       -2.846672           -36.025357
## 911  FALSE            -1 -1.695802e-02       -2.846672           -36.025357
## 912  FALSE            -1  7.021914e-03       -2.846672           -36.025357
## 915  FALSE            -1 -7.407107e-03       -2.846672           -36.025357
## 917  FALSE            -1  2.329450e-03       -2.846672           -36.025357
## 918  FALSE            -1 -1.366364e-02       -2.846672           -36.025357
## 975  FALSE            -1 -1.249275e-02       -2.846672           -24.025357
## 978  FALSE            -1 -1.084516e-02       -2.846672           -24.025357
## 986  FALSE            -1 -2.542743e-02       -2.846672           -24.025357
## 990  FALSE            -1 -1.126523e-03       -2.846672           -24.025357
## 993  FALSE            -1 -1.381488e-02       -2.846672           -24.025357
## 995  FALSE            -1 -2.993996e-02       -2.846672           -24.025357
## 996  FALSE            -1 -2.223973e-03       -2.846672           -24.025357
## 997  FALSE            -1  2.506530e-02       -2.846672           -24.025357
## 1001 FALSE            -1 -8.397808e-03       -2.846672           -24.025357
## 1012 FALSE            -1 -4.391316e-02       -2.846672           -24.025357
## 1017 FALSE            -1 -2.895671e-02       -2.846672           -24.025357
## 1023 FALSE            -1  1.045258e-03       -2.846672           -24.025357
## 1024 FALSE            -1 -3.048219e-02       -2.846672           -24.025357
## 1025 FALSE            -1  3.818434e-02       -2.846672           -24.025357
## 1026 FALSE            -1 -9.587454e-03       -2.846672           -24.025357
## 1027 FALSE            -1 -1.749376e-02       -2.846672           -24.025357
## 1028 FALSE            -1 -1.957905e-02       -2.846672           -24.025357
## 1029 FALSE            -1 -1.057504e-02       -2.846672           -24.025357
## 1030 FALSE            -1 -3.448588e-02       -2.846672           -24.025357
## 1031 FALSE            -1 -2.253219e-02       -2.846672           -24.025357
## 1032 FALSE            -1  6.477326e-03       -2.846672           -24.025357
## 1033 FALSE            -1  2.139510e-02       -2.846672           -24.025357
## 1034 FALSE            -1  1.288472e-02       -2.846672           -24.025357
## 1035 FALSE            -1  1.029302e-02       -2.846672           -24.025357
## 1036 FALSE            -1 -2.864094e-02       -2.846672           -24.025357
## 1037 FALSE            -1 -1.453410e-02       -2.846672           -24.025357
## 1038 FALSE            -1  1.840196e-02       -2.846672           -24.025357
## 1039 FALSE            -1 -3.798047e-03       -2.846672           -24.025357
## 1040 FALSE            -1  2.261978e-02       -2.846672           -24.025357
## 1041 FALSE            -1 -3.875463e-02       -2.846672           -24.025357
## 1042 FALSE            -1 -2.368723e-02       -2.846672           -24.025357
## 1043 FALSE            -1  1.000205e-02       -2.846672           -24.025357
## 1044 FALSE            -1 -2.943853e-02       -2.846672           -24.025357
## 1045 FALSE            -1 -3.283278e-02       -2.846672           -24.025357
## 1046 FALSE            -1 -1.831978e-02       -2.846672           -24.025357
## 1047 FALSE            -1  3.926828e-02       -2.846672           -24.025357
## 1048 FALSE            -1 -7.579126e-03       -2.846672           -24.025357
## 1049 FALSE            -1  1.284187e-02       -2.846672           -24.025357
## 1050 FALSE            -1  8.868448e-03       -2.846672           -24.025357
## 1051 FALSE            -1  9.217918e-03       -2.846672           -24.025357
## 1052 FALSE            -1 -2.252794e-02       -2.846672           -24.025357
## 1054 FALSE            -1 -2.680189e-02       -2.846672           -24.025357
## 1055 FALSE            -1 -1.237002e-02       -2.846672           -24.025357
## 1056 FALSE            -1 -1.760276e-02       -2.846672           -24.025357
## 1057 FALSE            -1  1.859567e-02       -2.846672           -24.025357
## 1058 FALSE            -1  1.328434e-02       -2.846672           -24.025357
## 1059 FALSE            -1  7.570789e-03       -2.846672           -24.025357
## 1060 FALSE            -1  5.338920e-03       -2.846672           -24.025357
## 1061 FALSE            -1  3.665430e-03       -2.846672           -24.025357
## 1062 FALSE            -1  9.739629e-03       -2.846672           -24.025357
## 1063 FALSE            -1  1.542177e-03       -2.846672           -24.025357
## 1064 FALSE            -1 -3.332463e-02       -2.846672           -24.025357
## 1065 FALSE            -1  5.258359e-03       -2.846672           -24.025357
## 1066 FALSE            -1  6.288636e-03       -2.846672           -24.025357
## 1067 FALSE            -1  6.461410e-03       -2.846672           -24.025357
## 1068 FALSE            -1  1.505561e-02       -2.846672           -24.025357
## 1069 FALSE            -1  1.570164e-02       -2.846672           -24.025357
## 1070 FALSE            -1 -5.738082e-03       -2.846672           -24.025357
## 1071 FALSE            -1 -2.634024e-02       -2.846672           -24.025357
## 1072 FALSE            -1 -1.473221e-02       -2.846672           -24.025357
## 1073 FALSE            -1  7.812684e-03       -2.846672           -24.025357
## 1074 FALSE            -1  1.582519e-03       -2.846672           -24.025357
## 1075 FALSE            -1  1.348374e-02       -2.846672           -24.025357
## 1076 FALSE            -1  1.301168e-02       -2.846672           -24.025357
## 1077 FALSE            -1 -3.270791e-02       -2.846672           -24.025357
## 1078 FALSE            -1 -8.184251e-03       -2.846672           -24.025357
## 1079 FALSE            -1 -3.262934e-03       -2.846672           -24.025357
## 1080 FALSE            -1 -1.383297e-03       -2.846672           -24.025357
## 1081 FALSE            -1 -1.133317e-02       -2.846672           -24.025357
## 1082 FALSE            -1 -6.419788e-02       -2.846672           -24.025357
## 1083 FALSE            -1  4.495296e-03       -2.846672           -24.025357
## 1084 FALSE            -1  9.369987e-03       -2.846672           -24.025357
## 1085 FALSE            -1  4.952769e-03       -2.846672           -24.025357
## 1086 FALSE            -1 -1.808943e-02       -2.846672           -24.025357
## 1088 FALSE            -1  3.840041e-03       -2.846672           -24.025357
## 1089 FALSE            -1  5.737505e-04       -2.846672           -24.025357
## 1090 FALSE            -1 -2.528027e-03       -2.846672           -24.025357
## 1091 FALSE            -1  1.850018e-02       -2.846672           -24.025357
## 1092 FALSE            -1  1.095674e-02       -2.846672           -24.025357
## 1093 FALSE            -1 -8.793740e-03       -2.846672           -24.025357
## 1094 FALSE            -1 -2.313233e-02       -2.846672           -24.025357
## 1095 FALSE            -1  7.864680e-03       -2.846672           -24.025357
## 1096 FALSE            -1 -1.805349e-02       -2.846672           -24.025357
## 1097 FALSE            -1 -1.342303e-02       -2.846672           -24.025357
## 1098 FALSE            -1 -1.837591e-02       -2.846672           -24.025357
## 1099 FALSE            -1  3.702751e-02       -2.846672           -24.025357
## 1100 FALSE            -1  6.865299e-03       -2.846672           -24.025357
## 1101 FALSE            -1 -7.759191e-03       -2.846672           -24.025357
## 1103 FALSE            -1 -2.786524e-02       -2.846672           -24.025357
## 1104 FALSE            -1  1.216043e-02       -2.846672           -24.025357
## 1105 FALSE            -1 -5.058848e-02       -2.846672           -24.025357
## 1106 FALSE            -1 -1.009780e-02       -2.846672           -24.025357
## 1107 FALSE            -1 -1.337782e-02       -2.846672           -24.025357
## 1108 FALSE            -1 -1.632009e-02       -2.846672           -24.025357
## 1110 FALSE            -1  9.226556e-02       -2.846672           -24.025357
## 1111 FALSE            -1  7.720961e-03       -2.846672           -24.025357
## 1112 FALSE            -1  4.781115e-03       -2.846672           -24.025357
## 1117 FALSE            -1 -4.602353e-02       -2.846672           -24.025357
## 1118 FALSE            -1 -5.331784e-02       -2.846672           -24.025357
## 1119 FALSE            -1 -9.752402e-03       -2.846672           -24.025357
## 1121 FALSE            -1 -1.089951e-02       -2.846672           -24.025357
## 1122 FALSE            -1  7.252970e-03       -2.846672           -24.025357
## 1124 FALSE            -1 -1.277218e-02       -2.846672           -24.025357
## 1125 FALSE            -1  6.191520e-03        5.153328            -4.025357
## 1126 FALSE            -1  7.688886e-03        5.153328            -4.025357
## 1127 FALSE            -1  2.372290e-02        5.153328            -4.025357
## 1128 FALSE            -1 -3.266574e-03        5.153328            -4.025357
## 1129 FALSE            -1 -8.887287e-03        5.153328            -4.025357
## 1130 FALSE            -1  1.201777e-02        5.153328            -4.025357
## 1131 FALSE            -1  1.588336e-02        5.153328            -4.025357
## 1132 FALSE            -1  5.112730e-03        5.153328            -4.025357
## 1133 FALSE            -1 -9.876645e-03        5.153328            -4.025357
## 1134 FALSE            -1 -1.951376e-02        5.153328            -4.025357
## 1135 FALSE            -1 -5.429159e-03        5.153328            -4.025357
## 1136 FALSE            -1  7.474822e-03        5.153328            -4.025357
## 1137 FALSE            -1  1.458823e-03        5.153328            -4.025357
## 1138 FALSE            -1  2.377253e-02        5.153328            -4.025357
## 1142 FALSE            -1  1.346669e-02        5.153328            -4.025357
## 1143 FALSE            -1 -7.374621e-03        5.153328            -4.025357
## 1144 FALSE            -1 -1.363015e-03        5.153328            -4.025357
## 1146 FALSE            -1  2.921848e-02        5.153328            -4.025357
## 1148 FALSE            -1  3.157185e-02        5.153328            -4.025357
## 1155 FALSE            -1  9.148431e-03        5.153328            -4.025357
## 1156 FALSE            -1  2.433204e-03        5.153328            -4.025357
## 1158 FALSE            -1  1.586190e-02        5.153328            -4.025357
## 1160 FALSE            -1  3.277686e-03        5.153328            -4.025357
## 1161 FALSE            -1 -1.677838e-02        5.153328            -4.025357
## 1162 FALSE            -1  1.308995e-02        5.153328            -4.025357
## 1164 FALSE            -1 -5.914449e-03        5.153328            -4.025357
## 1166 FALSE            -1 -1.390639e-03        5.153328            -4.025357
## 1167 FALSE            -1  1.123482e-02        5.153328            -4.025357
## 1170 FALSE            -1  8.425011e-03        5.153328            -4.025357
## 1174 FALSE            -1 -6.634408e-03        5.153328            -4.025357
## 1176 FALSE            -1  2.373412e-02        5.153328            -4.025357
## 1177 FALSE            -1  2.532653e-02        5.153328            -4.025357
## 1178 FALSE            -1  2.463143e-02        5.153328            -4.025357
## 1179 FALSE            -1  5.539308e-02        5.153328            -4.025357
## 1180 FALSE            -1  4.734968e-03        5.153328            -4.025357
## 1181 FALSE            -1  2.435434e-03        5.153328            -4.025357
## 1182 FALSE            -1  4.069735e-02        5.153328            -4.025357
## 1185 FALSE            -1  2.092091e-02        5.153328            -4.025357
## 1186 FALSE            -1  1.329737e-02        5.153328            -4.025357
## 1188 FALSE            -1  1.826138e-02        5.153328            -4.025357
## 1189 FALSE            -1  1.659956e-02        5.153328            -4.025357
## 1191 FALSE            -1  2.801254e-02        5.153328            -4.025357
## 1192 FALSE            -1  4.795916e-02        5.153328            -4.025357
## 1193 FALSE            -1  3.274433e-02        5.153328            -4.025357
## 1194 FALSE            -1  2.112637e-02        5.153328            -4.025357
## 1203 FALSE            -1  4.954072e-03        5.153328            -4.025357
## 1204 FALSE            -1 -2.990318e-02        5.153328            -4.025357
## 1205 FALSE            -1  2.009098e-02        5.153328            -4.025357
## 1208 FALSE            -1  3.299283e-03        5.153328            -4.025357
## 1209 FALSE            -1 -2.066474e-02        5.153328            -4.025357
## 1210 FALSE            -1  2.433878e-03        5.153328            -4.025357
## 1213 FALSE            -1  1.850018e-02        5.153328            -4.025357
## 1215 FALSE            -1  1.303582e-02        5.153328            -4.025357
## 1217 FALSE            -1 -1.739521e-02        5.153328            -4.025357
## 1219 FALSE            -1  1.926388e-02        5.153328            -4.025357
## 1221 FALSE            -1 -7.158285e-03        5.153328            -4.025357
## 1222 FALSE            -1 -5.320586e-03        5.153328            -4.025357
## 1225 FALSE            -1 -1.097397e-02        5.153328            -4.025357
## 1228 FALSE            -1  9.569760e-04        5.153328            -4.025357
## 1230 FALSE            -1  2.288019e-02        5.153328            -4.025357
## 1235 FALSE            -1  1.092837e-02        5.153328            -4.025357
## 1238 FALSE            -1 -2.189508e-02        5.153328            -4.025357
## 1239 FALSE            -1  2.774527e-02        5.153328            -4.025357
## 1241 FALSE            -1  1.738347e-02        5.153328            -4.025357
## 1246 FALSE            -1 -4.628187e-03        5.153328            -4.025357
## 1247 FALSE            -1 -1.644341e-02        5.153328            -4.025357
## 1248 FALSE            -1 -2.940346e-02        5.153328            -4.025357
## 1249 FALSE            -1  2.834167e-03        5.153328            -4.025357
## 1250 FALSE            -1 -7.143328e-03        5.153328            -4.025357
## 1252 FALSE            -1 -1.016678e-02        5.153328            -4.025357
## 1253 FALSE            -1 -5.109838e-03        5.153328            -4.025357
## 1255 FALSE            -1  2.150352e-02        5.153328            -4.025357
## 1257 FALSE            -1  1.101677e-02        5.153328            -4.025357
## 1258 FALSE            -1  1.573057e-02        5.153328            -4.025357
## 1268 FALSE            -1  3.482629e-02        5.153328            -4.025357
## 1272 FALSE            -1  1.541041e-02        5.153328            -4.025357
## 1276 FALSE            -1 -1.406132e-02        5.153328            -4.025357
## 1281 FALSE            -1 -7.498096e-05        5.153328            -4.025357
## 1285 FALSE            -1  3.487113e-02        5.153328            -4.025357
## 1289 FALSE            -1  1.888456e-02        5.153328            -4.025357
## 1290 FALSE            -1  1.164081e-02        5.153328            -4.025357
## 1291 FALSE            -1  1.840570e-02        5.153328            -4.025357
## 1292 FALSE            -1 -6.821875e-03        5.153328            -4.025357
## 1294 FALSE            -1 -2.373545e-03        5.153328            -4.025357
## 1295 FALSE            -1 -2.652967e-03        5.153328            -4.025357
## 1296 FALSE            -1 -1.350776e-02        5.153328            -4.025357
## 1297 FALSE            -1 -5.720845e-03        5.153328            -4.025357
## 1298 FALSE            -1  4.134295e-03        5.153328            -4.025357
## 1299 FALSE            -1  1.030670e-02        5.153328            -4.025357
## 1300 FALSE            -1  3.748539e-03        5.153328            -4.025357
## 1301 FALSE            -1  1.794749e-02        5.153328            -4.025357
## 1302 FALSE            -1  1.236463e-02        5.153328            -4.025357
## 1303 FALSE            -1  8.483574e-03        5.153328            -4.025357
## 1304 FALSE            -1  3.166791e-02        5.153328            -4.025357
## 1306 FALSE            -1 -7.766043e-04        5.153328            -4.025357
## 1307 FALSE            -1  3.442697e-02        5.153328            -4.025357
## 1308 FALSE            -1  1.040761e-02        5.153328            -4.025357
## 1309 FALSE            -1  1.279643e-02        5.153328            -4.025357
## 1310 FALSE            -1  1.768413e-02        5.153328            -4.025357
## 1311 FALSE            -1 -7.113250e-03        5.153328            -4.025357
## 1312 FALSE            -1  7.557728e-03        5.153328            -4.025357
## 1313 FALSE            -1  2.828885e-02        5.153328            -4.025357
## 1315 FALSE            -1  4.693371e-03        5.153328            -4.025357
## 1316 FALSE            -1  4.651687e-02        5.153328            -4.025357
## 1317 FALSE            -1  1.049949e-02        5.153328            -4.025357
## 1318 FALSE            -1  6.560917e-03        5.153328            -4.025357
## 1319 FALSE            -1 -8.238562e-03        5.153328            -4.025357
## 1320 FALSE            -1  1.231424e-02        5.153328            -4.025357
## 1321 FALSE            -1  1.194269e-02        5.153328            -4.025357
## 1322 FALSE            -1 -2.532658e-02        5.153328            -4.025357
## 1323 FALSE            -1 -1.447095e-03        5.153328            -4.025357
## 1324 FALSE            -1 -1.275893e-02        5.153328            -4.025357
## 1325 FALSE            -1 -1.753728e-02        5.153328            -4.025357
## 1326 FALSE            -1  1.308877e-02        5.153328            -4.025357
## 1327 FALSE            -1  1.303283e-02        5.153328            -4.025357
## 1328 FALSE            -1 -7.042614e-03        5.153328            -4.025357
## 1329 FALSE            -1  7.196805e-03        5.153328            -4.025357
## 1330 FALSE            -1  2.087174e-02        5.153328            -4.025357
## 1331 FALSE            -1  1.091774e-02        5.153328            -4.025357
## 1332 FALSE            -1 -1.323331e-02        5.153328            -4.025357
## 1333 FALSE            -1 -1.694864e-02        5.153328            -4.025357
## 1334 FALSE            -1  2.244994e-02        5.153328            -4.025357
## 1335 FALSE            -1  4.094951e-02        5.153328            -4.025357
## 1336 FALSE            -1 -2.372056e-03        5.153328            -4.025357
## 1337 FALSE            -1  1.117724e-02        5.153328            -4.025357
## 1338 FALSE            -1  1.209421e-02        5.153328            -4.025357
## 1340 FALSE            -1  2.497274e-03        5.153328            -4.025357
## 1341 FALSE            -1  1.655774e-02        5.153328            -4.025357
## 1343 FALSE            -1  1.331501e-02        5.153328            -4.025357
## 1344 FALSE            -1  1.503127e-02        5.153328            -4.025357
## 1346 FALSE            -1  1.481544e-02        5.153328            -4.025357
## 1347 FALSE            -1  1.507603e-02        5.153328            -4.025357
## 1349 FALSE            -1 -1.110561e-02        5.153328            -4.025357
## 1354 FALSE            -1 -1.708979e-02        5.153328            -4.025357
## 1355 FALSE            -1 -2.200159e-02        5.153328            -4.025357
## 1356 FALSE            -1  5.614373e-03        5.153328            -4.025357
## 1357 FALSE            -1  1.828875e-02        5.153328            -4.025357
## 1358 FALSE            -1  5.505787e-03        5.153328            -4.025357
## 1361 FALSE            -1  4.566871e-03        5.153328            -4.025357
## 1364 FALSE            -1 -4.548446e-03        5.153328            -4.025357
## 1365 FALSE            -1  4.548328e-03        5.153328            -4.025357
## 1367 FALSE            -1 -3.347637e-03        5.153328            -4.025357
## 1368 FALSE            -1 -1.140127e-02        5.153328            -4.025357
## 1369 FALSE            -1  5.765959e-04        5.153328            -4.025357
## 1370 FALSE            -1 -4.233777e-03        5.153328            -4.025357
## 1371 FALSE            -1  7.444169e-03        5.153328            -4.025357
## 1372 FALSE            -1  2.119603e-03        5.153328            -4.025357
## 1375 FALSE            -1  2.663841e-04        5.153328            -4.025357
## 1545 FALSE            -1  1.330739e-02        1.153328             3.974643
## 1546 FALSE            -1 -1.143876e-02        1.153328             3.974643
## 1547 FALSE            -1 -2.380223e-03        1.153328             3.974643
## 1549 FALSE            -1  3.273508e-03        1.153328             3.974643
## 1550 FALSE            -1 -3.696575e-03        1.153328             3.974643
## 1552 FALSE            -1 -9.521099e-03        1.153328             3.974643
## 1553 FALSE            -1  2.202700e-02        1.153328             3.974643
## 1554 FALSE            -1 -1.923143e-03        1.153328             3.974643
## 1555 FALSE            -1 -7.501751e-03        1.153328             3.974643
## 1556 FALSE            -1 -6.661591e-03        1.153328             3.974643
## 1557 FALSE            -1 -3.135344e-03        1.153328             3.974643
## 1558 FALSE            -1 -4.917771e-03        1.153328             3.974643
## 1559 FALSE            -1  1.235748e-02        1.153328             3.974643
## 1560 FALSE            -1 -8.666543e-03        1.153328             3.974643
## 1562 FALSE            -1 -3.399735e-03        1.153328             3.974643
## 1563 FALSE            -1 -2.648208e-02        1.153328             3.974643
## 1565 FALSE            -1  2.115322e-02        1.153328             3.974643
## 1566 FALSE            -1 -8.682514e-04        1.153328             3.974643
## 1567 FALSE            -1  1.321388e-02        1.153328             3.974643
## 1568 FALSE            -1  1.337784e-02        1.153328             3.974643
## 1569 FALSE            -1  2.049205e-03        1.153328             3.974643
## 1571 FALSE            -1 -3.792296e-03        1.153328             3.974643
## 1572 FALSE            -1 -4.681799e-02        1.153328             3.974643
## 1573 FALSE            -1  5.677487e-03        1.153328             3.974643
## 1574 FALSE            -1 -3.917521e-03        1.153328             3.974643
## 1575 FALSE            -1 -1.079627e-02        1.153328             3.974643
## 1576 FALSE            -1 -6.622707e-03        1.153328             3.974643
## 1577 FALSE            -1 -7.650693e-03        1.153328             3.974643
## 1578 FALSE            -1  1.609837e-02        1.153328             3.974643
## 1579 FALSE            -1  8.116093e-03        1.153328             3.974643
## 1580 FALSE            -1 -2.048484e-02        1.153328             3.974643
## 1581 FALSE            -1 -4.132257e-03        1.153328             3.974643
## 1582 FALSE            -1 -4.550763e-03        1.153328             3.974643
## 1583 FALSE            -1 -6.298961e-04        1.153328             3.974643
## 1584 FALSE            -1 -2.366363e-03        1.153328             3.974643
## 1585 FALSE            -1 -2.451245e-03        1.153328             3.974643
## 1586 FALSE            -1 -8.278689e-04        1.153328             3.974643
## 1587 FALSE            -1  4.975906e-02        1.153328             3.974643
## 1589 FALSE            -1  3.615625e-02        1.153328             3.974643
## 1590 FALSE            -1 -4.778837e-03        1.153328             3.974643
## 1591 FALSE            -1  4.486554e-03        1.153328             3.974643
## 1592 FALSE            -1  1.256278e-02        1.153328             3.974643
## 1593 FALSE            -1  1.077018e-03        1.153328             3.974643
## 1594 FALSE            -1 -3.185123e-03        1.153328             3.974643
## 1595 FALSE            -1  9.760754e-05        1.153328             3.974643
## 1596 FALSE            -1 -2.721005e-03        1.153328             3.974643
## 1597 FALSE            -1  2.318561e-02        1.153328             3.974643
## 1598 FALSE            -1  4.615650e-03        1.153328             3.974643
## 1599 FALSE            -1 -2.277295e-02        1.153328             3.974643
## 1600 FALSE            -1 -6.064084e-03        1.153328             3.974643
## 1601 FALSE            -1 -8.966112e-04        1.153328             3.974643
## 1602 FALSE            -1  1.983344e-03        1.153328             3.974643
## 1603 FALSE            -1  5.710602e-03        1.153328             3.974643
## 1605 FALSE            -1 -1.668895e-03        1.153328             3.974643
## 1607 FALSE            -1  3.932202e-03        1.153328             3.974643
## 1608 FALSE            -1  2.490974e-02        1.153328             3.974643
## 1610 FALSE            -1  4.403011e-03        1.153328             3.974643
## 1611 FALSE            -1 -3.706531e-03        1.153328             3.974643
## 1612 FALSE            -1 -9.948152e-03        1.153328             3.974643
## 1613 FALSE            -1  5.489858e-03        1.153328             3.974643
## 1614 FALSE            -1  1.957180e-02        1.153328             3.974643
## 1615 FALSE            -1  6.835167e-03        1.153328             3.974643
## 1616 FALSE            -1 -3.462593e-04        1.153328             3.974643
## 1617 FALSE            -1 -5.830167e-03        1.153328             3.974643
## 1618 FALSE            -1 -3.884784e-04        1.153328             3.974643
## 1620 FALSE            -1  3.896717e-03        1.153328             3.974643
## 1621 FALSE            -1 -3.461371e-02        1.153328             3.974643
## 1622 FALSE            -1  5.515880e-03        1.153328             3.974643
## 1624 FALSE            -1 -1.197505e-02        1.153328             3.974643
## 1625 FALSE            -1  1.014065e-03        1.153328             3.974643
## 1626 FALSE            -1 -1.123658e-02        1.153328             3.974643
## 1627 FALSE            -1  5.869248e-03        1.153328             3.974643
## 1628 FALSE            -1  4.651027e-03        1.153328             3.974643
## 1629 FALSE            -1 -6.982540e-03        1.153328             3.974643
## 1630 FALSE            -1  1.901975e-02        1.153328             3.974643
## 1631 FALSE            -1  3.392382e-03        1.153328             3.974643
## 1632 FALSE            -1 -3.784468e-03        1.153328             3.974643
## 1634 FALSE            -1  1.715363e-02        1.153328             3.974643
## 1635 FALSE            -1 -4.219111e-03        1.153328             3.974643
## 1636 FALSE            -1 -6.059425e-02        1.153328             3.974643
## 1641 FALSE            -1  2.245626e-02        1.153328             3.974643
## 1642 FALSE            -1 -1.445932e-03        1.153328             3.974643
## 1643 FALSE            -1 -7.395728e-03        1.153328             3.974643
## 1644 FALSE            -1  2.319756e-02        1.153328             3.974643
## 1645 FALSE            -1  1.120867e-02        1.153328             3.974643
## 1646 FALSE            -1 -1.379748e-02        1.153328             3.974643
## 1647 FALSE            -1  2.166902e-03        1.153328             3.974643
## 1648 FALSE            -1  1.164267e-02        1.153328             3.974643
## 1651 FALSE            -1 -5.716411e-03        1.153328             3.974643
## 1652 FALSE            -1  5.899030e-03        1.153328             3.974643
## 1654 FALSE            -1 -2.699584e-02        1.153328             3.974643
## 1655 FALSE            -1  1.302412e-02        1.153328             3.974643
## 1656 FALSE            -1  9.104995e-03        1.153328             3.974643
## 1657 FALSE            -1  2.409606e-02        1.153328             3.974643
## 1658 FALSE            -1  2.419452e-02        1.153328             3.974643
## 1659 FALSE            -1  6.797766e-03        1.153328             3.974643
## 1660 FALSE            -1  1.497423e-02        1.153328             3.974643
## 1661 FALSE            -1  1.054496e-02        1.153328             3.974643
## 1662 FALSE            -1  2.721463e-02        1.153328             3.974643
## 1663 FALSE            -1  8.371265e-03        1.153328             3.974643
## 1664 FALSE            -1  1.631959e-03        1.153328             3.974643
## 1665 FALSE            -1  1.149224e-02        1.153328             3.974643
## 1666 FALSE            -1  9.406462e-03        1.153328             3.974643
## 1667 FALSE            -1  3.002089e-02        1.153328             3.974643
## 1668 FALSE            -1  2.309406e-02        1.153328             3.974643
## 1669 FALSE            -1  3.157185e-02        1.153328             3.974643
## 1670 FALSE            -1  1.712530e-03        1.153328             3.974643
## 1671 FALSE            -1  2.066944e-03        1.153328             3.974643
## 1672 FALSE            -1  1.280094e-02        1.153328             3.974643
## 1673 FALSE            -1  9.979487e-03        1.153328             3.974643
## 1674 FALSE            -1  6.710136e-03        1.153328             3.974643
## 1675 FALSE            -1  2.612018e-02        1.153328             3.974643
## 1676 FALSE            -1  3.315347e-02        1.153328             3.974643
## 1677 FALSE            -1  2.206430e-02        1.153328             3.974643
## 1678 FALSE            -1  1.476001e-02        1.153328             3.974643
## 1679 FALSE            -1  1.698036e-02        1.153328             3.974643
## 1680 FALSE            -1  8.848680e-04        1.153328             3.974643
## 1681 FALSE            -1  3.081927e-02        1.153328             3.974643
## 1682 FALSE            -1  2.891921e-03        1.153328             3.974643
## 1683 FALSE            -1  2.791795e-02        1.153328             3.974643
## 1684 FALSE            -1  1.178390e-02        1.153328             3.974643
## 1685 FALSE            -1 -8.844852e-03        1.153328             3.974643
## 1686 FALSE            -1  2.876760e-03        1.153328             3.974643
## 1687 FALSE            -1  3.778565e-03        1.153328             3.974643
## 1688 FALSE            -1  2.397425e-02        1.153328             3.974643
## 1689 FALSE            -1  8.411620e-03        1.153328             3.974643
## 1690 FALSE            -1 -4.166511e-03        1.153328             3.974643
## 1691 FALSE            -1  8.726631e-03        1.153328             3.974643
## 1692 FALSE            -1  2.297248e-02        1.153328             3.974643
## 1693 FALSE            -1  1.913863e-02        1.153328             3.974643
## 1694 FALSE            -1 -2.115254e-02        1.153328             3.974643
## 1695 FALSE            -1  2.681197e-02        1.153328             3.974643
## 1696 FALSE            -1  2.027603e-02        1.153328             3.974643
## 1697 FALSE            -1  4.269930e-03        1.153328             3.974643
## 1698 FALSE            -1  2.954875e-02        1.153328             3.974643
## 1699 FALSE            -1  7.576463e-03        1.153328             3.974643
## 1700 FALSE            -1  4.058673e-03        1.153328             3.974643
## 1701 FALSE            -1  1.075777e-02        1.153328             3.974643
## 1702 FALSE            -1  3.213970e-02        1.153328             3.974643
## 1703 FALSE            -1 -2.451245e-03        1.153328             3.974643
## 1704 FALSE            -1  7.508317e-03        1.153328             3.974643
## 1705 FALSE            -1  2.561869e-02        1.153328             3.974643
## 1706 FALSE            -1  3.156141e-02        1.153328             3.974643
## 1707 FALSE            -1  8.172521e-03        1.153328             3.974643
## 1708 FALSE            -1  1.849455e-02        1.153328             3.974643
## 1709 FALSE            -1  1.416944e-02        1.153328             3.974643
## 1710 FALSE            -1 -1.050475e-02        1.153328             3.974643
## 1711 FALSE            -1 -1.490916e-02        1.153328             3.974643
## 1712 FALSE            -1  3.055000e-02        1.153328             3.974643
## 1713 FALSE            -1  2.359168e-02        1.153328             3.974643
## 1714 FALSE            -1  1.622958e-02        1.153328             3.974643
## 1715 FALSE            -1  6.407961e-03        1.153328             3.974643
## 1716 FALSE            -1  6.419665e-03        1.153328             3.974643
## 1717 FALSE            -1  1.386577e-02        1.153328             3.974643
## 1718 FALSE            -1  2.357999e-02        1.153328             3.974643
## 1719 FALSE            -1  1.274178e-02        1.153328             3.974643
## 1720 FALSE            -1  8.586117e-03        1.153328             3.974643
## 1721 FALSE            -1  1.113981e-02        1.153328             3.974643
## 1722 FALSE            -1  6.844485e-03        1.153328             3.974643
## 1723 FALSE            -1  3.609361e-03        1.153328             3.974643
## 1724 FALSE            -1  2.583158e-02        1.153328             3.974643
## 1725 FALSE            -1  9.601870e-03        1.153328             3.974643
## 1726 FALSE            -1  1.983511e-02        1.153328             3.974643
## 1727 FALSE            -1  1.983344e-03        1.153328             3.974643
## 1728 FALSE            -1  1.899834e-02        1.153328             3.974643
## 1729 FALSE            -1  3.266058e-02        1.153328             3.974643
## 1730 FALSE            -1 -4.047309e-03        1.153328             3.974643
## 1731 FALSE            -1  2.066944e-03        1.153328             3.974643
## 1732 FALSE            -1  2.689854e-02        1.153328             3.974643
## 1733 FALSE            -1  4.260527e-02        1.153328             3.974643
## 1734 FALSE            -1  1.449913e-02        1.153328             3.974643
## 1735 FALSE            -1  3.244315e-02        1.153328             3.974643
## 1736 FALSE            -1  1.009904e-02        1.153328             3.974643
## 1738 FALSE            -1 -1.092198e-02        1.153328             3.974643
## 1739 FALSE            -1 -1.896560e-02        1.153328             3.974643
## 1740 FALSE            -1 -1.258112e-02        1.153328             3.974643
## 1741 FALSE            -1  7.065658e-03        1.153328             3.974643
## 1742 FALSE            -1 -8.488452e-03        1.153328             3.974643
## 1743 FALSE            -1 -1.235308e-02        1.153328             3.974643
## 1744 FALSE            -1 -5.884476e-03        1.153328             3.974643
## 1746 FALSE            -1 -2.066474e-02        1.153328             3.974643
## 1747 FALSE            -1  4.969905e-03        1.153328             3.974643
## 1748 FALSE            -1  4.030540e-03        1.153328             3.974643
## 1749 FALSE            -1 -1.444619e-02        1.153328             3.974643
## 1750 FALSE            -1 -7.953422e-03        1.153328             3.974643
## 1751 FALSE            -1  1.056938e-02        1.153328             3.974643
## 1752 FALSE            -1 -2.232011e-03        1.153328             3.974643
## 1753 FALSE            -1 -2.236611e-02        1.153328             3.974643
## 1754 FALSE            -1 -9.017713e-03        1.153328             3.974643
## 1755 FALSE            -1 -2.211282e-02        1.153328             3.974643
## 1758 FALSE            -1  7.294453e-03        1.153328             3.974643
## 1759 FALSE            -1  5.974796e-03        1.153328             3.974643
## 1760 FALSE            -1 -1.641925e-02        1.153328             3.974643
## 1761 FALSE            -1 -2.169478e-02        1.153328             3.974643
## 1762 FALSE            -1  2.628968e-03        1.153328             3.974643
## 1763 FALSE            -1  8.297666e-03        1.153328             3.974643
## 1764 FALSE            -1  7.342483e-04        1.153328             3.974643
## 1765 FALSE            -1  4.806965e-03        1.153328             3.974643
## 1766 FALSE            -1 -7.294066e-03        1.153328             3.974643
## 1768 FALSE            -1 -1.088867e-02        1.153328             3.974643
## 1769 FALSE            -1  1.661749e-02        1.153328             3.974643
## 1770 FALSE            -1 -5.778070e-03        1.153328             3.974643
## 1771 FALSE            -1  2.474451e-02        1.153328             3.974643
## 1772 FALSE            -1 -1.946195e-03        1.153328             3.974643
## 1774 FALSE            -1  7.320533e-04        1.153328             3.974643
## 1775 FALSE            -1  9.942452e-03        1.153328             3.974643
## 1776 FALSE            -1 -2.061773e-02        1.153328             3.974643
## 1779 FALSE            -1 -1.729999e-02        1.153328             3.974643
## 1780 FALSE            -1 -6.635049e-03        1.153328             3.974643
## 1782 FALSE            -1  2.846257e-04        1.153328             3.974643
## 1785 FALSE            -1 -8.218070e-04        1.153328             3.974643
## 1786 FALSE            -1  1.859253e-02        1.153328             3.974643
## 1788 FALSE            -1 -1.775969e-03        1.153328             3.974643
## 1789 FALSE            -1 -3.408183e-03        1.153328             3.974643
## 1790 FALSE            -1 -8.355258e-03        1.153328             3.974643
## 1791 FALSE            -1 -1.425362e-03        1.153328             3.974643
## 1793 FALSE            -1  1.450045e-02        1.153328             3.974643
## 1800 FALSE            -1 -1.939892e-02        1.153328             3.974643
## 1802 FALSE            -1  2.866557e-03        1.153328             3.974643
## 1805 FALSE            -1 -1.132816e-02        1.153328             3.974643
## 1806 FALSE            -1 -2.933787e-02        1.153328             3.974643
## 1807 FALSE            -1 -6.503268e-03        1.153328             3.974643
## 1808 FALSE            -1 -1.258017e-03        1.153328             3.974643
## 1809 FALSE            -1  2.822656e-02        1.153328             3.974643
## 1810 FALSE            -1  4.688983e-03        1.153328             3.974643
## 1811 FALSE            -1 -7.298845e-03        1.153328             3.974643
## 1812 FALSE            -1 -3.228246e-03        1.153328             3.974643
## 1813 FALSE            -1  1.920856e-02        1.153328             3.974643
## 1814 FALSE            -1 -2.565247e-02        1.153328             3.974643
## 1815 FALSE            -1 -7.864859e-03        1.153328             3.974643
## 1816 FALSE            -1  2.817076e-02        1.153328             3.974643
## 1817 FALSE            -1  2.604020e-03        1.153328             3.974643
## 1819 FALSE            -1 -1.708029e-02        1.153328             3.974643
## 1821 FALSE            -1 -1.349628e-02        1.153328             3.974643
## 1822 FALSE            -1  1.903472e-02        1.153328             3.974643
## 1823 FALSE            -1  3.505356e-03        1.153328             3.974643
## 1824 FALSE            -1 -6.242558e-03        1.153328             3.974643
## 1826 FALSE            -1  6.600005e-04        1.153328             3.974643
## 1827 FALSE            -1  1.179826e-02        1.153328             3.974643
## 1828 FALSE            -1  2.030346e-04        1.153328             3.974643
## 1829 FALSE            -1  1.295071e-04        1.153328             3.974643
## 1831 FALSE            -1  1.249479e-03        1.153328             3.974643
## 1832 FALSE            -1  7.361609e-03        1.153328             3.974643
## 1833 FALSE            -1  4.915386e-03        1.153328             3.974643
## 1834 FALSE            -1 -4.219111e-03        1.153328             3.974643
## 1835 FALSE            -1  3.609361e-03        1.153328             3.974643
## 1836 FALSE            -1 -5.931812e-03        1.153328             3.974643
## 1837 FALSE            -1  1.877759e-03        1.153328             3.974643
## 1838 FALSE            -1  4.462774e-03        1.153328             3.974643
## 1839 FALSE            -1  3.297105e-03        1.153328             3.974643
## 1840 FALSE            -1  3.965092e-04        1.153328             3.974643
## 1842 FALSE            -1  9.267220e-03        1.153328             3.974643
## 1844 FALSE            -1 -1.233267e-02        1.153328             3.974643
## 1845 FALSE            -1 -3.843421e-03        1.153328             3.974643
## 1846 FALSE            -1  8.577587e-03        1.153328             3.974643
## 1847 FALSE            -1  2.737960e-02        1.153328             3.974643
## 1848 FALSE            -1  2.382213e-02        1.153328             3.974643
## 1849 FALSE            -1  3.082351e-03        1.153328             3.974643
## 1850 FALSE            -1 -2.163390e-02        1.153328             3.974643
## 1852 FALSE            -1 -3.855247e-03        1.153328             3.974643
## 1853 FALSE            -1  1.479462e-02        1.153328             3.974643
## 1854 FALSE            -1  2.162253e-02        1.153328             3.974643
## 1855 FALSE            -1 -1.192117e-03        1.153328             3.974643
## 1856 FALSE            -1 -8.386393e-03        1.153328             3.974643
## 1857 FALSE            -1 -1.176118e-03        1.153328             3.974643
## 1858 FALSE            -1 -1.543826e-02        1.153328             3.974643
## 1859 FALSE            -1  7.854072e-05        1.153328             3.974643
## 1862 FALSE            -1  1.361554e-03        1.153328             3.974643
## 1863 FALSE            -1 -1.555074e-02        1.153328             3.974643
## 1864 FALSE            -1 -2.658014e-03        1.153328             3.974643
## 1867 FALSE            -1 -1.982038e-02        1.153328             3.974643
## 1868 FALSE            -1 -2.373545e-03        1.153328             3.974643
## 1871 FALSE            -1  1.679171e-02        1.153328             3.974643
## 1874 FALSE            -1  1.461030e-02        1.153328             3.974643
## 1876 FALSE            -1  8.495923e-03        1.153328             3.974643
## 1878 FALSE            -1 -1.489508e-02        1.153328             3.974643
## 1879 FALSE            -1  1.816810e-02        1.153328             3.974643
## 1881 FALSE            -1  2.225701e-02        1.153328             3.974643
## 1882 FALSE            -1  7.074016e-03        1.153328             3.974643
## 1884 FALSE            -1  7.968335e-03        1.153328             3.974643
## 1885 FALSE            -1 -8.148324e-03        1.153328             3.974643
## 1887 FALSE            -1  8.946722e-03        1.153328             3.974643
## 1892 FALSE            -1 -1.799613e-02        1.153328             3.974643
## 1894 FALSE            -1  7.658405e-03        1.153328             3.974643
## 1895 FALSE            -1 -6.301328e-03        1.153328             3.974643
## 1896 FALSE            -1 -7.026917e-03        1.153328             3.974643
## 1897 FALSE            -1  2.354880e-03        1.153328             3.974643
## 1898 FALSE            -1 -1.070869e-02        1.153328             3.974643
## 1901 FALSE            -1 -7.048606e-03        1.153328             3.974643
## 1905 FALSE            -1 -9.960873e-04        1.153328             3.974643
## 1907 FALSE            -1 -1.839392e-02        1.153328             3.974643
## 1912 FALSE            -1  8.315828e-04        1.153328             3.974643
## 1914 FALSE            -1  1.221151e-02        1.153328             3.974643
## 1915 FALSE            -1 -5.466927e-02        1.153328             3.974643
## 1917 FALSE            -1  3.580534e-02        1.153328             3.974643
## 1918 FALSE            -1  6.048385e-03        1.153328             3.974643
## 1922 FALSE            -1  1.060277e-02        1.153328             3.974643
## 1923 FALSE            -1  1.255245e-02        1.153328             3.974643
## 1924 FALSE            -1 -1.330606e-02        1.153328             3.974643
## 1925 FALSE            -1  6.283490e-03        1.153328             3.974643
## 1927 FALSE            -1  5.261728e-03        1.153328             3.974643
## 1928 FALSE            -1  1.626143e-02        1.153328             3.974643
## 1929 FALSE            -1 -5.865357e-03        1.153328             3.974643
## 1930 FALSE            -1 -1.085238e-02        1.153328             3.974643
## 1933 FALSE            -1 -4.219111e-03        1.153328             3.974643
## 1935 FALSE            -1  5.614373e-03        1.153328             3.974643
## 1936 FALSE            -1  7.765053e-03        1.153328             3.974643
## 1937 FALSE            -1 -1.655920e-02        1.153328             3.974643
## 1938 FALSE            -1  7.776027e-03        1.153328             3.974643
## 1939 FALSE            -1  1.676901e-02        1.153328             3.974643
## 1941 FALSE            -1  1.014408e-02        1.153328             3.974643
## 1942 FALSE            -1 -3.955651e-03        1.153328             3.974643
## 1944 FALSE            -1  9.599871e-03        1.153328             3.974643
## 1945 FALSE            -1 -7.077662e-03        1.153328             3.974643
## 1946 FALSE            -1  8.157535e-03        1.153328             3.974643
## 1947 FALSE            -1  4.385248e-03        1.153328             3.974643
## 1948 FALSE            -1  1.433308e-02        1.153328             3.974643
## 1949 FALSE            -1  6.255320e-03        1.153328             3.974643
## 1952 FALSE            -1 -9.384990e-03        1.153328             3.974643
## 1953 FALSE            -1 -3.105268e-03        1.153328             3.974643
## 1955 FALSE            -1  7.850580e-03        1.153328             3.974643
## 1956 FALSE            -1  1.228694e-02        1.153328             3.974643
## 1958 FALSE            -1  6.331701e-04        1.153328             3.974643
## 1959 FALSE            -1 -9.057811e-03        1.153328             3.974643
## 1960 FALSE            -1  1.264891e-02        1.153328             3.974643
## 1963 FALSE            -1  7.904412e-03        1.153328             3.974643
## 1964 FALSE            -1 -3.557644e-03        1.153328             3.974643
## 1965 FALSE            -1  1.091273e-02        1.153328             3.974643
## 1973 FALSE            -1 -7.064305e-03        1.153328             3.974643
## 1975 FALSE            -1 -1.873598e-02        2.153328            16.974643
## 1976 FALSE            -1  2.094388e-02        2.153328            16.974643
## 1977 FALSE            -1  5.004061e-03        2.153328            16.974643
## 1978 FALSE            -1 -6.169671e-03        2.153328            16.974643
## 1979 FALSE            -1  1.843025e-02        2.153328            16.974643
## 1980 FALSE            -1  1.426821e-03        2.153328            16.974643
## 1981 FALSE            -1  2.489788e-02        2.153328            16.974643
## 1982 FALSE            -1  7.331043e-03        2.153328            16.974643
## 1983 FALSE            -1  2.532857e-02        2.153328            16.974643
## 1984 FALSE            -1  2.335351e-02        2.153328            16.974643
## 1985 FALSE            -1  1.361554e-03        2.153328            16.974643
## 1986 FALSE            -1 -2.519189e-03        2.153328            16.974643
## 1987 FALSE            -1  5.947541e-03        2.153328            16.974643
## 1988 FALSE            -1  1.932256e-02        2.153328            16.974643
## 1989 FALSE            -1  8.201601e-03        2.153328            16.974643
## 1990 FALSE            -1 -1.337416e-02        2.153328            16.974643
## 1992 FALSE            -1  5.698133e-03        2.153328            16.974643
## 1993 FALSE            -1  7.208332e-03        2.153328            16.974643
## 1994 FALSE            -1  1.335561e-02        2.153328            16.974643
## 1995 FALSE            -1  2.050729e-02        2.153328            16.974643
## 1996 FALSE            -1 -1.480390e-02        2.153328            16.974643
## 1997 FALSE            -1  1.254407e-02        2.153328            16.974643
## 1998 FALSE            -1  1.666592e-02        2.153328            16.974643
## 1999 FALSE            -1 -3.085605e-02        2.153328            16.974643
## 2000 FALSE            -1  1.320662e-02        2.153328            16.974643
## 2001 FALSE            -1  1.408555e-02        2.153328            16.974643
## 2002 FALSE            -1  1.024112e-02        2.153328            16.974643
## 2003 FALSE            -1 -1.686165e-02        2.153328            16.974643
## 2004 FALSE            -1 -2.771300e-02        2.153328            16.974643
## 2005 FALSE            -1  7.405512e-03        2.153328            16.974643
## 2006 FALSE            -1  1.199722e-03        2.153328            16.974643
## 2007 FALSE            -1  7.557728e-03        2.153328            16.974643
## 2008 FALSE            -1  2.776922e-02        2.153328            16.974643
## 2009 FALSE            -1  7.607108e-03        2.153328            16.974643
## 2010 FALSE            -1 -4.880923e-04        2.153328            16.974643
## 2011 FALSE            -1  3.501573e-03        2.153328            16.974643
## 2012 FALSE            -1  8.050058e-03        2.153328            16.974643
## 2013 FALSE            -1  1.261695e-02        2.153328            16.974643
## 2014 FALSE            -1 -2.146881e-02        2.153328            16.974643
## 2015 FALSE            -1 -4.026912e-03        2.153328            16.974643
## 2016 FALSE            -1  1.600093e-02        2.153328            16.974643
## 2017 FALSE            -1  1.701042e-02        2.153328            16.974643
## 2018 FALSE            -1  1.841036e-02        2.153328            16.974643
## 2019 FALSE            -1  6.975757e-03        2.153328            16.974643
## 2020 FALSE            -1  1.238534e-02        2.153328            16.974643
## 2021 FALSE            -1 -9.615277e-03        2.153328            16.974643
## 2022 FALSE            -1 -1.518178e-02        2.153328            16.974643
## 2023 FALSE            -1  8.097108e-03        2.153328            16.974643
## 2024 FALSE            -1 -2.659753e-03        2.153328            16.974643
## 2025 FALSE            -1 -7.415080e-03        2.153328            16.974643
## 2026 FALSE            -1  1.684091e-02        2.153328            16.974643
## 2027 FALSE            -1  6.303542e-03        2.153328            16.974643
## 2028 FALSE            -1  5.862508e-03        2.153328            16.974643
## 2029 FALSE            -1 -1.380623e-02        2.153328            16.974643
## 2031 FALSE            -1 -6.971271e-04        2.153328            16.974643
## 2032 FALSE            -1 -5.558631e-03        2.153328            16.974643
## 2033 FALSE            -1  1.117149e-03        2.153328            16.974643
## 2034 FALSE            -1  1.517399e-02        2.153328            16.974643
## 2036 FALSE            -1  6.924278e-03        2.153328            16.974643
## 2037 FALSE            -1 -1.754399e-02        2.153328            16.974643
## 2038 FALSE            -1  5.289059e-03        2.153328            16.974643
## 2039 FALSE            -1 -4.200960e-03        2.153328            16.974643
## 2040 FALSE            -1 -8.083101e-04        2.153328            16.974643
## 2041 FALSE            -1 -1.066345e-02        2.153328            16.974643
## 2042 FALSE            -1 -1.031275e-02        2.153328            16.974643
## 2047 FALSE            -1 -7.747572e-03        2.153328            16.974643
## 2050 FALSE            -1 -8.381941e-03        2.153328            16.974643
## 2053 FALSE            -1 -1.112152e-02        2.153328            16.974643
## 2055 FALSE            -1  2.226872e-03        2.153328            16.974643
## 2057 FALSE            -1 -5.726524e-02        2.153328            16.974643
## 2058 FALSE            -1 -3.985576e-03        2.153328            16.974643
## 2059 FALSE            -1  9.256148e-03        2.153328            16.974643
## 2062 FALSE            -1 -1.979434e-02        2.153328            16.974643
## 2064 FALSE            -1  2.685478e-04        2.153328            16.974643
## 2065 FALSE            -1 -2.297812e-03        2.153328            16.974643
## 2069 FALSE            -1  3.413857e-03        2.153328            16.974643
## 2071 FALSE            -1 -4.368822e-04        2.153328            16.974643
## 2072 FALSE            -1 -3.460202e-02        2.153328            16.974643
## 2073 FALSE            -1 -4.403641e-02        2.153328            16.974643
## 2079 FALSE            -1 -1.119501e-03        2.153328            16.974643
## 2081 FALSE            -1 -1.497255e-02        2.153328            16.974643
## 2082 FALSE            -1 -4.663308e-04        2.153328            16.974643
## 2083 FALSE            -1  1.713626e-03        2.153328            16.974643
## 2085 FALSE            -1 -7.363208e-03        2.153328            16.974643
## 2086 FALSE            -1  1.137324e-02        2.153328            16.974643
## 2087 FALSE            -1 -3.503956e-03        2.153328            16.974643
## 2088 FALSE            -1  2.188374e-02        2.153328            16.974643
## 2091 FALSE            -1 -2.163887e-02        2.153328            16.974643
## 2094 FALSE            -1  1.876697e-02        2.153328            16.974643
## 2095 FALSE            -1 -6.369741e-03        2.153328            16.974643
## 2097 FALSE            -1  4.954072e-03        2.153328            16.974643
## 2099 FALSE            -1 -3.962200e-03        2.153328            16.974643
## 2101 FALSE            -1 -3.141694e-03        2.153328            16.974643
## 2103 FALSE            -1  1.674246e-02        2.153328            16.974643
## 2107 FALSE            -1  2.061456e-03        2.153328            16.974643
## 2108 FALSE            -1 -1.446974e-02        2.153328            16.974643
## 2109 FALSE            -1 -1.163784e-03        2.153328            16.974643
## 2110 FALSE            -1 -9.688977e-03        2.153328            16.974643
## 2111 FALSE            -1  1.144126e-02        2.153328            16.974643
## 2112 FALSE            -1 -1.117616e-03        2.153328            16.974643
## 2113 FALSE            -1  2.743062e-05        2.153328            16.974643
## 2115 FALSE            -1 -9.655067e-03        2.153328            16.974643
## 2116 FALSE            -1  4.821482e-03        2.153328            16.974643
## 2117 FALSE            -1  1.356197e-02        2.153328            16.974643
## 2118 FALSE            -1 -1.020318e-02        2.153328            16.974643
## 2119 FALSE            -1  6.351434e-03        2.153328            16.974643
## 2120 FALSE            -1  1.465384e-02        2.153328            16.974643
## 2121 FALSE            -1 -3.539639e-04        2.153328            16.974643
## 2122 FALSE            -1  1.311042e-02        2.153328            16.974643
## 2123 FALSE            -1 -1.532135e-02        2.153328            16.974643
## 2124 FALSE            -1  1.152282e-02        2.153328            16.974643
## 2125 FALSE            -1 -1.146434e-02        2.153328            16.974643
## 2126 FALSE            -1  2.453213e-02        2.153328            16.974643
## 2127 FALSE            -1 -6.387966e-03        2.153328            16.974643
## 2128 FALSE            -1 -1.651643e-02        2.153328            16.974643
## 2129 FALSE            -1  8.960912e-03        2.153328            16.974643
## 2130 FALSE            -1 -2.128185e-02        2.153328            16.974643
## 2131 FALSE            -1 -1.440212e-02        2.153328            16.974643
## 2133 FALSE            -1  1.305329e-02        2.153328            16.974643
## 2134 FALSE            -1  7.828770e-03        2.153328            16.974643
## 2136 FALSE            -1 -1.302207e-02        2.153328            16.974643
## 2137 FALSE            -1 -9.723973e-03        2.153328            16.974643
## 2138 FALSE            -1 -2.205503e-02        2.153328            16.974643
## 2139 FALSE            -1  1.754592e-02        2.153328            16.974643
## 2140 FALSE            -1  7.718950e-03        2.153328            16.974643
## 2141 FALSE            -1  1.078726e-02        2.153328            16.974643
## 2142 FALSE            -1  4.352460e-03        2.153328            16.974643
## 2143 FALSE            -1 -2.339506e-04        2.153328            16.974643
## 2144 FALSE            -1 -2.581336e-02        2.153328            16.974643
## 2145 FALSE            -1  2.505864e-02        2.153328            16.974643
## 2146 FALSE            -1 -9.344826e-03        2.153328            16.974643
## 2147 FALSE            -1  5.117656e-03        2.153328            16.974643
## 2148 FALSE            -1 -5.914449e-03       -1.846672            24.974643
## 2149 FALSE            -1 -4.503117e-04       -1.846672            24.974643
## 2150 FALSE            -1  5.829406e-03       -1.846672            24.974643
## 2151 FALSE            -1  2.231760e-02       -1.846672            24.974643
## 2152 FALSE            -1 -2.162453e-02       -1.846672            24.974643
## 2154 FALSE            -1  1.409625e-02       -1.846672            24.974643
## 2155 FALSE            -1 -1.110049e-02       -1.846672            24.974643
## 2156 FALSE            -1  1.431272e-02       -1.846672            24.974643
## 2157 FALSE            -1 -2.899934e-02       -1.846672            24.974643
## 2158 FALSE            -1 -2.081696e-03       -1.846672            24.974643
## 2159 FALSE            -1  1.226591e-02       -1.846672            24.974643
## 2160 FALSE            -1 -1.956772e-02       -1.846672            24.974643
## 2161 FALSE            -1  3.158256e-02       -1.846672            24.974643
## 2162 FALSE            -1 -5.735533e-03       -1.846672            24.974643
## 2163 FALSE            -1 -3.229908e-02       -1.846672            24.974643
## 2164 FALSE            -1 -3.182292e-02       -1.846672            24.974643
## 2165 FALSE            -1  1.625401e-02       -1.846672            24.974643
## 2166 FALSE            -1 -3.917521e-03       -1.846672            24.974643
## 2168 FALSE            -1  3.138165e-02       -1.846672            24.974643
## 2169 FALSE            -1  3.506893e-02       -1.846672            24.974643
## 2170 FALSE            -1  3.484832e-02       -1.846672            24.974643
## 2171 FALSE            -1  9.535287e-03       -1.846672            24.974643
## 2172 FALSE            -1  2.629262e-02       -1.846672            24.974643
## 2173 FALSE            -1  4.061096e-02       -1.846672            24.974643
## 2174 FALSE            -1  5.173298e-02       -1.846672            24.974643
## 2175 FALSE            -1 -6.909474e-03       -1.846672            24.974643
## 2176 FALSE            -1 -4.484356e-03       -1.846672            24.974643
## 2177 FALSE            -1 -2.290378e-02       -1.846672            24.974643
## 2178 FALSE            -1  2.489344e-02       -1.846672            24.974643
## 2179 FALSE            -1  5.129793e-02       -1.846672            24.974643
## 2180 FALSE            -1  3.183142e-02       -1.846672            24.974643
## 2181 FALSE            -1  1.208231e-03       -1.846672            24.974643
## 2182 FALSE            -1 -1.123271e-02       -1.846672            24.974643
## 2183 FALSE            -1  1.766444e-02       -1.846672            24.974643
## 2184 FALSE            -1 -1.619146e-02       -1.846672            24.974643
## 2185 FALSE            -1  1.753680e-02       -1.846672            24.974643
## 2186 FALSE            -1  7.027603e-02       -1.846672            24.974643
## 2187 FALSE            -1  1.542838e-02       -1.846672            24.974643
## 2188 FALSE            -1  8.303226e-05       -1.846672            24.974643
## 2189 FALSE            -1  3.167954e-02       -1.846672            24.974643
## 2190 FALSE            -1  1.192945e-02       -1.846672            24.974643
## 2191 FALSE            -1  7.724812e-04       -1.846672            24.974643
## 2192 FALSE            -1  1.015544e-02       -1.846672            24.974643
## 2193 FALSE            -1  1.278044e-02       -1.846672            24.974643
## 2194 FALSE            -1  2.989839e-02       -1.846672            24.974643
## 2195 FALSE            -1 -7.667341e-03       -1.846672            24.974643
## 2196 FALSE            -1 -1.468439e-02       -1.846672            24.974643
## 2198 FALSE            -1 -1.505966e-02       -1.846672            24.974643
## 2199 FALSE            -1 -1.015014e-01       -1.846672            24.974643
## 2200 FALSE            -1 -2.715480e-02       -1.846672            24.974643
## 2201 FALSE            -1 -1.452244e-03       -1.846672            24.974643
## 2202 FALSE            -1  8.710191e-03       -1.846672            24.974643
## 2204 FALSE            -1 -9.639064e-02       -1.846672            24.974643
## 2212 FALSE            -1  5.735690e-03       -1.846672            24.974643
## 2213 FALSE            -1 -4.204759e-02       -1.846672            24.974643
## 2218 FALSE            -1 -3.154997e-02       -1.846672            24.974643
## 2219 FALSE            -1  1.223681e-02       -1.846672            24.974643
## 2220 FALSE            -1  5.159748e-03       -1.846672            24.974643
## 2221 FALSE            -1 -1.431671e-02       -1.846672            24.974643
## 2228 FALSE            -1 -2.602027e-02       -1.846672            24.974643
## 2232 FALSE            -1  3.337252e-03       -1.846672            24.974643
## 2233 FALSE            -1 -1.463103e-03       -1.846672            24.974643
## 2234 FALSE            -1 -2.531516e-02       -1.846672            24.974643
## 2235 FALSE            -1 -6.235370e-03       -1.846672            24.974643
## 2237 FALSE            -1  1.914275e-02       -1.846672            24.974643
## 2238 FALSE            -1 -9.859796e-03       -1.846672            24.974643
## 2240 FALSE            -1 -1.609457e-02       -1.846672            24.974643
## 2245 FALSE            -1  5.159748e-03       -1.846672            24.974643
## 2247 FALSE            -1 -1.842690e-02       -1.846672            24.974643
## 2251 FALSE            -1  1.595741e-02       -1.846672            24.974643
## 2256 FALSE            -1  7.668986e-03       -1.846672            24.974643
## 2261 FALSE            -1 -2.473482e-02       -1.846672            24.974643
## 2262 FALSE            -1 -7.907266e-03       -1.846672            24.974643
## 2263 FALSE            -1 -8.302263e-03       -1.846672            24.974643
## 2266 FALSE            -1  2.142810e-02       -1.846672            24.974643
## 2268 FALSE            -1  2.172579e-03       -1.846672            24.974643
## 2270 FALSE            -1 -1.333536e-02       -1.846672            24.974643
## 2274 FALSE            -1 -2.259324e-02       -1.846672            24.974643
## 2282 FALSE            -1 -3.765394e-02       -1.846672            24.974643
## 2285 FALSE            -1  2.071694e-02       -1.846672            24.974643
## 2288 FALSE            -1 -7.842582e-03       -1.846672            24.974643
## 2291 FALSE            -1 -9.253862e-04       -1.846672            24.974643
## 2292 FALSE            -1 -7.402544e-03       -1.846672            24.974643
## 2293 FALSE            -1 -6.481632e-02       -1.846672            24.974643
## 2294 FALSE            -1  1.043351e-02       -1.846672            24.974643
## 2295 FALSE            -1  1.045258e-03       -1.846672            24.974643
## 2296 FALSE            -1  1.218724e-02       -1.846672            24.974643
## 2297 FALSE            -1  4.044345e-02       -1.846672            24.974643
## 2298 FALSE            -1  2.229759e-02       -1.846672            24.974643
## 2300 FALSE            -1 -4.109381e-03       -1.846672            24.974643
## 2302 FALSE            -1  2.081212e-02       -1.846672            24.974643
## 2305 FALSE            -1  5.721226e-02       -1.846672            24.974643
## 2306 FALSE            -1  5.765248e-03       -1.846672            24.974643
## 2308 FALSE            -1  2.238870e-02       -1.846672            24.974643
## 2310 FALSE            -1 -1.203014e-02       -1.846672            24.974643
## 2312 FALSE            -1 -5.768529e-02       -1.846672            24.974643
## 2313 FALSE            -1  3.977957e-02       -1.846672            24.974643
## 2314 FALSE            -1 -6.951696e-03       -1.846672            24.974643
## 2315 FALSE            -1  2.358342e-02       -1.846672            24.974643
## 2316 FALSE            -1  1.454410e-02       -1.846672            24.974643
## 2317 FALSE            -1  7.912238e-03       -1.846672            24.974643
## 2318 FALSE            -1  6.246223e-02       -1.846672            24.974643
## 2319 FALSE            -1 -1.569043e-02       -1.846672            24.974643
## 2320 FALSE            -1  2.922799e-02       -1.846672            24.974643
## 2321 FALSE            -1 -8.050969e-03       -1.846672            24.974643
## 2322 FALSE            -1  1.121666e-02       -1.846672            24.974643
## 2323 FALSE            -1 -1.523517e-01       -1.846672            24.974643
## 2324 FALSE            -1  8.982847e-03       -1.846672            24.974643
## 2325 FALSE            -1 -5.704356e-02       -1.846672            24.974643
## 2326 FALSE            -1 -1.029269e-02       -1.846672            24.974643
## 2327 FALSE            -1  6.659470e-03       -1.846672            24.974643
## 2328 FALSE            -1  7.598505e-02       -1.846672            24.974643
## 2329 FALSE            -1 -6.734455e-02       -1.846672            24.974643
## 2330 FALSE            -1  3.278829e-02       -1.846672            24.974643
## 2331 FALSE            -1  5.260754e-02       -1.846672            24.974643
## 2332 FALSE            -1 -5.348434e-03       -1.846672            24.974643
## 2333 FALSE            -1  3.507732e-02       -1.846672            24.974643
## 2334 FALSE            -1  7.570789e-03       -1.846672            24.974643
## 2335 FALSE            -1  4.069205e-02       -1.846672            24.974643
## 2337 FALSE            -1  3.410395e-02       -1.846672            24.974643
## 2338 FALSE            -1  1.761240e-02       -1.846672            24.974643
## 2340 FALSE            -1  2.719644e-02       -1.846672            24.974643
## 2342 FALSE            -1 -2.461689e-02       -1.846672            24.974643
## 2343 FALSE            -1  3.969549e-02       -1.846672            24.974643
## 2344 FALSE            -1 -1.261871e-02       -1.846672            24.974643
## 2345 FALSE            -1  3.066553e-03       -1.846672            24.974643
## 2346 FALSE            -1 -2.873030e-02       -1.846672            24.974643
## 2347 FALSE            -1 -2.418042e-02       -1.846672            24.974643
## 2348 FALSE            -1  6.034163e-02       -1.846672            24.974643
## 2349 FALSE            -1  5.160085e-02       -1.846672            24.974643
## 2350 FALSE            -1 -1.761635e-02       -1.846672            24.974643
## 2351 FALSE            -1  2.384406e-02       -1.846672            24.974643
## 2352 FALSE            -1  4.887932e-04       -1.846672            24.974643
## 2353 FALSE            -1  7.164916e-03       -1.846672            24.974643
## 2354 FALSE            -1 -2.229363e-02       -1.846672            24.974643
## 2355 FALSE            -1  3.260320e-03       -1.846672            24.974643
## 2356 FALSE            -1 -1.208348e-03       -1.846672            24.974643
## 2357 FALSE            -1  5.184164e-03       -1.846672            24.974643
## 2359 FALSE            -1  2.534092e-03       -1.846672            24.974643
## 2361 FALSE            -1  3.971679e-03       -1.846672            24.974643
## 2362 FALSE            -1  1.514406e-02       -1.846672            24.974643
## 2363 FALSE            -1  4.708262e-03       -1.846672            24.974643
## 2365 FALSE            -1  2.790205e-03       -1.846672            24.974643
## 2366 FALSE            -1  5.958847e-03       -1.846672            24.974643
## 2367 FALSE            -1 -2.991299e-03       -1.846672            24.974643
## 2368 FALSE            -1  9.690966e-04       -1.846672            24.974643
## 2370 FALSE            -1  1.363886e-02       -1.846672            24.974643
## 2371 FALSE            -1 -1.152436e-02       -1.846672            24.974643
## 2372 FALSE            -1  5.754133e-03       -1.846672            24.974643
## 2373 FALSE            -1  1.180145e-02       -1.846672            24.974643
## 2374 FALSE            -1  1.398106e-02       -1.846672            24.974643
## 2376 FALSE            -1  1.127088e-02       -1.846672            24.974643
## 2379 FALSE            -1 -1.864194e-03       -1.846672            24.974643
## 2381 FALSE            -1  3.774377e-03       -1.846672            24.974643
## 2383 FALSE            -1 -1.663986e-02       -1.846672            24.974643
## 2386 FALSE            -1 -2.128185e-02       -1.846672            24.974643
## 2387 FALSE            -1  3.895289e-02       -1.846672            24.974643
## 2388 FALSE            -1  1.175330e-02       -1.846672            24.974643
## 2389 FALSE            -1 -1.080505e-02       -1.846672            24.974643
## 2390 FALSE            -1  1.030925e-02       -1.846672            24.974643
## 2391 FALSE            -1  2.682630e-03       -1.846672            24.974643
## 2392 FALSE            -1  3.372113e-03       -1.846672            24.974643
## 2394 FALSE            -1 -6.061088e-03       -1.846672            24.974643
## 2395 FALSE            -1 -2.126916e-02       -1.846672            24.974643
## 2398 FALSE            -1 -2.452684e-02       -1.846672            24.974643
## 2399 FALSE            -1 -9.552299e-03       -1.846672            24.974643
## 2400 FALSE            -1 -8.174336e-03       -1.846672            24.974643
## 2401 FALSE            -1  1.329816e-02       -1.846672            24.974643
## 2403 FALSE            -1 -5.778070e-03       -1.846672            24.974643
## 2404 FALSE            -1  2.472617e-03       -1.846672            24.974643
## 2406 FALSE            -1  6.917249e-03       -1.846672            24.974643
## 2408 FALSE            -1  1.057453e-02       -1.846672            24.974643
## 2409 FALSE            -1 -4.006645e-04       -1.846672            24.974643
## 2410 FALSE            -1 -2.044367e-02       -1.846672            24.974643
## 2417 FALSE            -1  2.636125e-03       -1.846672            24.974643
## 2418 FALSE            -1 -3.075878e-02       -1.846672            24.974643
## 2420 FALSE            -1  5.942852e-04       -1.846672            24.974643
## 2421 FALSE            -1 -1.086017e-02       -1.846672            24.974643
## 2422 FALSE            -1  5.635553e-03       -1.846672            24.974643
## 2423 FALSE            -1 -1.570355e-02       -1.846672            24.974643
## 2425 FALSE            -1  9.047796e-03       -1.846672            24.974643
## 2428 FALSE            -1  6.870571e-03       -1.846672            24.974643
## 2429 FALSE            -1  1.913099e-02       -1.846672            24.974643
## 2431 FALSE            -1 -6.632896e-03       -1.846672            24.974643
## 2432 FALSE            -1 -1.519883e-04       -1.846672            24.974643
## 2434 FALSE            -1 -1.516821e-02       -1.846672            24.974643
## 2436 FALSE            -1  8.225195e-03       -1.846672            24.974643
## 2439 FALSE            -1 -1.437514e-02       -1.846672            24.974643
## 2440 FALSE            -1 -3.981398e-03       -1.846672            24.974643
## 2441 FALSE            -1 -4.498748e-03       -1.846672            24.974643
## 2447 FALSE            -1  2.896348e-03       -1.846672            24.974643
## 2452 FALSE            -1 -6.618266e-03       -1.846672            24.974643
## 2456 FALSE            -1  5.112730e-03       -1.846672            24.974643
## 2457 FALSE            -1  6.023228e-04       -1.846672            24.974643
## 2459 FALSE            -1  4.969905e-03       -1.846672            24.974643
## 2466 FALSE            -1 -7.367233e-03       -1.846672            24.974643
## 2469 FALSE            -1 -1.045355e-02       -1.846672            24.974643
## 2470 FALSE            -1 -1.099437e-03       -1.846672            24.974643
## 2472 FALSE            -1 -1.052644e-03       -1.846672            24.974643
## 2473 FALSE            -1  1.571550e-02       -1.846672            24.974643
## 2476 FALSE            -1  7.294453e-03       -1.846672            24.974643
## 2477 FALSE            -1  1.125076e-02       -1.846672            24.974643
## 2478 FALSE            -1 -1.649472e-02       -1.846672            24.974643
## 2479 FALSE            -1  1.252199e-03       -1.846672            24.974643
## 2480 FALSE            -1  1.360696e-02       -1.846672            24.974643
## 2482 FALSE            -1 -1.716791e-03       -1.846672            24.974643
## 2484 FALSE            -1 -9.688977e-03       -1.846672            24.974643
## 2487 FALSE            -1 -3.016450e-02       -1.846672            24.974643
## 2496 FALSE            -1  7.890706e-03       -1.846672            24.974643
## 2497 FALSE            -1  6.830266e-03       -1.846672            24.974643
## 2498 FALSE            -1 -1.268217e-02       -1.846672            24.974643
## 2499 FALSE            -1 -4.457610e-03       -1.846672            24.974643
## 2501 FALSE            -1  5.215786e-03       -1.846672            24.974643
## 2502 FALSE            -1 -1.011174e-02       -1.846672            24.974643
## 2503 FALSE            -1 -9.089052e-03       -1.846672            24.974643
## 2504 FALSE            -1 -3.732783e-03       -1.846672            24.974643
## 2505 FALSE            -1 -6.661591e-03       -1.846672            24.974643
## 2507 FALSE            -1 -3.339608e-03       -1.846672            24.974643
## 2510 FALSE            -1 -1.323331e-02       -1.846672            24.974643
## 2512 FALSE            -1  1.036413e-02       -1.846672            24.974643
## 2514 FALSE            -1  1.390537e-02       -1.846672            24.974643
## 2518 FALSE            -1  1.402603e-02       -1.846672            24.974643
## 2519 FALSE            -1 -8.083101e-04       -1.846672            24.974643
## 2521 FALSE            -1  1.399416e-03       -1.846672            24.974643
## 2523 FALSE            -1  1.113817e-03       -1.846672            24.974643
## 2524 FALSE            -1 -3.720482e-03       -1.846672            24.974643
## 2525 FALSE            -1 -2.332003e-02       -1.846672            24.974643
## 2526 FALSE            -1  1.223744e-02       -1.846672            24.974643
## 2527 FALSE            -1  7.864680e-03       -1.846672            24.974643
## 2530 FALSE            -1 -1.684456e-02       -1.846672            24.974643
## 2535 FALSE            -1 -5.163912e-03       -1.846672            24.974643
## 2537 FALSE            -1 -4.246097e-04       -1.846672            24.974643
## 2541 FALSE            -1  9.095347e-03       -1.846672            24.974643
## 2543 FALSE            -1  1.429729e-02       -1.846672            24.974643
## 2544 FALSE            -1  1.586563e-02       -1.846672            24.974643
## 2545 FALSE            -1 -1.317293e-02       -1.846672            24.974643
## 2546 FALSE            -1  1.640606e-02       -1.846672            24.974643
## 2549 FALSE            -1 -1.488775e-02       -1.846672            24.974643
## 2554 FALSE            -1 -4.365927e-03       -1.846672            24.974643
## 2561 FALSE            -1 -4.287793e-03       -1.846672            24.974643
## 2566 FALSE            -1 -1.195394e-02       -1.846672            24.974643
## 2567 FALSE            -1 -9.660531e-03       -1.846672            24.974643
## 2568 FALSE            -1  1.213649e-02       -1.846672            24.974643
## 2569 FALSE            -1 -2.649817e-02       -1.846672            24.974643
## 2570 FALSE            -1  2.707603e-02       -1.846672            24.974643
## 2572 FALSE            -1 -2.683156e-03       -1.846672            24.974643
## 2573 FALSE            -1  1.331005e-03       -1.846672            24.974643
## 2574 FALSE            -1  1.271266e-02       -1.846672            24.974643
## 2575 FALSE            -1  3.142493e-02       -1.846672            24.974643
## 2576 FALSE            -1  3.664732e-03       -1.846672            24.974643
## 2577 FALSE            -1 -2.366363e-03       -1.846672            24.974643
## 2578 FALSE            -1 -3.344532e-03       -1.846672            24.974643
## 2579 FALSE            -1 -1.825137e-02       -1.846672            24.974643
## 2580 FALSE            -1 -1.849948e-02       -1.846672            24.974643
## 2581 FALSE            -1 -5.586042e-03       -1.846672            24.974643
## 2582 FALSE            -1 -1.192117e-03       -1.846672            24.974643
## 2584 FALSE            -1 -5.206066e-03       -1.846672            24.974643
## 2585 FALSE            -1  3.609361e-03       -1.846672            24.974643
## 2586 FALSE            -1  9.418114e-02       -1.846672            24.974643
## 2587 FALSE            -1  1.449913e-02       -1.846672            24.974643
## 2588 FALSE            -1 -1.204587e-02       -1.846672            24.974643
## 2590 FALSE            -1 -3.359126e-03       -1.846672            24.974643
## 2591 FALSE            -1 -6.221669e-03       -1.846672            24.974643
## 2592 FALSE            -1 -1.570183e-02       -1.846672            24.974643
## 2593 FALSE            -1 -7.869668e-03       -1.846672            24.974643
## 2595 FALSE            -1  1.221151e-02       -1.846672            24.974643
## 2596 FALSE            -1 -1.555459e-02       -1.846672            24.974643
## 2597 FALSE            -1 -2.244549e-02       -1.846672            24.974643
## 2598 FALSE            -1  5.917255e-03       -1.846672            24.974643
## 2600 FALSE            -1 -2.398428e-02       -1.846672            24.974643
## 2604 FALSE            -1 -1.122804e-02       -1.846672            24.974643
## 2606 FALSE            -1  2.525438e-02       -1.846672            24.974643
## 2607 FALSE            -1 -1.633112e-02       -1.846672            24.974643
## 2608 FALSE            -1 -6.319717e-03       -1.846672            24.974643
## 2614 FALSE            -1  3.787614e-03       -1.846672            24.974643
## 2622 FALSE            -1 -1.192653e-02       -1.846672            24.974643
## 2624 FALSE            -1 -2.310501e-02       -1.846672            24.974643
## 2625 FALSE            -1 -3.505369e-02       -1.846672            24.974643
## 2628 FALSE            -1 -1.477932e-02       -1.846672            24.974643
## 2629 FALSE            -1  6.732835e-03       -1.846672            24.974643
## 2634 FALSE            -1  9.718258e-03       -1.846672            24.974643
## 2637 FALSE            -1 -8.587785e-04        3.153328            29.974643
## 2638 FALSE            -1 -5.474176e-03        3.153328            29.974643
## 2639 FALSE            -1 -4.506581e-03        3.153328            29.974643
## 2640 FALSE            -1  4.756207e-03        3.153328            29.974643
## 2641 FALSE            -1  3.793907e-02        3.153328            29.974643
## 2645 FALSE            -1  8.804166e-03        3.153328            29.974643
## 2647 FALSE            -1  3.230134e-02        3.153328            29.974643
## 2651 FALSE            -1  1.449913e-02        3.153328            29.974643
## 2652 FALSE            -1  2.909473e-02        3.153328            29.974643
## 2653 FALSE            -1 -4.314137e-03        3.153328            29.974643
## 2654 FALSE            -1  3.686812e-02        3.153328            29.974643
## 2655 FALSE            -1 -8.065766e-03        3.153328            29.974643
## 2656 FALSE            -1  2.635242e-02        3.153328            29.974643
## 2657 FALSE            -1 -8.481912e-03        3.153328            29.974643
## 2658 FALSE            -1  2.027603e-02        3.153328            29.974643
## 2659 FALSE            -1  1.317375e-02        3.153328            29.974643
## 2660 FALSE            -1  3.075507e-02        3.153328            29.974643
## 2661 FALSE            -1  2.698598e-02        3.153328            29.974643
## 2662 FALSE            -1 -8.915590e-03        3.153328            29.974643
## 2663 FALSE            -1  1.240494e-03        3.153328            29.974643
## 2664 FALSE            -1 -3.121172e-03        3.153328            29.974643
## 2665 FALSE            -1  8.337649e-04        3.153328            29.974643
## 2666 FALSE            -1  1.990121e-02        3.153328            29.974643
## 2667 FALSE            -1  2.248191e-02        3.153328            29.974643
## 2669 FALSE            -1  1.822871e-02        3.153328            29.974643
## 2670 FALSE            -1  5.947541e-03        3.153328            29.974643
## 2671 FALSE            -1  3.047179e-02        3.153328            29.974643
## 2672 FALSE            -1  1.045460e-02        3.153328            29.974643
## 2673 FALSE            -1  1.221151e-02        3.153328            29.974643
## 2674 FALSE            -1  2.005100e-02        3.153328            29.974643
## 2675 FALSE            -1  7.118133e-03        3.153328            29.974643
## 2676 FALSE            -1  1.823020e-02        3.153328            29.974643
## 2677 FALSE            -1 -2.451245e-03        3.153328            29.974643
## 2678 FALSE            -1  1.573057e-02        3.153328            29.974643
## 2679 FALSE            -1  9.192283e-03        3.153328            29.974643
## 2683 FALSE            -1  2.690984e-02        3.153328            29.974643
## 2684 FALSE            -1  2.486701e-02        3.153328            29.974643
## 2685 FALSE            -1  2.406729e-02        3.153328            29.974643
## 2686 FALSE            -1 -2.666084e-04        3.153328            29.974643
## 2687 FALSE            -1  2.753196e-02        3.153328            29.974643
## 2693 FALSE            -1 -4.763718e-03        3.153328            29.974643
## 2695 FALSE            -1  2.539541e-03        3.153328            29.974643
## 2697 FALSE            -1  4.611934e-02        3.153328            29.974643
## 2698 FALSE            -1 -1.355856e-02        3.153328            29.974643
## 2701 FALSE            -1 -3.728700e-02        3.153328            29.974643
## 2704 FALSE            -1  9.518712e-03        3.153328            29.974643
## 2705 FALSE            -1 -2.182924e-02        3.153328            29.974643
## 2706 FALSE            -1 -6.796415e-03        3.153328            29.974643
## 2707 FALSE            -1 -3.554129e-03        3.153328            29.974643
## 2709 FALSE            -1  1.823748e-02        3.153328            29.974643
## 2710 FALSE            -1 -1.002700e-02        3.153328            29.974643
## 2711 FALSE            -1 -1.243916e-02        3.153328            29.974643
## 2712 FALSE            -1 -1.197505e-02        3.153328            29.974643
## 2713 FALSE            -1 -4.814225e-03        3.153328            29.974643
## 2716 FALSE            -1  2.933860e-03        3.153328            29.974643
## 2717 FALSE            -1  4.482434e-02        3.153328            29.974643
## 2718 FALSE            -1 -1.334255e-02        3.153328            29.974643
## 2719 FALSE            -1  1.060752e-02        3.153328            29.974643
## 2720 FALSE            -1  2.190921e-03        3.153328            29.974643
## 2721 FALSE            -1 -2.593402e-03        3.153328            29.974643
## 2722 FALSE            -1  1.575914e-02        3.153328            29.974643
## 2723 FALSE            -1  9.905330e-03        3.153328            29.974643
## 2724 FALSE            -1  1.530667e-03        3.153328            29.974643
## 2725 FALSE            -1  8.410233e-03        3.153328            29.974643
## 2726 FALSE            -1 -6.110377e-03        3.153328            29.974643
## 2727 FALSE            -1 -6.113981e-03        3.153328            29.974643
## 2728 FALSE            -1  7.182041e-04        3.153328            29.974643
## 2730 FALSE            -1 -1.876301e-02        3.153328            29.974643
## 2731 FALSE            -1  1.294158e-02        3.153328            29.974643
## 2733 FALSE            -1 -2.692171e-03        3.153328            29.974643
## 2734 FALSE            -1 -5.765639e-03        3.153328            29.974643
## 2735 FALSE            -1 -9.723973e-03        3.153328            29.974643
## 2736 FALSE            -1  1.566966e-02        3.153328            29.974643
## 2737 FALSE            -1 -5.818249e-03        3.153328            29.974643
## 2738 FALSE            -1  8.277601e-03        3.153328            29.974643
## 2739 FALSE            -1 -3.211005e-04        3.153328            29.974643
## 2740 FALSE            -1 -1.516821e-02        3.153328            29.974643
## 2741 FALSE            -1 -3.350300e-04        3.153328            29.974643
## 2742 FALSE            -1 -3.197081e-03        3.153328            29.974643
## 2743 FALSE            -1  4.244831e-03        3.153328            29.974643
## 2744 FALSE            -1  8.854707e-03        3.153328            29.974643
## 2745 FALSE            -1  4.204316e-04        3.153328            29.974643
## 2747 FALSE            -1  1.755441e-02        3.153328            29.974643
## 2748 FALSE            -1 -9.609325e-04        3.153328            29.974643
## 2749 FALSE            -1 -1.008244e-03        3.153328            29.974643
## 2752 FALSE            -1  3.721124e-03        3.153328            29.974643
## 2754 FALSE            -1  2.933947e-02        3.153328            29.974643
## 2756 FALSE            -1 -6.585843e-02        3.153328            29.974643
## 2757 FALSE            -1  6.750722e-03        3.153328            29.974643
## 2758 FALSE            -1  4.459989e-04        3.153328            29.974643
## 2759 FALSE            -1  1.034225e-02        3.153328            29.974643
## 2760 FALSE            -1  1.073394e-03        3.153328            29.974643
## 2761 FALSE            -1  8.443966e-03        3.153328            29.974643
## 2763 FALSE            -1 -1.339926e-02        3.153328            29.974643
## 2764 FALSE            -1  7.720961e-03        3.153328            29.974643
## 2765 FALSE            -1 -3.466990e-03        3.153328            29.974643
## 2767 FALSE            -1  8.097105e-04        3.153328            29.974643
## 2768 FALSE            -1 -1.721426e-02        3.153328            29.974643
## 2769 FALSE            -1  1.300191e-02        3.153328            29.974643
## 2772 FALSE            -1  5.896161e-04        3.153328            29.974643
## 2773 FALSE            -1 -5.485947e-03        3.153328            29.974643
## 2774 FALSE            -1 -1.303178e-02        3.153328            29.974643
## 2777 FALSE            -1 -2.972397e-02        3.153328            29.974643
## 2779 FALSE            -1 -1.086875e-02        3.153328            29.974643
## 2780 FALSE            -1  4.651027e-03        3.153328            29.974643
## 2781 FALSE            -1 -3.956953e-02        3.153328            29.974643
## 2782 FALSE            -1  1.756845e-02        3.153328            29.974643
## 2784 FALSE            -1  8.872518e-03        3.153328            29.974643
## 2785 FALSE            -1 -5.399648e-03        3.153328            29.974643
## 2786 FALSE            -1 -3.885708e-03        3.153328            29.974643
## 2787 FALSE            -1 -4.591095e-03        3.153328            29.974643
## 2788 FALSE            -1 -4.954379e-02        3.153328            29.974643
## 2789 FALSE            -1  2.389922e-02        3.153328            29.974643
## 2791 FALSE            -1  3.443429e-02        3.153328            29.974643
## 2792 FALSE            -1  6.044931e-03        3.153328            29.974643
## 2794 FALSE            -1 -9.396551e-03        3.153328            29.974643
## 2795 FALSE            -1  1.668027e-02        3.153328            29.974643
## 2797 FALSE            -1 -8.894241e-03        3.153328            29.974643
## 2798 FALSE            -1 -2.830217e-02        3.153328            29.974643
## 2799 FALSE            -1 -2.040039e-02        3.153328            29.974643
## 2800 FALSE            -1  6.083888e-03        3.153328            29.974643
## 2801 FALSE            -1 -1.338931e-02        3.153328            29.974643
## 2802 FALSE            -1  9.291844e-03        3.153328            29.974643
## 2806 FALSE            -1 -2.164944e-02        3.153328            29.974643
## 2807 FALSE            -1  3.849385e-03        3.153328            29.974643
## 2808 FALSE            -1  1.530628e-02        3.153328            29.974643
## 2810 FALSE            -1 -1.036008e-02        3.153328            29.974643
## 2812 FALSE            -1  6.539764e-03        3.153328            29.974643
## 2813 FALSE            -1 -2.246402e-02        3.153328            29.974643
## 2816 FALSE            -1  1.959483e-02        3.153328            29.974643
## 2820 FALSE            -1 -2.681301e-02        3.153328            29.974643
## 2823 FALSE            -1  7.118133e-03        3.153328            29.974643
## 2826 FALSE            -1 -1.437375e-02        3.153328            29.974643
## 2830 FALSE            -1 -6.611845e-03        3.153328            29.974643
## 2831 FALSE            -1 -2.980253e-02        3.153328            29.974643
## 2833 FALSE            -1 -1.150175e-02        3.153328            29.974643
## 2834 FALSE            -1 -1.335722e-02        3.153328            29.974643
## 2835 FALSE            -1 -1.364728e-02        3.153328            29.974643
## 2836 FALSE            -1 -3.737376e-03        3.153328            29.974643
## 2837 FALSE            -1 -2.848940e-02        3.153328            29.974643
## 2839 FALSE            -1  2.007360e-02        3.153328            29.974643
## 2841 FALSE            -1 -5.837925e-03        3.153328            29.974643
## 2842 FALSE            -1 -1.823253e-02        3.153328            29.974643
## 2844 FALSE            -1 -8.703880e-03        3.153328            29.974643
## 2845 FALSE            -1 -1.951376e-02        3.153328            29.974643
## 2847 FALSE            -1  2.322789e-02        3.153328            29.974643
## 2848 FALSE            -1  1.770947e-03        3.153328            29.974643
## 2850 FALSE            -1 -1.751219e-02        3.153328            29.974643
## 2851 FALSE            -1 -8.894241e-03        3.153328            29.974643
## 2853 FALSE            -1  1.339857e-03        3.153328            29.974643
## 2854 FALSE            -1  3.962094e-03        3.153328            29.974643
## 2855 FALSE            -1 -5.099083e-03        3.153328            29.974643
## 2856 FALSE            -1 -1.370456e-02        3.153328            29.974643
## 2859 FALSE            -1  1.232246e-02        3.153328            29.974643
## 2860 FALSE            -1 -2.386357e-03        3.153328            29.974643
## 2862 FALSE            -1 -6.732283e-03        3.153328            29.974643
## 2863 FALSE            -1 -6.209761e-03        3.153328            29.974643
## 2864 FALSE            -1 -1.497780e-02        3.153328            29.974643
## 2868 FALSE            -1 -2.222583e-02        3.153328            29.974643
## 2869 FALSE            -1 -1.190219e-02        3.153328            29.974643
## 2871 FALSE            -1  6.233764e-04        3.153328            29.974643
## 2878 FALSE            -1  9.044746e-03        3.153328            29.974643
## 2884 FALSE            -1 -1.709810e-02        3.153328            29.974643
## 2886 FALSE            -1 -4.700186e-03        3.153328            29.974643
## 2887 FALSE            -1 -3.609323e-03        3.153328            29.974643
## 2891 FALSE            -1  4.907402e-02        3.153328            29.974643
## 2892 FALSE            -1 -1.225822e-02        3.153328            29.974643
## 2893 FALSE            -1 -2.696994e-02        3.153328            29.974643
## 2895 FALSE            -1 -1.334970e-02        3.153328            29.974643
## 2896 FALSE            -1 -9.361982e-03        3.153328            29.974643
## 2897 FALSE             1 -5.557984e-03       -4.846672            33.974643
## 2899 FALSE             1  1.439899e-02       -4.846672            33.974643
## 2900 FALSE             1  6.607597e-03       -4.846672            33.974643
## 2901 FALSE             1 -2.692171e-03       -4.846672            33.974643
## 2904 FALSE             1  1.126513e-02       -4.846672            33.974643
## 2905 FALSE             1 -1.091746e-02       -4.846672            33.974643
## 2906 FALSE             1 -1.088611e-02       -4.846672            33.974643
## 2907 FALSE             1  1.704599e-03       -4.846672            33.974643
## 2908 FALSE             1 -5.225281e-03       -4.846672            33.974643
## 2911 FALSE             1  8.263335e-03       -4.846672            33.974643
## 2912 FALSE             1  5.391851e-04       -4.846672            33.974643
## 2914 FALSE             1  8.536227e-03       -4.846672            33.974643
## 2917 FALSE             1 -9.475305e-03       -4.846672            33.974643
## 2919 FALSE             1  1.472047e-02       -4.846672            33.974643
## 2921 FALSE             1 -1.694371e-03       -4.846672            33.974643
## 2923 FALSE             1 -1.739628e-03       -4.846672            33.974643
## 2929 FALSE             1 -2.739846e-03       -4.846672            33.974643
## 2930 FALSE             1  1.914275e-02       -4.846672            33.974643
## 2931 FALSE             1  1.400363e-02       -4.846672            33.974643
## 2932 FALSE             1  1.421134e-02       -4.846672            33.974643
## 2933 FALSE             1 -1.882350e-02       -4.846672            33.974643
## 2934 FALSE             1 -3.953875e-03       -4.846672            33.974643
## 2935 FALSE             1  5.272130e-03       -4.846672            33.974643
## 2936 FALSE             1 -2.548592e-02       -4.846672            33.974643
## 2937 FALSE             1 -2.288105e-02       -4.846672            33.974643
## 2939 FALSE             1 -5.056624e-03       -4.846672            33.974643
## 2940 FALSE             1 -2.096312e-02       -4.846672            33.974643
## 2944 FALSE             1 -1.084430e-02       -4.846672            33.974643
## 2945 FALSE             1 -7.984842e-03       -4.846672            33.974643
## 2947 FALSE             1 -2.723042e-02       -4.846672            33.974643
## 2948 FALSE             1 -2.333364e-02       -4.846672            33.974643
## 2949 FALSE             1 -7.041854e-03       -4.846672            33.974643
## 2950 FALSE             1 -6.472944e-03       -4.846672            33.974643
## 2951 FALSE             1 -3.545437e-03       -4.846672            33.974643
## 2952 FALSE             1 -1.962906e-02       -4.846672            33.974643
## 2953 FALSE             1  2.005907e-03       -4.846672            33.974643
## 2954 FALSE             1 -4.479900e-03       -4.846672            33.974643
## 2955 FALSE             1 -1.392521e-02       -4.846672            33.974643
## 2956 FALSE             1 -3.294978e-02       -4.846672            33.974643
## 2957 FALSE             1 -1.091578e-02       -4.846672            33.974643
## 2958 FALSE             1 -1.274284e-02       -4.846672            33.974643
## 2959 FALSE             1 -1.701126e-02       -4.846672            33.974643
## 2960 FALSE             1 -2.384162e-02       -4.846672            33.974643
## 2964 FALSE             1  6.387138e-03       -4.846672            33.974643
## 2965 FALSE             1  1.210047e-02       -4.846672            33.974643
## 2970 FALSE             1 -1.734939e-02       -4.846672            33.974643
## 2971 FALSE             1 -1.422086e-03       -4.846672            33.974643
## 2972 FALSE             1 -3.804533e-03       -4.846672            33.974643
## 2973 FALSE             1  1.943428e-02       -4.846672            33.974643
## 2974 FALSE             1  2.341786e-02       -4.846672            33.974643
## 2975 FALSE             1 -1.140205e-02       -4.846672            33.974643
## 2976 FALSE             1 -1.043826e-02       -4.846672            33.974643
## 2978 FALSE             1  3.361259e-02       -4.846672            33.974643
## 2979 FALSE             1 -1.531195e-02       -4.846672            33.974643
## 2980 FALSE             1 -5.898746e-03       -4.846672            33.974643
## 2981 FALSE             1  5.193760e-03       -4.846672            33.974643
## 2982 FALSE             1 -1.739521e-02       -4.846672            33.974643
## 2983 FALSE             1 -2.747210e-02       -4.846672            33.974643
## 2984 FALSE             1 -1.522802e-02       -4.846672            33.974643
## 2985 FALSE             1 -2.113502e-02       -4.846672            33.974643
## 2986 FALSE             1 -1.734939e-02       -4.846672            33.974643
## 2987 FALSE             1  2.288927e-02       -4.846672            33.974643
## 2988 FALSE             1 -1.371709e-02       -4.846672            33.974643
## 2990 FALSE             1 -3.773388e-02       -4.846672            33.974643
## 2991 FALSE             1  1.395519e-02       -4.846672            33.974643
## 2992 FALSE             1 -2.429104e-02       -4.846672            33.974643
## 2994 FALSE             1 -6.403815e-03       -4.846672            33.974643
## 2995 FALSE             1  1.497567e-02       -4.846672            33.974643
## 2997 FALSE             1 -2.610762e-02       -4.846672            33.974643
## 2998 FALSE             1 -1.028321e-03       -4.846672            33.974643
## 2999 FALSE             1 -2.098611e-02       -4.846672            33.974643
## 3000 FALSE             1 -3.726927e-03       -4.846672            33.974643
## 3001 FALSE             1  2.287118e-02       -4.846672            33.974643
## 3002 FALSE             1 -1.954121e-02       -4.846672            33.974643
## 3004 FALSE             1  9.712647e-03       -4.846672            33.974643
## 3005 FALSE             1 -5.981696e-03       -4.846672            33.974643
## 3006 FALSE             1 -1.205156e-02       -4.846672            33.974643
## 3007 FALSE             1  1.194269e-02       -4.846672            33.974643
## 3009 FALSE             1  3.772360e-03       -4.846672            33.974643
## 3010 FALSE             1 -2.514132e-02       -4.846672            33.974643
## 3011 FALSE             1 -2.061699e-02       -4.846672            33.974643
## 3013 FALSE             1 -4.383837e-03       -4.846672            33.974643
## 3014 FALSE             1 -1.247152e-03       -4.846672            33.974643
## 3015 FALSE             1  5.545028e-03       -4.846672            33.974643
## 3016 FALSE             1  1.983344e-03       -4.846672            33.974643
## 3019 FALSE             1  7.172225e-03       -4.846672            33.974643
## 3020 FALSE             1  6.061980e-03       -4.846672            33.974643
## 3045 FALSE             1 -1.532769e-02       -4.846672            33.974643
## 3050 FALSE             1  3.556282e-03       -4.846672            33.974643
## 3052 FALSE             1 -9.357374e-02       -4.846672            33.974643
## 3053 FALSE             1 -1.008112e-02       -4.846672            33.974643
## 3054 FALSE             1 -1.840159e-02       -4.846672            33.974643
## 3055 FALSE             1 -1.186945e-02       -4.846672            33.974643
## 3056 FALSE             1 -4.550763e-03       -4.846672            33.974643
## 3057 FALSE             1 -5.526228e-03       -4.846672            33.974643
## 3058 FALSE             1 -1.622535e-02       -4.846672            33.974643
## 3059 FALSE             1  2.616300e-02       -4.846672            33.974643
## 3060 FALSE             1  3.611007e-04       -4.846672            33.974643
## 3061 FALSE             1 -1.599848e-02       -4.846672            33.974643
## 3062 FALSE             1 -1.452737e-02       -4.846672            33.974643
## 3063 FALSE             1 -6.236149e-03       -4.846672            33.974643
## 3064 FALSE             1  1.965155e-02       -4.846672            33.974643
## 3066 FALSE             1  2.637359e-02       -4.846672            33.974643
## 3067 FALSE             1  1.068638e-02       -4.846672            33.974643
## 3068 FALSE             1  1.374396e-02       -4.846672            33.974643
## 3069 FALSE             1 -5.071885e-03       -4.846672            33.974643
## 3070 FALSE             1 -1.893139e-02       -4.846672            33.974643
## 3071 FALSE             1  6.426262e-03       -4.846672            33.974643
## 3072 FALSE             1 -6.079955e-04       -4.846672            33.974643
## 3073 FALSE             1 -1.804514e-02       -4.846672            33.974643
## 3074 FALSE             1 -9.434312e-05       -4.846672            33.974643
## 3075 FALSE             1 -4.345185e-03       -4.846672            33.974643
## 3076 FALSE             1 -1.530623e-02       -4.846672            33.974643
## 3077 FALSE             1 -5.559839e-03       -4.846672            33.974643
## 3078 FALSE             1 -1.253647e-02       -4.846672            33.974643
## 3079 FALSE             1 -3.369519e-03       -4.846672            33.974643
## 3080 FALSE             1 -1.622319e-02       -4.846672            33.974643
## 3081 FALSE             1  1.027603e-02       -4.846672            33.974643
## 3082 FALSE             1 -2.473923e-02       -4.846672            33.974643
## 3083 FALSE             1 -1.703741e-02       -4.846672            33.974643
## 3084 FALSE             1 -6.540582e-03       -4.846672            33.974643
## 3085 FALSE             1 -1.557483e-02       -4.846672            33.974643
## 3086 FALSE             1  1.594247e-03       -4.846672            33.974643
## 3087 FALSE             1  3.178061e-03       -4.846672            33.974643
## 3088 FALSE             1  4.022157e-03       -4.846672            33.974643
## 3089 FALSE             1 -4.438802e-03       -4.846672            33.974643
## 3090 FALSE             1  2.860297e-03       -4.846672            33.974643
## 3091 FALSE             1  1.880255e-02       -4.846672            33.974643
## 3092 FALSE             1  9.169953e-03       -4.846672            33.974643
## 3093 FALSE             1 -1.683123e-02       -4.846672            33.974643
## 3094 FALSE             1  5.825160e-03       -4.846672            33.974643
## 3095 FALSE             1  1.045258e-03       -4.846672            33.974643
## 3096 FALSE             1  8.570342e-03       -4.846672            33.974643
## 3097 FALSE             1 -1.147710e-02       -4.846672            33.974643
## 3098 FALSE             1 -2.534992e-02       -4.846672            33.974643
## 3099 FALSE             1  7.259869e-03       -4.846672            33.974643
## 3100 FALSE             1 -3.186756e-03       -4.846672            33.974643
## 3101 FALSE             1 -1.532000e-02       -4.846672            33.974643
## 3102 FALSE             1 -1.984255e-02       -4.846672            33.974643
## 3103 FALSE             1 -1.131524e-02       -4.846672            33.974643
## 3105 FALSE             1  3.034648e-03       -4.846672            33.974643
## 3107 FALSE             1  5.193760e-03       -4.846672            33.974643
## 3108 FALSE             1 -2.172757e-02       -4.846672            33.974643
## 3109 FALSE             1  7.683129e-03       -4.846672            33.974643
## 3110 FALSE             1  1.116351e-02       -4.846672            33.974643
## 3111 FALSE             1 -1.445932e-03       -4.846672            33.974643
## 3112 FALSE             1 -4.985297e-03       -4.846672            33.974643
## 3113 FALSE             1 -5.335940e-03       -4.846672            33.974643
## 3115 FALSE             1  4.697392e-03       -4.846672            33.974643
## 3116 FALSE             1  1.336256e-02       -4.846672            33.974643
## 3117 FALSE             1  8.610885e-03       -4.846672            33.974643
## 3118 FALSE             1 -1.131524e-02       -4.846672            33.974643
## 3119 FALSE             1  3.488368e-03       -4.846672            33.974643
## 3120 FALSE             1  5.899030e-03       -4.846672            33.974643
## 3121 FALSE             1  1.329632e-03       -4.846672            33.974643
## 3122 FALSE             1  7.688886e-03       -4.846672            33.974643
## 3123 FALSE             1  1.867476e-03       -4.846672            33.974643
## 3124 FALSE             1  1.715074e-03       -4.846672            33.974643
## 3125 FALSE             1  4.813058e-04       -4.846672            33.974643
## 3126 FALSE             1  2.047428e-02       -4.846672            33.974643
## 3127 FALSE             1  1.846540e-03       -4.846672            33.974643
## 3128 FALSE             1  1.271202e-02       -4.846672            33.974643
## 3129 FALSE             1 -2.190512e-03       -4.846672            33.974643
## 3131 FALSE             1  1.984868e-02       -4.846672            33.974643
## 3132 FALSE             1 -4.478656e-03       -4.846672            33.974643
## 3133 FALSE             1  1.639002e-02       -4.846672            33.974643
## 3134 FALSE             1  1.227809e-02       -4.846672            33.974643
## 3135 FALSE             1  1.014637e-02       -4.846672            33.974643
## 3136 FALSE             1  1.637655e-02       -4.846672            33.974643
## 3137 FALSE             1  4.309980e-03       -4.846672            33.974643
## 3138 FALSE             1  1.114869e-02       -4.846672            33.974643
## 3139 FALSE             1  7.538765e-03       -4.846672            33.974643
## 3140 FALSE             1  2.416441e-02       -4.846672            33.974643
## 3141 FALSE             1  1.400643e-02       -4.846672            33.974643
## 3142 FALSE             1  1.889481e-02       -4.846672            33.974643
## 3143 FALSE             1 -2.611799e-02       -4.846672            33.974643
## 3144 FALSE             1  7.161273e-03       -4.846672            33.974643
## 3145 FALSE             1  2.787971e-02       -4.846672            33.974643
## 3146 FALSE             1  1.202909e-02       -4.846672            33.974643
## 3147 FALSE             1 -4.861798e-02       -4.846672            33.974643
## 3148 FALSE             1 -1.433936e-02       -4.846672            33.974643
## 3149 FALSE             1 -2.948016e-03       -4.846672            33.974643
## 3150 FALSE             1  2.898916e-02       -4.846672            33.974643
## 3151 FALSE             1 -2.010510e-02       -4.846672            33.974643
## 3152 FALSE             1 -2.184910e-03       -4.846672            33.974643
## 3153 FALSE             1 -5.671254e-03       -4.846672            33.974643
## 3154 FALSE             1 -2.135393e-02       -4.846672            33.974643
## 3155 FALSE             1 -5.474176e-03       -4.846672            33.974643
## 3157 FALSE             1 -3.433319e-02       -4.846672            33.974643
## 3158 FALSE             1  3.211181e-03       -4.846672            33.974643
## 3159 FALSE             1  8.822631e-03       -4.846672            33.974643
## 3160 FALSE             1  1.577962e-02       -4.846672            33.974643
## 3162 FALSE             1 -1.620562e-02       -4.846672            33.974643
## 3164 FALSE             1  1.372172e-02       -4.846672            33.974643
## 3165 FALSE             1  5.671216e-03       -4.846672            33.974643
## 3167 FALSE             1  1.619311e-03       -4.846672            33.974643
## 3168 FALSE             1  1.524860e-02       -4.846672            33.974643
## 3169 FALSE             1  2.683711e-02       -4.846672            33.974643
## 3170 FALSE             1 -3.979129e-03       -4.846672            33.974643
## 3171 FALSE             1  2.119603e-03       -4.846672            33.974643
## 3172 FALSE             1 -2.742715e-02       -4.846672            33.974643
## 3175 FALSE             1  8.891692e-03       -4.846672            33.974643
## 3176 FALSE             1 -1.960724e-02       -4.846672            33.974643
## 3177 FALSE             1 -9.948902e-03       -4.846672            33.974643
## 3178 FALSE             1 -1.653797e-03       -4.846672            33.974643
## 3180 FALSE             1  7.118133e-03       -4.846672            33.974643
## 3181 FALSE             1 -1.868247e-02       -4.846672            33.974643
## 3182 FALSE             1 -2.910396e-02       -4.846672            33.974643
## 3183 FALSE             1 -1.962625e-02       -4.846672            33.974643
## 3185 FALSE             1 -3.937789e-02       -4.846672            33.974643
## 3186 FALSE             1 -3.117572e-02       -4.846672            33.974643
## 3187 FALSE             1 -2.263601e-02       -4.846672            33.974643
## 3189 FALSE             1 -1.425362e-03       -4.846672            33.974643
## 3190 FALSE             1  7.389429e-03       -4.846672            33.974643
## 3191 FALSE             1 -3.064990e-02       -4.846672            33.974643
## 3192 FALSE             1 -1.543826e-02       -4.846672            33.974643
## 3193 FALSE             1 -2.793826e-02       -4.846672            33.974643
## 3194 FALSE             1 -1.447949e-02       -4.846672            33.974643
## 3196 FALSE             1  5.882088e-03       -4.846672            33.974643
## 3197 FALSE             1 -2.865927e-02       -4.846672            33.974643
## 3198 FALSE             1 -2.182924e-02       -4.846672            33.974643
## 3199 FALSE             1 -3.184124e-02       -4.846672            33.974643
## 3200 FALSE             1 -2.350928e-02       -4.846672            33.974643
## 3201 FALSE             1 -1.319581e-02       -4.846672            33.974643
## 3202 FALSE             1 -9.165091e-03       -4.846672            33.974643
## 3203 FALSE             1  1.019019e-02       -4.846672            33.974643
## 3205 FALSE             1 -2.612549e-02       -4.846672            33.974643
## 3206 FALSE             1 -8.182817e-03       -4.846672            33.974643
## 3207 FALSE             1  9.101619e-03       -4.846672            33.974643
## 3209 FALSE             1  5.759898e-03       -4.846672            33.974643
## 3210 FALSE             1 -2.458622e-02       -4.846672            33.974643
## 3211 FALSE             1  6.738121e-03       -4.846672            33.974643
## 3212 FALSE             1 -6.335124e-03       -4.846672            33.974643
## 3213 FALSE             1 -3.701564e-02       -4.846672            33.974643
## 3214 FALSE             1 -2.393492e-02       -4.846672            33.974643
## 3215 FALSE             1 -2.702127e-02       -4.846672            33.974643
## 3216 FALSE             1  3.908314e-03       -4.846672            33.974643
## 3218 FALSE             1 -1.792159e-02       -4.846672            33.974643
## 3219 FALSE             1 -2.878263e-02       -4.846672            33.974643
## 3220 FALSE             1 -4.083508e-02       -4.846672            33.974643
## 3221 FALSE             1  4.015503e-04       -4.846672            33.974643
## 3222 FALSE             1 -2.417904e-02       -4.846672            33.974643
## 3223 FALSE             1  1.429076e-02       -4.846672            33.974643
## 3224 FALSE             1  3.277686e-03       -4.846672            33.974643
## 3226 FALSE             1 -1.641339e-02       -4.846672            33.974643
## 3227 FALSE             1  8.763201e-04       -4.846672            33.974643
## 3229 FALSE             1 -2.265327e-02       -4.846672            33.974643
## 3230 FALSE             1 -2.112032e-03       -4.846672            33.974643
## 3231 FALSE             1  1.422932e-02       -4.846672            33.974643
## 3232 FALSE             1 -1.194410e-02       -4.846672            33.974643
## 3234 FALSE             1 -4.257765e-02       -4.846672            33.974643
## 3235 FALSE             1 -2.061773e-02       -4.846672            33.974643
## 3236 FALSE             1 -1.391037e-02       -4.846672            33.974643
## 3237 FALSE             1 -1.428412e-02       -4.846672            33.974643
## 3238 FALSE             1 -1.790579e-02       -4.846672            33.974643
## 3239 FALSE             1 -1.372739e-02       -4.846672            33.974643
## 3240 FALSE             1 -2.318192e-02       -4.846672            33.974643
## 3241 FALSE             1  1.042754e-02       -4.846672            33.974643
## 3242 FALSE             1  2.114408e-02       -4.846672            33.974643
## 3243 FALSE             1  3.095979e-02       -4.846672            33.974643
## 3244 FALSE             1 -2.316027e-02       -4.846672            33.974643
## 3246 FALSE             1 -1.206580e-02       -4.846672            33.974643
## 3247 FALSE             1 -1.495028e-02       -4.846672            33.974643
## 3248 FALSE             1 -1.195394e-02       -4.846672            33.974643
## 3249 FALSE             1 -2.216914e-02       -4.846672            33.974643
## 3250 FALSE             1 -1.114986e-02       -4.846672            33.974643
## 3251 FALSE             1 -2.429023e-02       -4.846672            33.974643
## 3252 FALSE             1  1.072742e-02       -4.846672            33.974643
## 3253 FALSE             1 -1.519110e-02       -4.846672            33.974643
## 3254 FALSE             1  2.771539e-03       -4.846672            33.974643
## 3255 FALSE             1 -4.206731e-03       -4.846672            33.974643
## 3256 FALSE             1 -3.305046e-04       -4.846672            33.974643
## 3257 FALSE             1 -2.274345e-02       -4.846672            33.974643
## 3258 FALSE             1  1.391135e-03       -4.846672            33.974643
## 3259 FALSE             1  1.238129e-02       -4.846672            33.974643
## 3260 FALSE             1  1.542177e-03       -4.846672            33.974643
## 3261 FALSE             1 -9.978750e-03       -4.846672            33.974643
## 3262 FALSE             1 -3.542807e-02       -4.846672            33.974643
## 3263 FALSE             1 -2.883118e-03       -4.846672            33.974643
## 3264 FALSE             1 -2.964180e-02       -4.846672            33.974643
## 3265 FALSE             1 -1.324888e-02       -4.846672            33.974643
## 3266 FALSE             1  6.003467e-03       -4.846672            33.974643
## 3267 FALSE             1 -1.880119e-02       -4.846672            33.974643
## 3268 FALSE             1 -3.227800e-02       -4.846672            33.974643
## 3269 FALSE             1 -7.744940e-04       -4.846672            33.974643
## 3270 FALSE             1 -3.139299e-03       -4.846672            33.974643
## 3271 FALSE             1 -1.407663e-02       -4.846672            33.974643
## 3273 FALSE             1 -5.948490e-02       -4.846672            33.974643
## 3274 FALSE             1 -8.369806e-03       -4.846672            33.974643
## 3279 FALSE             1  4.554149e-03       -4.846672            33.974643
## 3280 FALSE             1 -1.005486e-02       -4.846672            33.974643
## 3281 FALSE             1 -6.788193e-03       -4.846672            33.974643
## 3282 FALSE             1 -1.443222e-02       -4.846672            33.974643
## 3283 FALSE             1  1.774224e-02       -4.846672            33.974643
## 3285 FALSE             1 -2.933862e-02       -4.846672            33.974643
## 3287 FALSE             1 -2.389969e-02       -4.846672            33.974643
## 3288 FALSE             1 -4.805918e-02       -4.846672            33.974643
## 3289 FALSE             1 -9.120958e-03       -4.846672            33.974643
## 3290 FALSE             1 -2.931911e-02       -4.846672            33.974643
## 3291 FALSE             1 -1.663986e-02       -4.846672            33.974643
## 3292 FALSE             1 -1.543826e-02       -4.846672            33.974643
## 3293 FALSE             1 -5.404394e-03       -4.846672            33.974643
## 3294 FALSE             1  4.409818e-03       -4.846672            33.974643
## 3295 FALSE             1  1.118108e-02       -4.846672            33.974643
## 3296 FALSE             1 -2.795324e-02       -4.846672            33.974643
## 3297 FALSE             1 -1.492896e-02       -4.846672            33.974643
## 3300 FALSE             1 -7.984842e-03       -4.846672            33.974643
## 3301 FALSE             1 -2.085059e-02       -4.846672            33.974643
## 3302 FALSE             1 -1.568288e-02       -4.846672            33.974643
## 3303 FALSE             1 -4.628187e-03       -4.846672            33.974643
## 3304 FALSE             1 -1.542155e-03       -4.846672            33.974643
## 3305 FALSE             1 -6.403815e-03       -4.846672            33.974643
## 3306 FALSE             1 -5.451812e-02       -4.846672            33.974643
## 3307 FALSE             1 -3.707949e-02       -4.846672            33.974643
## 3308 FALSE             1  4.003838e-03       -4.846672            33.974643
## 3309 FALSE             1 -1.750678e-02       -4.846672            33.974643
## 3311 FALSE             1 -1.595260e-02       -4.846672            33.974643
## 3312 FALSE             1 -2.535033e-03       -4.846672            33.974643
## 3313 FALSE             1  1.197038e-02       -4.846672            33.974643
## 3314 FALSE             1 -7.498096e-05       -4.846672            33.974643
## 3315 FALSE             1  2.051898e-02       -4.846672            33.974643
## 3316 FALSE             1  8.648120e-03       -4.846672            33.974643
## 3317 FALSE             1 -7.300826e-03       -4.846672            33.974643
## 3318 FALSE             1 -1.518807e-02       -4.846672            33.974643
## 3319 FALSE             1 -1.530708e-02       -4.846672            33.974643
## 3320 FALSE             1 -1.344490e-02       -4.846672            33.974643
## 3321 FALSE             1  1.750850e-02       -4.846672            33.974643
## 3322 FALSE             1 -1.495317e-02       -4.846672            33.974643
## 3323 FALSE             1 -6.647050e-03       -4.846672            33.974643
## 3325 FALSE             1  2.245188e-04       -4.846672            33.974643
## 3327 FALSE             1  6.549655e-03       -4.846672            33.974643
## 3332 FALSE             1  2.862096e-03       -4.846672            33.974643
## 3339 FALSE             1 -1.529902e-02       -4.846672            33.974643
## 3340 FALSE             1 -2.178746e-02       -4.846672            33.974643
## 3341 FALSE             1 -1.351844e-02       -4.846672            33.974643
## 3342 FALSE             1 -1.021178e-02       -4.846672            33.974643
## 3343 FALSE             1 -4.102558e-03       -4.846672            33.974643
## 3348 FALSE             1 -5.826061e-03       -4.846672            33.974643
## 3350 FALSE             1 -3.771160e-03       -4.846672            33.974643
## 3351 FALSE             1 -1.480192e-02       -4.846672            33.974643
## 3379 FALSE             1 -6.524355e-04       -4.846672            33.974643
## 3391 FALSE             1 -4.976498e-03       -4.846672            33.974643
## 3394 FALSE             1 -2.838169e-02       -4.846672            33.974643
## 3396 FALSE             1 -4.953331e-03       -4.846672            33.974643
## 3398 FALSE             1 -5.573061e-04       -4.846672            33.974643
## 3399 FALSE             1 -1.361326e-02       -4.846672            33.974643
## 3400 FALSE             1 -2.575653e-02       -4.846672            33.974643
## 3401 FALSE             1 -2.634777e-02       -4.846672            33.974643
## 3402 FALSE             1  4.204599e-03       -4.846672            33.974643
## 3404 FALSE             1 -1.917393e-02       -4.846672            33.974643
## 3405 FALSE             1 -1.711893e-02       -4.846672            33.974643
## 3406 FALSE             1 -7.705624e-03       -4.846672            33.974643
## 3407 FALSE             1 -2.913524e-02       -4.846672            33.974643
## 3408 FALSE             1  2.760273e-04       -4.846672            33.974643
## 3409 FALSE             1 -1.543826e-02       -4.846672            33.974643
## 3410 FALSE             1 -1.314643e-02       -4.846672            33.974643
## 3411 FALSE             1  1.656927e-02       -4.846672            33.974643
## 3412 FALSE             1 -2.865927e-02       -4.846672            33.974643
## 3414 FALSE             1 -4.723973e-03       -4.846672            33.974643
## 3415 FALSE             1 -1.144784e-02       -4.846672            33.974643
## 3418 FALSE             1 -2.164404e-02       -4.846672            33.974643
## 3419 FALSE             1  4.328139e-03       -4.846672            33.974643
## 3420 FALSE             1 -1.723445e-02       -4.846672            33.974643
## 3421 FALSE             1 -7.890251e-03       -4.846672            33.974643
## 3422 FALSE             1 -6.832406e-03       -4.846672            33.974643
## 3423 FALSE             1 -2.399481e-02       -4.846672            33.974643
## 3424 FALSE             1 -4.663308e-04       -4.846672            33.974643
## 3425 FALSE             1 -1.555800e-02       -4.846672            33.974643
## 3426 FALSE             1 -1.845762e-03       -4.846672            33.974643
## 3428 FALSE             1 -4.488109e-02       -4.846672            33.974643
## 3429 FALSE             1 -6.396667e-03       -4.846672            33.974643
## 3430 FALSE             1 -5.808922e-03       -4.846672            33.974643
## 3431 FALSE             1 -1.303178e-02       -4.846672            33.974643
## 3432 FALSE             1  1.559119e-02       -4.846672            33.974643
## 3433 FALSE             1  2.234790e-03       -4.846672            33.974643
## 3434 FALSE             1  1.523016e-02       -4.846672            33.974643
## 3435 FALSE             1  8.813128e-04       -4.846672            33.974643
## 3436 FALSE             1 -1.802083e-02       -4.846672            33.974643
## 3437 FALSE             1 -6.708100e-03       -4.846672            33.974643
## 3438 FALSE             1 -7.605014e-03       -4.846672            33.974643
## 3439 FALSE             1 -2.451245e-03       -4.846672            33.974643
## 3440 FALSE             1  1.865175e-03       -4.846672            33.974643
## 3441 FALSE             1  3.776445e-03       -4.846672            33.974643
## 3442 FALSE             1 -6.418495e-03       -4.846672            33.974643
## 3443 FALSE             1 -4.643587e-03       -4.846672            33.974643
## 3444 FALSE             1 -1.861286e-02       -4.846672            33.974643
## 3445 FALSE             1 -3.959781e-03       -4.846672            33.974643
## 3448 FALSE             1 -2.187756e-02       -4.846672            33.974643
## 3451 FALSE             1 -2.025818e-02       -4.846672            33.974643
## 3452 FALSE             1  3.001629e-02       -4.846672            33.974643
## 3453 FALSE             1 -8.204985e-03       -4.846672            33.974643
## 3454 FALSE             1 -1.614617e-02       -4.846672            33.974643
## 3461 FALSE             1  1.165534e-02       -4.846672            33.974643
## 3462 FALSE             1 -2.843642e-02       -4.846672            33.974643
## 3466 FALSE             1  6.622543e-03       -4.846672            33.974643
## 3473 FALSE             1  1.218779e-02       -4.846672            33.974643
## 3476 FALSE            -1 -1.518497e-02        3.153328            29.974643
## 3477 FALSE            -1 -1.225517e-02        3.153328            29.974643
## 3478 FALSE            -1 -1.365533e-02        3.153328            29.974643
## 3479 FALSE            -1  6.808507e-04        3.153328            29.974643
## 3480 FALSE            -1 -3.074444e-03        3.153328            29.974643
## 3481 FALSE            -1 -1.578955e-02        3.153328            29.974643
## 3482 FALSE            -1 -1.043777e-02        3.153328            29.974643
## 3483 FALSE            -1 -2.780966e-02        3.153328            29.974643
## 3485 FALSE            -1 -5.690614e-03        3.153328            29.974643
## 3486 FALSE            -1 -4.020067e-03        3.153328            29.974643
## 3487 FALSE            -1 -3.735272e-03        3.153328            29.974643
## 3488 FALSE            -1  1.646772e-03        3.153328            29.974643
## 3489 FALSE            -1  2.411840e-04        3.153328            29.974643
## 3492 FALSE            -1 -1.738277e-02        3.153328            29.974643
## 3493 FALSE            -1 -1.207691e-02        3.153328            29.974643
## 3496 FALSE            -1 -3.770019e-04        3.153328            29.974643
## 3498 FALSE            -1  2.072325e-02        3.153328            29.974643
## 3499 FALSE            -1  1.125660e-02        3.153328            29.974643
## 3500 FALSE            -1 -9.083403e-03        3.153328            29.974643
## 3501 FALSE            -1  6.067118e-03        3.153328            29.974643
## 3502 FALSE            -1  7.030994e-03        3.153328            29.974643
## 3503 FALSE            -1  1.897620e-02        3.153328            29.974643
## 3504 FALSE            -1  1.565477e-03        3.153328            29.974643
## 3505 FALSE            -1  1.352969e-02        3.153328            29.974643
## 3506 FALSE            -1  3.667636e-03        3.153328            29.974643
## 3507 FALSE            -1  1.544977e-02        3.153328            29.974643
## 3508 FALSE            -1  5.979273e-03        3.153328            29.974643
## 3509 FALSE            -1  3.005256e-02        3.153328            29.974643
## 3510 FALSE            -1  4.589541e-04        3.153328            29.974643
## 3511 FALSE            -1  6.332587e-03        3.153328            29.974643
## 3513 FALSE            -1 -1.071221e-03        3.153328            29.974643
## 3514 FALSE            -1  7.040733e-03        3.153328            29.974643
## 3515 FALSE            -1 -3.029057e-03        3.153328            29.974643
## 3516 FALSE            -1  2.121658e-02        3.153328            29.974643
## 3517 FALSE            -1 -1.038435e-02        3.153328            29.974643
## 3518 FALSE            -1  1.651385e-03        3.153328            29.974643
## 3519 FALSE            -1  1.571281e-03        3.153328            29.974643
## 3520 FALSE            -1  1.729984e-02        3.153328            29.974643
## 3521 FALSE            -1  8.292556e-03        3.153328            29.974643
## 3522 FALSE            -1  3.175050e-03        3.153328            29.974643
## 3523 FALSE            -1  1.726398e-02        3.153328            29.974643
## 3524 FALSE            -1 -1.271284e-02        3.153328            29.974643
## 3525 FALSE            -1  1.919384e-03        3.153328            29.974643
## 3526 FALSE            -1 -5.975992e-03        3.153328            29.974643
## 3528 FALSE            -1 -3.989333e-03        3.153328            29.974643
## 3529 FALSE            -1 -1.994479e-02        3.153328            29.974643
## 3530 FALSE            -1 -2.235015e-04        3.153328            29.974643
## 3531 FALSE            -1 -8.838474e-04        3.153328            29.974643
## 3532 FALSE            -1 -1.203014e-02        3.153328            29.974643
## 3533 FALSE            -1  8.207062e-03        3.153328            29.974643
## 3534 FALSE            -1  2.866557e-03        3.153328            29.974643
## 3535 FALSE            -1  2.870964e-03        3.153328            29.974643
## 3536 FALSE            -1  5.227510e-05        3.153328            29.974643
## 3537 FALSE            -1 -1.648271e-02        3.153328            29.974643
## 3538 FALSE            -1  1.556751e-02        3.153328            29.974643
## 3539 FALSE            -1  2.389922e-02        3.153328            29.974643
## 3540 FALSE            -1  6.911247e-03        3.153328            29.974643
## 3541 FALSE            -1 -4.898449e-03        3.153328            29.974643
## 3542 FALSE            -1  2.175095e-02        3.153328            29.974643
## 3543 FALSE            -1 -1.097397e-02        3.153328            29.974643
## 3544 FALSE            -1  1.904853e-02        3.153328            29.974643
## 3545 FALSE            -1  6.427631e-03        3.153328            29.974643
## 3546 FALSE            -1 -5.944950e-03        3.153328            29.974643
## 3547 FALSE            -1 -8.098206e-03        3.153328            29.974643
## 3549 FALSE            -1 -1.246465e-02        3.153328            29.974643
## 3550 FALSE            -1 -1.486181e-03        3.153328            29.974643
## 3551 FALSE            -1  7.953554e-03        3.153328            29.974643
## 3552 FALSE            -1 -5.314524e-03        3.153328            29.974643
## 3553 FALSE            -1 -1.272492e-02        3.153328            29.974643
## 3554 FALSE            -1 -2.179944e-02        3.153328            29.974643
## 3555 FALSE            -1  1.787428e-02        3.153328            29.974643
## 3556 FALSE            -1  2.142368e-03        3.153328            29.974643
## 3557 FALSE            -1  8.621892e-03        3.153328            29.974643
## 3558 FALSE            -1 -2.227048e-04        3.153328            29.974643
## 3559 FALSE            -1  2.320000e-02        3.153328            29.974643
## 3560 FALSE            -1 -7.892987e-03        3.153328            29.974643
## 3561 FALSE            -1 -1.711400e-02        3.153328            29.974643
## 3562 FALSE            -1  1.279100e-02        3.153328            29.974643
## 3563 FALSE            -1 -1.986252e-02        3.153328            29.974643
## 3564 FALSE            -1 -1.861286e-02        3.153328            29.974643
## 3565 FALSE            -1 -1.542155e-03        3.153328            29.974643
## 3566 FALSE            -1  1.263411e-02        5.153328            -4.025357
## 3570 FALSE            -1  2.007425e-02        3.153328            29.974643
## 3571 FALSE            -1 -2.602027e-02        3.153328            29.974643
## 3572 FALSE            -1 -2.468800e-02        3.153328            29.974643
## 3573 FALSE            -1 -6.248618e-03        3.153328            29.974643
## 3574 FALSE            -1 -2.185624e-03        3.153328            29.974643
## 3575 FALSE            -1 -2.351378e-02        3.153328            29.974643
## 3576 FALSE            -1 -2.266137e-02        3.153328            29.974643
## 3577 FALSE            -1  8.148368e-03        3.153328            29.974643
## 3578 FALSE            -1 -5.815757e-03        3.153328            29.974643
## 3579 FALSE            -1 -1.242439e-02        3.153328            29.974643
## 3581 FALSE            -1  1.442017e-02        3.153328            29.974643
## 3583 FALSE            -1  1.344543e-02        3.153328            29.974643
## 3584 FALSE            -1  3.538177e-02        3.153328            29.974643
## 3585 FALSE            -1 -3.932985e-03        3.153328            29.974643
## 3586 FALSE            -1 -2.393492e-02        3.153328            29.974643
## 3587 FALSE            -1 -1.968381e-02        3.153328            29.974643
## 3588 FALSE            -1 -1.223905e-02        3.153328            29.974643
## 3589 FALSE            -1 -2.718822e-03        3.153328            29.974643
## 3590 FALSE            -1 -1.353350e-02        3.153328            29.974643
## 3591 FALSE            -1 -1.876052e-02        3.153328            29.974643
## 3592 FALSE            -1 -2.078362e-03       -1.846672            24.974643
## 3594 FALSE            -1  6.186972e-02       -1.846672            24.974643
## 3595 FALSE            -1  2.237366e-02       -1.846672            24.974643
## 3596 FALSE            -1  5.288472e-02       -1.846672            24.974643
## 3597 FALSE            -1 -1.217370e-02       -1.846672            24.974643
## 3598 FALSE            -1 -5.000248e-02       -1.846672            24.974643
## 3599 FALSE            -1 -1.852033e-03       -1.846672            24.974643
## 3600 FALSE            -1  2.764341e-02       -1.846672            24.974643
## 3601 FALSE            -1 -2.146235e-02       -1.846672            24.974643
## 3602 FALSE            -1  3.030750e-02       -1.846672            24.974643
## 3603 FALSE            -1  4.647496e-02       -1.846672            24.974643
## 3604 FALSE            -1  4.140279e-02       -1.846672            24.974643
## 3605 FALSE            -1  1.742432e-02       -1.846672            24.974643
## 3606 FALSE            -1 -1.055607e-02       -1.846672            24.974643
## 3607 FALSE            -1  7.367192e-02       -1.846672            24.974643
## 3608 FALSE            -1  9.406462e-03       -1.846672            24.974643
## 3609 FALSE            -1 -9.540487e-03       -1.846672            24.974643
## 3610 FALSE            -1  2.407831e-02       -1.846672            24.974643
## 3611 FALSE            -1 -5.273282e-02       -1.846672            24.974643
## 3612 FALSE            -1 -3.046395e-03       -1.846672            24.974643
## 3613 FALSE            -1 -2.874793e-02       -1.846672            24.974643
## 3614 FALSE            -1  3.104596e-02       -1.846672            24.974643
## 3615 FALSE            -1 -8.464130e-03       -1.846672            24.974643
## 3616 FALSE            -1  1.198219e-02       -1.846672            24.974643
## 3617 FALSE            -1  2.160279e-02       -1.846672            24.974643
## 3618 FALSE            -1  4.219224e-02       -1.846672            24.974643
## 3619 FALSE            -1 -4.248688e-03       -1.846672            24.974643
## 3620 FALSE            -1  4.180887e-02       -1.846672            24.974643
## 3621 FALSE            -1  8.169942e-02       -1.846672            24.974643
## 3622 FALSE            -1  3.331284e-02       -1.846672            24.974643
## 3623 FALSE            -1  3.048011e-02       -1.846672            24.974643
## 3624 FALSE            -1  4.763452e-02       -1.846672            24.974643
## 3625 FALSE            -1  4.911384e-02       -1.846672            24.974643
## 3626 FALSE            -1  2.431858e-02       -1.846672            24.974643
## 3627 FALSE            -1 -2.601137e-03       -1.846672            24.974643
## 3628 FALSE            -1 -6.277554e-02       -1.846672            24.974643
## 3629 FALSE            -1 -5.437024e-03       -1.846672            24.974643
## 3630 FALSE            -1  1.275328e-02       -1.846672            24.974643
## 3631 FALSE            -1 -5.908314e-02       -1.846672            24.974643
## 3632 FALSE            -1 -3.931342e-03       -1.846672            24.974643
## 3633 FALSE            -1  4.638422e-02       -1.846672            24.974643
## 3634 FALSE            -1 -5.655324e-02       -1.846672            24.974643
## 3635 FALSE            -1 -5.250878e-02       -1.846672            24.974643
## 3636 FALSE            -1  7.196056e-02       -1.846672            24.974643
## 3637 FALSE            -1  6.446902e-02       -1.846672            24.974643
## 3638 FALSE            -1 -6.491561e-02       -1.846672            24.974643
## 3639 FALSE            -1  4.002267e-02       -1.846672            24.974643
## 3640 FALSE            -1 -6.124571e-02       -1.846672            24.974643
## 3641 FALSE            -1 -3.757106e-02       -1.846672            24.974643
## 3642 FALSE            -1 -4.356748e-02       -1.846672            24.974643
## 3643 FALSE            -1  1.388625e-02       -1.846672            24.974643
## 3644 FALSE            -1  1.456826e-02       -1.846672            24.974643
## 3645 FALSE            -1 -3.572245e-02       -1.846672            24.974643
## 3646 FALSE            -1 -7.170781e-03       -1.846672            24.974643
## 3647 FALSE            -1  1.458975e-02       -1.846672            24.974643
## 3648 FALSE            -1 -1.472852e-03       -1.846672            24.974643
## 3649 FALSE            -1  2.470081e-02       -1.846672            24.974643
## 3650 FALSE            -1 -4.266104e-02       -1.846672            24.974643
## 3651 FALSE            -1 -9.256982e-02       -1.846672            24.974643
## 3652 FALSE            -1  4.925851e-02       -1.846672            24.974643
## 3653 FALSE            -1 -4.489200e-02       -1.846672            24.974643
## 3655 FALSE            -1  2.109570e-02       -1.846672            24.974643
## 3656 FALSE            -1  1.936694e-02       -1.846672            24.974643
## 3658 FALSE            -1  1.225962e-02       -1.846672            24.974643
## 3659 FALSE            -1  4.019635e-02       -1.846672            24.974643
## 3660 FALSE            -1  1.053577e-02       -1.846672            24.974643
## 3661 FALSE            -1  1.011191e-03       -1.846672            24.974643
## 3662 FALSE            -1  2.550806e-02       -1.846672            24.974643
## 3663 FALSE            -1  4.215932e-02       -1.846672            24.974643
## 3664 FALSE            -1  2.696499e-02       -1.846672            24.974643
## 3665 FALSE            -1  3.493193e-02       -1.846672            24.974643
## 3666 FALSE            -1  2.135641e-02       -1.846672            24.974643
## 3667 FALSE            -1 -5.630625e-02       -1.846672            24.974643
## 3668 FALSE            -1  1.174863e-01       -1.846672            24.974643
## 3669 FALSE            -1 -2.104967e-02       -1.846672            24.974643
## 3670 FALSE            -1  9.868587e-03       -1.846672            24.974643
## 3671 FALSE            -1  3.623347e-02       -1.846672            24.974643
## 3672 FALSE            -1 -4.634666e-02       -1.846672            24.974643
## 3673 FALSE            -1  8.764298e-03       -1.846672            24.974643
## 3674 FALSE            -1 -8.128136e-03       -1.846672            24.974643
## 3675 FALSE            -1  4.561742e-03       -1.846672            24.974643
## 3676 FALSE            -1  4.630402e-02       -1.846672            24.974643
## 3677 FALSE            -1 -1.019272e-02       -1.846672            24.974643
## 3678 FALSE            -1 -3.243137e-03       -1.846672            24.974643
## 3680 FALSE            -1  2.119514e-02       -1.846672            24.974643
## 3681 FALSE            -1 -5.427858e-02       -1.846672            24.974643
## 3682 FALSE            -1  2.596647e-02       -1.846672            24.974643
## 3683 FALSE            -1 -1.232111e-01       -1.846672            24.974643
## 3684 FALSE            -1 -1.200358e-02       -1.846672            24.974643
## 3685 FALSE            -1  3.874893e-02       -1.846672            24.974643
## 3686 FALSE            -1  3.333909e-02       -1.846672            24.974643
## 3687 FALSE            -1  5.349862e-02       -1.846672            24.974643
## 3688 FALSE            -1 -3.105953e-02       -1.846672            24.974643
## 3689 FALSE            -1  5.592782e-02       -1.846672            24.974643
## 3690 FALSE            -1  2.832722e-02       -1.846672            24.974643
## 3691 FALSE            -1  1.672993e-02       -1.846672            24.974643
## 3692 FALSE            -1  1.153477e-02       -1.846672            24.974643
## 3693 FALSE            -1 -4.821137e-02       -1.846672            24.974643
## 3694 FALSE            -1  4.308008e-02       -1.846672            24.974643
## 3695 FALSE            -1 -3.467303e-02       -1.846672            24.974643
## 3696 FALSE            -1 -2.875934e-02       -1.846672            24.974643
## 3698 FALSE            -1 -2.031515e-02       -1.846672            24.974643
##          X.utm   Y.utm
## 1    1010037.7 2956134
## 2    1010037.7 2956134
## 3    1010037.7 2956134
## 4    1010037.7 2956134
## 5    1010037.7 2956134
## 6    1010037.7 2956134
## 7    1010037.7 2956134
## 8    1010037.7 2956134
## 9    1010037.7 2956134
## 10   1010037.7 2956134
## 11   1010037.7 2956134
## 12   1010037.7 2956134
## 13   1010037.7 2956134
## 14   1010037.7 2956134
## 16   1010037.7 2956134
## 17   1010037.7 2956134
## 18   1010037.7 2956134
## 19   1010037.7 2956134
## 20   1010037.7 2956134
## 21   1010037.7 2956134
## 22   1010037.7 2956134
## 23   1010037.7 2956134
## 24   1010037.7 2956134
## 25   1010037.7 2956134
## 26   1010037.7 2956134
## 104  1155594.4 2835483
## 105  1155594.4 2835483
## 106  1155594.4 2835483
## 107  1155594.4 2835483
## 109  1155594.4 2835483
## 110  1155594.4 2835483
## 111  1155594.4 2835483
## 112  1155594.4 2835483
## 114  1155594.4 2835483
## 141  1164740.8 2794842
## 142  1164740.8 2794842
## 143  1164740.8 2794842
## 144  1164740.8 2794842
## 146  1164740.8 2794842
## 147  1164740.8 2794842
## 148  1164740.8 2794842
## 149  1164740.8 2794842
## 150  1164740.8 2794842
## 152  1164740.8 2794842
## 153  1164740.8 2794842
## 202  1032899.8 3098294
## 203  1032899.8 3098294
## 204  1032899.8 3098294
## 205  1032899.8 3098294
## 206  1032899.8 3098294
## 207  1032899.8 3098294
## 208  1032899.8 3098294
## 209  1032899.8 3098294
## 210  1032899.8 3098294
## 211  1032899.8 3098294
## 213  1032899.8 3098294
## 214  1032899.8 3098294
## 215  1032899.8 3098294
## 217  1032899.8 3098294
## 219  1032899.8 3098294
## 221  1032899.8 3098294
## 222  1032899.8 3098294
## 223  1032899.8 3098294
## 224  1032899.8 3098294
## 225  1032899.8 3098294
## 226  1032899.8 3098294
## 228  1032899.8 3098294
## 229  1032899.8 3098294
## 230  1032899.8 3098294
## 837  1164740.8 2794842
## 839  1164740.8 2794842
## 840  1164740.8 2794842
## 841  1164740.8 2794842
## 844  1164740.8 2794842
## 845  1164740.8 2794842
## 847  1032899.8 3098294
## 848  1032899.8 3098294
## 849  1032899.8 3098294
## 850  1032899.8 3098294
## 851  1032899.8 3098294
## 852  1032899.8 3098294
## 853  1032899.8 3098294
## 854  1032899.8 3098294
## 856  1032899.8 3098294
## 857  1032899.8 3098294
## 858  1032899.8 3098294
## 859  1032899.8 3098294
## 860  1032899.8 3098294
## 861  1032899.8 3098294
## 862  1032899.8 3098294
## 863  1032899.8 3098294
## 865  1032899.8 3098294
## 866  1032899.8 3098294
## 867  1032899.8 3098294
## 868  1032899.8 3098294
## 870  1032899.8 3098294
## 871  1032899.8 3098294
## 872  1032899.8 3098294
## 873  1032899.8 3098294
## 874  1032899.8 3098294
## 875  1032899.8 3098294
## 877  1032899.8 3098294
## 878  1032899.8 3098294
## 879  1032899.8 3098294
## 880  1032899.8 3098294
## 881  1032899.8 3098294
## 882  1032899.8 3098294
## 883  1032899.8 3098294
## 884  1032899.8 3098294
## 886  1032899.8 3098294
## 887  1032899.8 3098294
## 888  1032899.8 3098294
## 889  1032899.8 3098294
## 890  1032899.8 3098294
## 905  1150184.3 2776463
## 907  1150184.3 2776463
## 911  1150184.3 2776463
## 912  1150184.3 2776463
## 915  1150184.3 2776463
## 917  1150184.3 2776463
## 918  1150184.3 2776463
## 975  1164740.8 2794842
## 978  1164740.8 2794842
## 986  1164740.8 2794842
## 990  1164740.8 2794842
## 993  1164740.8 2794842
## 995  1164740.8 2794842
## 996  1164740.8 2794842
## 997  1164740.8 2794842
## 1001 1164740.8 2794842
## 1012 1164740.8 2794842
## 1017 1164740.8 2794842
## 1023 1032899.8 3098294
## 1024 1032899.8 3098294
## 1025 1032899.8 3098294
## 1026 1032899.8 3098294
## 1027 1032899.8 3098294
## 1028 1032899.8 3098294
## 1029 1032899.8 3098294
## 1030 1032899.8 3098294
## 1031 1032899.8 3098294
## 1032 1032899.8 3098294
## 1033 1032899.8 3098294
## 1034 1032899.8 3098294
## 1035 1032899.8 3098294
## 1036 1032899.8 3098294
## 1037 1032899.8 3098294
## 1038 1032899.8 3098294
## 1039 1032899.8 3098294
## 1040 1032899.8 3098294
## 1041 1032899.8 3098294
## 1042 1032899.8 3098294
## 1043 1032899.8 3098294
## 1044 1032899.8 3098294
## 1045 1032899.8 3098294
## 1046 1032899.8 3098294
## 1047 1032899.8 3098294
## 1048 1032899.8 3098294
## 1049 1032899.8 3098294
## 1050 1032899.8 3098294
## 1051 1032899.8 3098294
## 1052 1032899.8 3098294
## 1054 1032899.8 3098294
## 1055 1032899.8 3098294
## 1056 1032899.8 3098294
## 1057 1032899.8 3098294
## 1058 1032899.8 3098294
## 1059 1032899.8 3098294
## 1060 1032899.8 3098294
## 1061 1032899.8 3098294
## 1062 1032899.8 3098294
## 1063 1032899.8 3098294
## 1064 1032899.8 3098294
## 1065 1032899.8 3098294
## 1066 1032899.8 3098294
## 1067 1032899.8 3098294
## 1068 1032899.8 3098294
## 1069 1032899.8 3098294
## 1070 1032899.8 3098294
## 1071 1032899.8 3098294
## 1072 1032899.8 3098294
## 1073 1032899.8 3098294
## 1074 1032899.8 3098294
## 1075 1032899.8 3098294
## 1076 1032899.8 3098294
## 1077 1000240.8 3196176
## 1078 1000240.8 3196176
## 1079 1000240.8 3196176
## 1080 1000240.8 3196176
## 1081 1000240.8 3196176
## 1082 1000240.8 3196176
## 1083 1000240.8 3196176
## 1084 1000240.8 3196176
## 1085 1000240.8 3196176
## 1086 1000240.8 3196176
## 1088 1000240.8 3196176
## 1089 1000240.8 3196176
## 1090 1000240.8 3196176
## 1091 1000240.8 3196176
## 1092 1000240.8 3196176
## 1093 1000240.8 3196176
## 1094 1000240.8 3196176
## 1095 1000240.8 3196176
## 1096 1000240.8 3196176
## 1097 1000240.8 3196176
## 1098 1000240.8 3196176
## 1099 1000240.8 3196176
## 1100 1000240.8 3196176
## 1101 1000240.8 3196176
## 1103 1000240.8 3196176
## 1104 1000240.8 3196176
## 1105 1000240.8 3196176
## 1106 1000240.8 3196176
## 1107 1000240.8 3196176
## 1108 1000240.8 3196176
## 1110 1000240.8 3196176
## 1111 1000240.8 3196176
## 1112 1000240.8 3196176
## 1117 1150184.3 2776463
## 1118 1150184.3 2776463
## 1119 1150184.3 2776463
## 1121 1150184.3 2776463
## 1122 1150184.3 2776463
## 1124 1150184.3 2776463
## 1125  949182.1 3290538
## 1126  949182.1 3290538
## 1127  949182.1 3290538
## 1128  949182.1 3290538
## 1129  949182.1 3290538
## 1130  949182.1 3290538
## 1131  949182.1 3290538
## 1132  949182.1 3290538
## 1133  949182.1 3290538
## 1134  949182.1 3290538
## 1135  949182.1 3290538
## 1136  949182.1 3290538
## 1137  949182.1 3290538
## 1138  949182.1 3290538
## 1142  949182.1 3290538
## 1143  949182.1 3290538
## 1144  949182.1 3290538
## 1146  949182.1 3290538
## 1148  949182.1 3290538
## 1155  949182.1 3290538
## 1156  949182.1 3290538
## 1158  949182.1 3290538
## 1160  949182.1 3290538
## 1161  949182.1 3290538
## 1162  949182.1 3290538
## 1164  949182.1 3290538
## 1166  949182.1 3290538
## 1167  949182.1 3290538
## 1170  949182.1 3290538
## 1174  949182.1 3290538
## 1176  949182.1 3290538
## 1177  949182.1 3290538
## 1178  949182.1 3290538
## 1179  949182.1 3290538
## 1180  949182.1 3290538
## 1181  949182.1 3290538
## 1182 1155594.4 2835483
## 1185 1155594.4 2835483
## 1186 1155594.4 2835483
## 1188 1155594.4 2835483
## 1189 1155594.4 2835483
## 1191 1155594.4 2835483
## 1192 1155594.4 2835483
## 1193 1155594.4 2835483
## 1194 1155594.4 2835483
## 1203 1174715.3 2810251
## 1204 1174715.3 2810251
## 1205 1174715.3 2810251
## 1208 1174715.3 2810251
## 1209 1174715.3 2810251
## 1210 1174715.3 2810251
## 1213 1174715.3 2810251
## 1215 1174715.3 2810251
## 1217 1174715.3 2810251
## 1219 1174715.3 2810251
## 1221 1174715.3 2810251
## 1222 1174715.3 2810251
## 1225 1174715.3 2810251
## 1228 1174715.3 2810251
## 1230 1174715.3 2810251
## 1235 1174715.3 2810251
## 1238 1174715.3 2810251
## 1239 1174715.3 2810251
## 1241 1174715.3 2810251
## 1246 1174715.3 2810251
## 1247 1174715.3 2810251
## 1248 1164740.8 2794842
## 1249 1164740.8 2794842
## 1250 1164740.8 2794842
## 1252 1164740.8 2794842
## 1253 1164740.8 2794842
## 1255 1164740.8 2794842
## 1257 1164740.8 2794842
## 1258 1164740.8 2794842
## 1268 1034251.3 3101958
## 1272 1034251.3 3101958
## 1276  999804.3 3197182
## 1281  999804.3 3197182
## 1285  999804.3 3197182
## 1289  999804.3 3197182
## 1290  999804.3 3197182
## 1291  999804.3 3197182
## 1292  999804.3 3197182
## 1294 1000240.8 3196176
## 1295 1000240.8 3196176
## 1296 1000240.8 3196176
## 1297 1000240.8 3196176
## 1298 1000240.8 3196176
## 1299 1000240.8 3196176
## 1300 1000240.8 3196176
## 1301 1000240.8 3196176
## 1302 1000240.8 3196176
## 1303 1000240.8 3196176
## 1304 1000240.8 3196176
## 1306 1000240.8 3196176
## 1307 1000240.8 3196176
## 1308 1000240.8 3196176
## 1309 1000240.8 3196176
## 1310 1000240.8 3196176
## 1311 1000240.8 3196176
## 1312 1000240.8 3196176
## 1313 1000240.8 3196176
## 1315 1000240.8 3196176
## 1316 1000240.8 3196176
## 1317 1000240.8 3196176
## 1318 1000240.8 3196176
## 1319 1000240.8 3196176
## 1320 1000240.8 3196176
## 1321 1000240.8 3196176
## 1322 1000240.8 3196176
## 1323 1000240.8 3196176
## 1324 1000240.8 3196176
## 1325 1000240.8 3196176
## 1326 1000240.8 3196176
## 1327 1000240.8 3196176
## 1328 1000240.8 3196176
## 1329 1000240.8 3196176
## 1330 1000240.8 3196176
## 1331 1000240.8 3196176
## 1332 1000240.8 3196176
## 1333 1000240.8 3196176
## 1334 1000240.8 3196176
## 1335 1000240.8 3196176
## 1336 1000240.8 3196176
## 1337 1000240.8 3196176
## 1338 1000240.8 3196176
## 1340 1152004.7 2778276
## 1341 1152004.7 2778276
## 1343 1152004.7 2778276
## 1344 1152004.7 2778276
## 1346 1152004.7 2778276
## 1347 1152004.7 2778276
## 1349 1152004.7 2778276
## 1354 1152004.7 2778276
## 1355 1152004.7 2778276
## 1356 1152004.7 2778276
## 1357 1152004.7 2778276
## 1358 1152004.7 2778276
## 1361 1152004.7 2778276
## 1364 1152004.7 2778276
## 1365 1152004.7 2778276
## 1367 1152004.7 2778276
## 1368 1152004.7 2778276
## 1369 1152004.7 2778276
## 1370 1152004.7 2778276
## 1371 1152004.7 2778276
## 1372 1152004.7 2778276
## 1375 1152004.7 2778276
## 1545  949670.6 3290885
## 1546  949670.6 3290885
## 1547  949670.6 3290885
## 1549  949670.6 3290885
## 1550  949670.6 3290885
## 1552  949670.6 3290885
## 1553  949670.6 3290885
## 1554  949670.6 3290885
## 1555  949670.6 3290885
## 1556  949670.6 3290885
## 1557  949670.6 3290885
## 1558  949670.6 3290885
## 1559  949670.6 3290885
## 1560  949670.6 3290885
## 1562  949670.6 3290885
## 1563  949670.6 3290885
## 1565  949670.6 3290885
## 1566  949670.6 3290885
## 1567  949670.6 3290885
## 1568  949670.6 3290885
## 1569  949670.6 3290885
## 1571  949670.6 3290885
## 1572  949670.6 3290885
## 1573  949670.6 3290885
## 1574  949670.6 3290885
## 1575  949670.6 3290885
## 1576  949670.6 3290885
## 1577  949670.6 3290885
## 1578  949670.6 3290885
## 1579  949670.6 3290885
## 1580  949670.6 3290885
## 1581  949670.6 3290885
## 1582  949670.6 3290885
## 1583  949670.6 3290885
## 1584  949670.6 3290885
## 1585  949670.6 3290885
## 1586  949670.6 3290885
## 1587  949670.6 3290885
## 1589  949670.6 3290885
## 1590  949670.6 3290885
## 1591  949670.6 3290885
## 1592  949670.6 3290885
## 1593  949670.6 3290885
## 1594  949670.6 3290885
## 1595  949670.6 3290885
## 1596  949670.6 3290885
## 1597  949670.6 3290885
## 1598  949670.6 3290885
## 1599  949670.6 3290885
## 1600  949670.6 3290885
## 1601  949670.6 3290885
## 1602  949670.6 3290885
## 1603  949670.6 3290885
## 1605 1153133.5 2885502
## 1607 1153133.5 2885502
## 1608 1153133.5 2885502
## 1610 1153133.5 2885502
## 1611 1153133.5 2885502
## 1612 1153133.5 2885502
## 1613 1153133.5 2885502
## 1614 1153133.5 2885502
## 1615 1153133.5 2885502
## 1616 1153133.5 2885502
## 1617 1153133.5 2885502
## 1618 1153133.5 2885502
## 1620 1153133.5 2885502
## 1621 1153133.5 2885502
## 1622 1153133.5 2885502
## 1624 1153133.5 2885502
## 1625 1153133.5 2885502
## 1626 1153133.5 2885502
## 1627 1153133.5 2885502
## 1628 1153133.5 2885502
## 1629 1153133.5 2885502
## 1630 1153133.5 2885502
## 1631 1153133.5 2885502
## 1632 1153133.5 2885502
## 1634 1153133.5 2885502
## 1635 1153133.5 2885502
## 1636 1153133.5 2885502
## 1641 1153133.5 2885502
## 1642 1153133.5 2885502
## 1643 1153133.5 2885502
## 1644 1153133.5 2885502
## 1645 1153133.5 2885502
## 1646 1153133.5 2885502
## 1647 1153133.5 2885502
## 1648 1153133.5 2885502
## 1651 1153133.5 2885502
## 1652 1153133.5 2885502
## 1654 1153133.5 2885502
## 1655 1153133.5 2885502
## 1656 1153133.5 2885502
## 1657 1153133.5 2885502
## 1658 1153133.5 2885502
## 1659 1153133.5 2885502
## 1660 1153133.5 2885502
## 1661 1153133.5 2885502
## 1662 1153133.5 2885502
## 1663 1153133.5 2885502
## 1664 1153133.5 2885502
## 1665 1153133.5 2885502
## 1666 1153133.5 2885502
## 1667 1153133.5 2885502
## 1668 1153133.5 2885502
## 1669 1153133.5 2885502
## 1670 1153133.5 2885502
## 1671 1153133.5 2885502
## 1672 1153133.5 2885502
## 1673 1153133.5 2885502
## 1674 1153133.5 2885502
## 1675 1153133.5 2885502
## 1676 1153133.5 2885502
## 1677 1153133.5 2885502
## 1678 1153133.5 2885502
## 1679 1153133.5 2885502
## 1680 1153133.5 2885502
## 1681 1153133.5 2885502
## 1682 1153133.5 2885502
## 1683 1153133.5 2885502
## 1684 1153133.5 2885502
## 1685 1153133.5 2885502
## 1686 1153133.5 2885502
## 1687 1153133.5 2885502
## 1688 1153133.5 2885502
## 1689 1153133.5 2885502
## 1690 1153133.5 2885502
## 1691 1153133.5 2885502
## 1692 1153133.5 2885502
## 1693 1153133.5 2885502
## 1694 1153133.5 2885502
## 1695 1153133.5 2885502
## 1696 1153133.5 2885502
## 1697 1153133.5 2885502
## 1698 1153133.5 2885502
## 1699 1153133.5 2885502
## 1700 1153133.5 2885502
## 1701 1153133.5 2885502
## 1702 1153133.5 2885502
## 1703 1153133.5 2885502
## 1704 1153133.5 2885502
## 1705 1153133.5 2885502
## 1706 1153133.5 2885502
## 1707 1153133.5 2885502
## 1708 1153133.5 2885502
## 1709 1153133.5 2885502
## 1710 1153133.5 2885502
## 1711 1153133.5 2885502
## 1712 1153133.5 2885502
## 1713 1153133.5 2885502
## 1714 1153133.5 2885502
## 1715 1153133.5 2885502
## 1716 1153133.5 2885502
## 1717 1153133.5 2885502
## 1718 1153133.5 2885502
## 1719 1153133.5 2885502
## 1720 1153133.5 2885502
## 1721 1153133.5 2885502
## 1722 1153133.5 2885502
## 1723 1153133.5 2885502
## 1724 1153133.5 2885502
## 1725 1153133.5 2885502
## 1726 1153133.5 2885502
## 1727 1153133.5 2885502
## 1728 1153133.5 2885502
## 1729 1153133.5 2885502
## 1730 1153133.5 2885502
## 1731 1153133.5 2885502
## 1732 1153133.5 2885502
## 1733 1153133.5 2885502
## 1734 1165445.0 2795436
## 1735 1165445.0 2795436
## 1736 1165445.0 2795436
## 1738 1165445.0 2795436
## 1739 1165445.0 2795436
## 1740 1165445.0 2795436
## 1741 1165445.0 2795436
## 1742 1165445.0 2795436
## 1743 1165445.0 2795436
## 1744 1165445.0 2795436
## 1746 1165445.0 2795436
## 1747 1165445.0 2795436
## 1748 1165445.0 2795436
## 1749 1165445.0 2795436
## 1750 1165445.0 2795436
## 1751 1165442.5 2795425
## 1752 1165442.5 2795425
## 1753 1165442.5 2795425
## 1754 1165442.5 2795425
## 1755 1165442.5 2795425
## 1758 1165442.5 2795425
## 1759 1165442.5 2795425
## 1760 1165442.5 2795425
## 1761 1165442.5 2795425
## 1762 1165442.5 2795425
## 1763 1165442.5 2795425
## 1764 1165442.5 2795425
## 1765 1165442.5 2795425
## 1766 1165442.5 2795425
## 1768 1165442.5 2795425
## 1769 1165438.4 2795489
## 1770 1165438.4 2795489
## 1771 1165438.4 2795489
## 1772 1165438.4 2795489
## 1774 1165438.4 2795489
## 1775 1165438.4 2795489
## 1776 1165438.4 2795489
## 1779 1165438.4 2795489
## 1780 1165438.4 2795489
## 1782 1165438.4 2795489
## 1785 1165438.4 2795489
## 1786 1165438.4 2795489
## 1788 1165438.4 2795489
## 1789 1165438.4 2795489
## 1790 1165438.4 2795489
## 1791 1165438.4 2795489
## 1793 1165438.4 2795489
## 1800 1165438.4 2795489
## 1802 1165438.4 2795489
## 1805 1165438.4 2795489
## 1806 1174719.0 2810252
## 1807 1174719.0 2810252
## 1808 1174719.0 2810252
## 1809 1174719.0 2810252
## 1810 1174719.0 2810252
## 1811 1174719.0 2810252
## 1812 1174719.0 2810252
## 1813 1174719.0 2810252
## 1814 1174719.0 2810252
## 1815 1174719.0 2810252
## 1816 1174719.0 2810252
## 1817 1174719.0 2810252
## 1819 1174719.0 2810252
## 1821 1174719.0 2810252
## 1822 1174719.0 2810252
## 1823 1174719.0 2810252
## 1824 1174719.0 2810252
## 1826 1034256.3 3101957
## 1827 1034256.3 3101957
## 1828 1034256.3 3101957
## 1829 1034256.3 3101957
## 1831 1034256.3 3101957
## 1832 1034256.3 3101957
## 1833 1034256.3 3101957
## 1834 1034256.3 3101957
## 1835 1034256.3 3101957
## 1836 1034256.3 3101957
## 1837 1034256.3 3101957
## 1838 1034256.3 3101957
## 1839 1034256.3 3101957
## 1840 1034256.3 3101957
## 1842 1034256.3 3101957
## 1844 1034256.3 3101957
## 1845 1034256.3 3101957
## 1846 1034256.3 3101957
## 1847 1034256.3 3101957
## 1848 1034256.3 3101957
## 1849 1034256.3 3101957
## 1850 1034256.3 3101957
## 1852 1034256.3 3101957
## 1853 1034256.3 3101957
## 1854 1034256.3 3101957
## 1855 1034256.3 3101957
## 1856 1034256.3 3101957
## 1857 1034256.3 3101957
## 1858 1034256.4 3101957
## 1859 1034256.4 3101957
## 1862 1034256.4 3101957
## 1863 1034256.4 3101957
## 1864 1034256.4 3101957
## 1867 1034256.4 3101957
## 1868 1034256.4 3101957
## 1871 1034256.4 3101957
## 1874 1034256.4 3101957
## 1876 1034256.4 3101957
## 1878 1034256.4 3101957
## 1879 1034256.4 3101957
## 1881 1034256.4 3101957
## 1882 1034256.4 3101957
## 1884 1034256.4 3101957
## 1885 1034256.4 3101957
## 1887 1034256.4 3101957
## 1892 1034256.4 3101957
## 1894 1034256.4 3101957
## 1895 1034256.4 3101957
## 1896 1034256.4 3101957
## 1897 1034256.4 3101957
## 1898 1034256.4 3101957
## 1901 1034256.4 3101957
## 1905 1034256.4 3101957
## 1907 1034256.4 3101957
## 1912 1034256.4 3101957
## 1914 1034256.4 3101957
## 1915 1034256.4 3101957
## 1917  999797.9 3197189
## 1918  999797.9 3197189
## 1922  999797.9 3197189
## 1923  999797.9 3197189
## 1924  999797.9 3197189
## 1925  999797.9 3197189
## 1927  999797.9 3197189
## 1928  999797.9 3197189
## 1929  999797.9 3197189
## 1930  999797.9 3197189
## 1933  999797.9 3197189
## 1935  999797.9 3197189
## 1936  999797.9 3197189
## 1937  999797.9 3197189
## 1938  999797.9 3197189
## 1939  999797.9 3197189
## 1941  999797.9 3197189
## 1942  999797.9 3197189
## 1944  999797.9 3197189
## 1945  999797.9 3197189
## 1946  999797.9 3197189
## 1947  999797.9 3197189
## 1948  999797.9 3197189
## 1949  999797.9 3197189
## 1952  999797.9 3197189
## 1953  999797.9 3197189
## 1955  999797.9 3197189
## 1956  999797.9 3197189
## 1958  999797.9 3197189
## 1959  999797.9 3197189
## 1960  999797.9 3197189
## 1963  999797.9 3197189
## 1964  999797.9 3197189
## 1965  999797.9 3197189
## 1973  999797.9 3197189
## 1975  949529.7 3290857
## 1976  949529.7 3290857
## 1977  949529.7 3290857
## 1978  949529.7 3290857
## 1979  949529.7 3290857
## 1980  949529.7 3290857
## 1981  949529.7 3290857
## 1982  949529.7 3290857
## 1983  949529.7 3290857
## 1984  949529.7 3290857
## 1985  949529.7 3290857
## 1986  949529.7 3290857
## 1987  949529.7 3290857
## 1988  949529.7 3290857
## 1989  949529.7 3290857
## 1990  949529.7 3290857
## 1992  949529.7 3290857
## 1993  949529.7 3290857
## 1994  949529.7 3290857
## 1995  949529.7 3290857
## 1996  949529.7 3290857
## 1997  949529.7 3290857
## 1998  949529.7 3290857
## 1999  949529.7 3290857
## 2000  949529.7 3290857
## 2001  949529.7 3290857
## 2002  949529.7 3290857
## 2003  949529.7 3290857
## 2004  949529.7 3290857
## 2005  949529.7 3290857
## 2006  949529.7 3290857
## 2007  949529.7 3290857
## 2008  949529.7 3290857
## 2009  949529.7 3290857
## 2010  949529.7 3290857
## 2011  949529.7 3290857
## 2012  949529.7 3290857
## 2013  949529.7 3290857
## 2014  949529.7 3290857
## 2015  949529.7 3290857
## 2016  949529.7 3290857
## 2017  949529.7 3290857
## 2018  949529.7 3290857
## 2019  949529.7 3290857
## 2020  949529.7 3290857
## 2021  949529.7 3290857
## 2022  949529.7 3290857
## 2023  949529.7 3290857
## 2024  949529.7 3290857
## 2025  949529.7 3290857
## 2026  949529.7 3290857
## 2027  949529.7 3290857
## 2028  949529.7 3290857
## 2029  949529.7 3290857
## 2031  949529.7 3290857
## 2032  949529.7 3290857
## 2033  949529.7 3290857
## 2034  949529.7 3290857
## 2036  949529.7 3290857
## 2037  949529.7 3290857
## 2038  949529.7 3290857
## 2039 1171362.4 2803177
## 2040 1171362.4 2803177
## 2041 1171362.4 2803177
## 2042 1171362.4 2803177
## 2047 1171362.4 2803177
## 2050 1171362.4 2803177
## 2053 1171362.4 2803177
## 2055 1171362.4 2803177
## 2057 1171362.4 2803177
## 2058 1171362.4 2803177
## 2059 1171362.4 2803177
## 2062 1171362.4 2803177
## 2064 1171362.4 2803177
## 2065 1171362.4 2803177
## 2069 1171362.4 2803177
## 2071 1171362.4 2803177
## 2072 1171362.4 2803177
## 2073 1171362.4 2803177
## 2079 1171362.4 2803177
## 2081 1171362.4 2803177
## 2082 1171362.4 2803177
## 2083 1171362.4 2803177
## 2085 1171362.4 2803177
## 2086 1171362.4 2803177
## 2087 1171362.4 2803177
## 2088 1171362.4 2803177
## 2091 1171362.4 2803177
## 2094 1171362.4 2803177
## 2095 1171362.4 2803177
## 2097 1171362.4 2803177
## 2099 1171362.4 2803177
## 2101 1171362.4 2803177
## 2103 1171362.4 2803177
## 2107 1034253.2 3101959
## 2108 1034253.2 3101959
## 2109 1034253.2 3101959
## 2110 1034253.2 3101959
## 2111 1034253.2 3101959
## 2112 1034253.2 3101959
## 2113 1034253.2 3101959
## 2115 1034253.2 3101959
## 2116 1034253.2 3101959
## 2117 1034253.2 3101959
## 2118 1034253.2 3101959
## 2119 1034253.2 3101959
## 2120 1034253.2 3101959
## 2121 1034253.2 3101959
## 2122 1034253.2 3101959
## 2123 1034253.2 3101959
## 2124 1034253.2 3101959
## 2125 1034253.2 3101959
## 2126 1034253.2 3101959
## 2127 1034253.2 3101959
## 2128 1034253.2 3101959
## 2129 1034253.2 3101959
## 2130 1034253.2 3101959
## 2131 1034253.2 3101959
## 2133 1034253.2 3101959
## 2134 1034253.2 3101959
## 2136 1034253.2 3101959
## 2137 1034253.2 3101959
## 2138 1034253.2 3101959
## 2139 1034253.2 3101959
## 2140 1034253.2 3101959
## 2141 1034253.2 3101959
## 2142 1034253.2 3101959
## 2143 1034253.2 3101959
## 2144 1034253.2 3101959
## 2145 1034253.2 3101959
## 2146 1034253.2 3101959
## 2147  999718.1 3198295
## 2148  949488.6 3290890
## 2149  949488.6 3290890
## 2150  949488.6 3290890
## 2151  949488.6 3290890
## 2152  949488.6 3290890
## 2154  949488.6 3290890
## 2155  949488.6 3290890
## 2156  949488.6 3290890
## 2157  950511.0 3290395
## 2158  950511.0 3290395
## 2159  950511.0 3290395
## 2160  950511.0 3290395
## 2161  950511.0 3290395
## 2162  950511.0 3290395
## 2163  950511.0 3290395
## 2164  950511.0 3290395
## 2165  950511.0 3290395
## 2166  950511.0 3290395
## 2168  950511.0 3290395
## 2169  950511.0 3290395
## 2170  950511.0 3290395
## 2171  950511.0 3290395
## 2172  950511.0 3290395
## 2173  950511.0 3290395
## 2174  950511.0 3290395
## 2175  950511.0 3290395
## 2176  950511.0 3290395
## 2177  950511.0 3290395
## 2178  950511.0 3290395
## 2179  950511.0 3290395
## 2180  950511.0 3290395
## 2181  950511.0 3290395
## 2182  950511.0 3290395
## 2183  950511.0 3290395
## 2184  950511.0 3290395
## 2185  950511.0 3290395
## 2186  950511.0 3290395
## 2187  950511.0 3290395
## 2188  950511.0 3290395
## 2189  950511.0 3290395
## 2190  950511.0 3290395
## 2191  950511.0 3290395
## 2192  950511.0 3290395
## 2193  950511.0 3290395
## 2194  950511.0 3290395
## 2195  950511.0 3290395
## 2196  950511.0 3290395
## 2198 1155217.9 2835119
## 2199 1155217.9 2835119
## 2200 1155217.9 2835119
## 2201 1155217.9 2835119
## 2202 1155217.9 2835119
## 2204 1155217.9 2835119
## 2212 1155217.9 2835119
## 2213 1155217.9 2835119
## 2218 1165494.9 2795481
## 2219 1165494.9 2795481
## 2220 1165494.9 2795481
## 2221 1165494.9 2795481
## 2228 1165494.9 2795481
## 2232 1165494.9 2795481
## 2233 1165494.9 2795481
## 2234 1165494.9 2795481
## 2235 1165494.9 2795481
## 2237 1165494.9 2795481
## 2238 1165494.9 2795481
## 2240 1165494.9 2795481
## 2245 1165494.9 2795481
## 2247 1165494.9 2795481
## 2251 1165494.9 2795481
## 2256 1165494.9 2795481
## 2261 1165494.9 2795481
## 2262 1165494.9 2795481
## 2263 1165494.9 2795481
## 2266 1165494.9 2795481
## 2268 1165494.9 2795481
## 2270 1165494.9 2795481
## 2274 1165494.9 2795481
## 2282 1165494.9 2795481
## 2285 1165494.9 2795481
## 2288 1165494.9 2795481
## 2291 1058006.9 3032124
## 2292 1058006.9 3032124
## 2293 1058006.9 3032124
## 2294 1058006.9 3032124
## 2295 1058006.9 3032124
## 2296 1058006.9 3032124
## 2297 1058006.9 3032124
## 2298 1058006.9 3032124
## 2300 1058006.9 3032124
## 2302 1058006.9 3032124
## 2305 1058006.9 3032124
## 2306 1058006.9 3032124
## 2308 1058006.9 3032124
## 2310 1058006.9 3032124
## 2312 1058006.9 3032124
## 2313 1058006.9 3032124
## 2314 1058006.9 3032124
## 2315 1058006.9 3032124
## 2316 1058006.9 3032124
## 2317 1058006.9 3032124
## 2318 1058006.9 3032124
## 2319 1058006.9 3032124
## 2320 1058006.9 3032124
## 2321 1058006.9 3032124
## 2322 1058006.9 3032124
## 2323 1058006.9 3032124
## 2324 1058006.9 3032124
## 2325 1058006.9 3032124
## 2326 1058006.9 3032124
## 2327 1058006.9 3032124
## 2328 1058006.9 3032124
## 2329 1058006.9 3032124
## 2330 1058006.9 3032124
## 2331 1058006.9 3032124
## 2332 1058006.9 3032124
## 2333 1058006.9 3032124
## 2334 1058006.9 3032124
## 2335 1058006.9 3032124
## 2337 1058006.9 3032124
## 2338 1058006.9 3032124
## 2340 1058006.9 3032124
## 2342 1058006.9 3032124
## 2343 1058006.9 3032124
## 2344 1058006.9 3032124
## 2345 1058006.9 3032124
## 2346 1058006.9 3032124
## 2347 1058006.9 3032124
## 2348 1058006.9 3032124
## 2349 1058006.9 3032124
## 2350 1058006.9 3032124
## 2351 1058006.9 3032124
## 2352 1058006.9 3032124
## 2353 1058006.9 3032124
## 2354 1172906.5 2806951
## 2355 1172906.5 2806951
## 2356 1172906.5 2806951
## 2357 1172906.5 2806951
## 2359 1172906.5 2806951
## 2361 1172906.5 2806951
## 2362 1172906.5 2806951
## 2363 1172906.5 2806951
## 2365 1172906.5 2806951
## 2366 1172906.5 2806951
## 2367 1172906.5 2806951
## 2368 1172906.5 2806951
## 2370 1172906.5 2806951
## 2371 1172906.5 2806951
## 2372 1172906.5 2806951
## 2373 1172906.5 2806951
## 2374 1172906.5 2806951
## 2376 1172906.5 2806951
## 2379 1172906.5 2806951
## 2381 1172906.5 2806951
## 2383 1172906.5 2806951
## 2386 1172906.5 2806951
## 2387 1172906.5 2806951
## 2388 1172906.5 2806951
## 2389 1172906.5 2806951
## 2390 1172906.5 2806951
## 2391 1172906.5 2806951
## 2392 1172906.5 2806951
## 2394 1172906.5 2806951
## 2395 1172906.5 2806951
## 2398 1171368.7 2803168
## 2399 1171368.7 2803168
## 2400 1171368.7 2803168
## 2401 1171368.7 2803168
## 2403 1171368.7 2803168
## 2404 1171368.7 2803168
## 2406 1171368.7 2803168
## 2408 1171368.7 2803168
## 2409 1171368.7 2803168
## 2410 1171368.7 2803168
## 2417 1171368.7 2803168
## 2418 1171368.7 2803168
## 2420 1171368.7 2803168
## 2421 1171368.7 2803168
## 2422 1171368.7 2803168
## 2423 1171368.7 2803168
## 2425 1171368.7 2803168
## 2428 1171368.7 2803168
## 2429 1171368.7 2803168
## 2431 1171368.7 2803168
## 2432 1171368.7 2803168
## 2434 1171368.7 2803168
## 2436 1171368.7 2803168
## 2439 1171368.7 2803168
## 2440 1171368.7 2803168
## 2441 1171368.7 2803168
## 2447 1171368.7 2803168
## 2452 1171368.7 2803168
## 2456 1169637.0 2801684
## 2457 1169637.0 2801684
## 2459 1169637.0 2801684
## 2466 1169257.2 2800908
## 2469 1169257.2 2800908
## 2470 1169257.2 2800908
## 2472 1169257.2 2800908
## 2473 1169257.2 2800908
## 2476 1169257.2 2800908
## 2477 1169257.2 2800908
## 2478 1169257.2 2800908
## 2479 1169257.2 2800908
## 2480 1169257.2 2800908
## 2482 1169257.2 2800908
## 2484 1169257.2 2800908
## 2487 1169257.2 2800908
## 2496 1169257.2 2800908
## 2497 1169257.2 2800908
## 2498 1169257.2 2800908
## 2499 1169257.2 2800908
## 2501 1169257.2 2800908
## 2502 1169257.2 2800908
## 2503 1169257.2 2800908
## 2504 1169257.2 2800908
## 2505 1169257.2 2800908
## 2507 1169257.2 2800908
## 2510 1169257.2 2800908
## 2512 1169257.2 2800908
## 2514 1169257.2 2800908
## 2518 1169257.2 2800908
## 2519 1169257.2 2800908
## 2521 1169257.2 2800908
## 2523 1169257.2 2800908
## 2524 1169257.2 2800908
## 2525 1169257.2 2800908
## 2526 1169257.2 2800908
## 2527 1169257.2 2800908
## 2530 1169257.2 2800908
## 2535 1169257.2 2800908
## 2537 1169257.2 2800908
## 2541 1169257.2 2800908
## 2543 1169257.2 2800908
## 2544 1169257.2 2800908
## 2545 1169257.2 2800908
## 2546 1169257.2 2800908
## 2549 1169257.2 2800908
## 2554 1169257.2 2800908
## 2561 1169257.2 2800908
## 2566 1175142.2 2812129
## 2567 1175142.2 2812129
## 2568 1175142.2 2812129
## 2569 1175142.2 2812129
## 2570 1175142.2 2812129
## 2572 1175142.2 2812129
## 2573 1175142.2 2812129
## 2574 1175142.2 2812129
## 2575 1175142.2 2812129
## 2576 1175142.2 2812129
## 2577 1175142.2 2812129
## 2578 1175142.2 2812129
## 2579 1175142.2 2812129
## 2580 1175142.2 2812129
## 2581 1175142.2 2812129
## 2582 1175142.2 2812129
## 2584 1175142.2 2812129
## 2585 1175142.2 2812129
## 2586 1175142.2 2812129
## 2587 1175142.2 2812129
## 2588 1175142.2 2812129
## 2590 1175142.2 2812129
## 2591 1175142.2 2812129
## 2592 1175142.2 2812129
## 2593 1175142.2 2812129
## 2595 1175142.2 2812129
## 2596 1176436.8 2813626
## 2597 1176436.8 2813626
## 2598 1176436.8 2813626
## 2600 1176436.8 2813626
## 2604 1150184.3 2776463
## 2606 1150184.3 2776463
## 2607 1150184.3 2776463
## 2608 1150184.3 2776463
## 2614 1150184.3 2776463
## 2622 1150184.3 2776463
## 2624 1150184.3 2776463
## 2625 1150184.3 2776463
## 2628 1150184.3 2776463
## 2629 1150184.3 2776463
## 2634 1150184.3 2776463
## 2637  950518.7 3290379
## 2638  950518.7 3290379
## 2639  950518.7 3290379
## 2640  950518.7 3290379
## 2641  950518.7 3290379
## 2645  950518.7 3290379
## 2647  950518.7 3290379
## 2651  950518.7 3290379
## 2652  950518.7 3290379
## 2653 1155617.4 2835511
## 2654 1155617.4 2835511
## 2655 1155617.4 2835511
## 2656 1155617.4 2835511
## 2657 1155617.4 2835511
## 2658 1155617.4 2835511
## 2659 1155617.4 2835511
## 2660 1155617.4 2835511
## 2661 1155617.4 2835511
## 2662 1155617.4 2835511
## 2663 1155617.4 2835511
## 2664 1155617.4 2835511
## 2665 1155617.4 2835511
## 2666 1155617.4 2835511
## 2667 1155617.4 2835511
## 2669 1155617.4 2835511
## 2670 1155617.4 2835511
## 2671 1155617.4 2835511
## 2672 1155617.4 2835511
## 2673 1155617.4 2835511
## 2674 1155617.4 2835511
## 2675 1155617.4 2835511
## 2676 1155617.4 2835511
## 2677 1155617.4 2835511
## 2678 1155617.4 2835511
## 2679 1155617.4 2835511
## 2683 1155617.4 2835511
## 2684 1155617.4 2835511
## 2685 1155617.4 2835511
## 2686 1155617.4 2835511
## 2687 1155617.4 2835511
## 2693 1165438.4 2795489
## 2695 1165438.4 2795489
## 2697 1165438.4 2795489
## 2698 1165438.4 2795489
## 2701 1165438.4 2795489
## 2704 1058006.9 3032124
## 2705 1058006.9 3032124
## 2706 1058006.9 3032124
## 2707 1058006.9 3032124
## 2709 1058006.9 3032124
## 2710 1058006.9 3032124
## 2711 1058006.9 3032124
## 2712 1058006.9 3032124
## 2713 1058006.9 3032124
## 2716 1058006.9 3032124
## 2717 1058006.9 3032124
## 2718 1058006.9 3032124
## 2719 1058006.9 3032124
## 2720 1058006.9 3032124
## 2721 1058006.9 3032124
## 2722 1058006.9 3032124
## 2723 1058006.9 3032124
## 2724 1058006.9 3032124
## 2725 1058006.9 3032124
## 2726 1058006.9 3032124
## 2727 1058006.9 3032124
## 2728 1058006.9 3032124
## 2730 1058006.9 3032124
## 2731 1058006.9 3032124
## 2733 1058006.9 3032124
## 2734 1058006.9 3032124
## 2735 1058006.9 3032124
## 2736 1058006.9 3032124
## 2737 1058006.9 3032124
## 2738 1058006.9 3032124
## 2739 1058006.9 3032124
## 2740 1058006.9 3032124
## 2741 1058006.9 3032124
## 2742 1058006.9 3032124
## 2743 1058006.9 3032124
## 2744 1058006.9 3032124
## 2745 1058006.9 3032124
## 2747 1032899.7 3098293
## 2748 1032899.7 3098293
## 2749 1032899.7 3098293
## 2752 1032899.7 3098293
## 2754 1032899.7 3098293
## 2756 1032899.7 3098293
## 2757 1032899.7 3098293
## 2758 1032899.7 3098293
## 2759 1032899.7 3098293
## 2760 1032899.7 3098293
## 2761 1032899.7 3098293
## 2763 1032899.7 3098293
## 2764 1032899.7 3098293
## 2765 1032899.7 3098293
## 2767 1032899.7 3098293
## 2768 1032899.7 3098293
## 2769 1032899.7 3098293
## 2772 1000147.1 3198059
## 2773 1000147.1 3198059
## 2774 1000147.1 3198059
## 2777 1000147.1 3198059
## 2779 1000147.1 3198059
## 2780 1000147.1 3198059
## 2781 1000147.1 3198059
## 2782 1000147.1 3198059
## 2784  999718.1 3198295
## 2785  999718.1 3198295
## 2786  999718.1 3198295
## 2787  999718.1 3198295
## 2788  999718.1 3198295
## 2789  999718.1 3198295
## 2791  999718.1 3198295
## 2792  999718.1 3198295
## 2794  999718.1 3198295
## 2795  999718.1 3198295
## 2797  999718.1 3198295
## 2798 1169257.2 2800908
## 2799 1169257.2 2800908
## 2800 1169257.2 2800908
## 2801 1169257.2 2800908
## 2802 1169257.2 2800908
## 2806 1168891.6 2800688
## 2807 1168891.6 2800688
## 2808 1168891.6 2800688
## 2810 1168891.6 2800688
## 2812 1169637.0 2801684
## 2813 1169637.0 2801684
## 2816 1169637.0 2801684
## 2820 1169637.0 2801684
## 2823 1169637.0 2801684
## 2826 1169637.0 2801684
## 2830 1169637.0 2801684
## 2831 1174589.1 2810201
## 2833 1174589.1 2810201
## 2834 1174589.1 2810201
## 2835 1174589.1 2810201
## 2836 1174589.1 2810201
## 2837 1174589.1 2810201
## 2839 1175142.2 2812129
## 2841 1175142.2 2812129
## 2842 1174494.4 2809791
## 2844 1174494.4 2809791
## 2845 1176436.8 2813626
## 2847 1176436.8 2813626
## 2848 1176436.8 2813626
## 2850 1176436.8 2813626
## 2851 1176436.8 2813626
## 2853 1176436.8 2813626
## 2854 1176436.8 2813626
## 2855 1176436.8 2813626
## 2856 1176436.8 2813626
## 2859 1176436.8 2813626
## 2860 1176436.8 2813626
## 2862 1176436.8 2813626
## 2863 1176436.8 2813626
## 2864 1176436.8 2813626
## 2868 1176436.8 2813626
## 2869 1176436.8 2813626
## 2871 1176436.8 2813626
## 2878 1171365.6 2803203
## 2884 1152131.0 2778862
## 2886 1152131.0 2778862
## 2887 1152131.0 2778862
## 2891 1152131.0 2778862
## 2892 1152131.0 2778862
## 2893 1152131.0 2778862
## 2895 1152131.0 2778862
## 2896 1152131.0 2778862
## 2897  950508.0 3290398
## 2899  950508.0 3290398
## 2900  950508.0 3290398
## 2901  950508.0 3290398
## 2904  950508.0 3290398
## 2905  950508.0 3290398
## 2906  950508.0 3290398
## 2907  950508.0 3290398
## 2908  950508.0 3290398
## 2911  950508.0 3290398
## 2912  950508.0 3290398
## 2914  950508.0 3290401
## 2917  950508.0 3290401
## 2919  950508.0 3290401
## 2921  950508.0 3290401
## 2923  950508.0 3290401
## 2929  950508.0 3290401
## 2930  950508.0 3290401
## 2931  950508.0 3290401
## 2932  950508.0 3290401
## 2933 1155600.4 2835443
## 2934 1155600.4 2835443
## 2935 1155600.4 2835443
## 2936 1155600.4 2835443
## 2937 1155600.4 2835443
## 2939 1155600.4 2835443
## 2940 1155600.4 2835443
## 2944 1155600.4 2835443
## 2945 1155600.4 2835443
## 2947 1155600.4 2835443
## 2948 1155600.4 2835443
## 2949 1155600.4 2835443
## 2950 1155600.4 2835443
## 2951 1155600.4 2835443
## 2952 1155600.4 2835443
## 2953 1155600.4 2835443
## 2954 1155600.4 2835443
## 2955 1155600.4 2835443
## 2956 1155600.4 2835443
## 2957 1155600.4 2835443
## 2958 1155600.4 2835443
## 2959 1155600.4 2835443
## 2960 1155600.4 2835443
## 2964 1155600.4 2835443
## 2965 1155600.4 2835443
## 2970 1155600.4 2835443
## 2971 1155600.4 2835443
## 2972 1155600.4 2835443
## 2973 1155600.4 2835443
## 2974 1155600.4 2835443
## 2975 1162614.0 2792167
## 2976 1162614.0 2792167
## 2978 1162614.0 2792167
## 2979 1165438.9 2795475
## 2980 1165438.9 2795475
## 2981 1165438.9 2795475
## 2982 1165438.9 2795475
## 2983 1165438.9 2795475
## 2984 1165438.9 2795475
## 2985 1162614.0 2792167
## 2986 1162614.0 2792167
## 2987 1162614.0 2792167
## 2988 1162614.0 2792167
## 2990 1165438.9 2795475
## 2991 1165438.9 2795475
## 2992 1165438.9 2795475
## 2994 1162614.0 2792167
## 2995 1162614.0 2792167
## 2997 1162614.0 2792167
## 2998 1162614.0 2792167
## 2999 1165438.9 2795475
## 3000 1165438.9 2795475
## 3001 1165438.9 2795475
## 3002 1165438.9 2795475
## 3004 1162614.0 2792167
## 3005 1162614.0 2792167
## 3006 1162614.0 2792167
## 3007 1162614.0 2792167
## 3009 1165438.9 2795475
## 3010 1165438.9 2795475
## 3011 1165438.9 2795475
## 3013 1162614.0 2792167
## 3014 1162614.0 2792167
## 3015 1162614.0 2792167
## 3016 1162614.0 2792167
## 3019 1165438.9 2795475
## 3020 1165438.9 2795475
## 3045 1165438.3 2795489
## 3050 1165438.3 2795489
## 3052 1165438.3 2795489
## 3053 1165438.3 2795489
## 3054 1058006.9 3032124
## 3055 1058006.9 3032124
## 3056 1058006.9 3032124
## 3057 1058006.9 3032124
## 3058 1058006.9 3032124
## 3059 1058006.9 3032124
## 3060 1058006.9 3032124
## 3061 1058006.9 3032124
## 3062 1058006.9 3032124
## 3063 1058006.9 3032124
## 3064 1058006.9 3032124
## 3066 1058006.9 3032124
## 3067 1058006.9 3032124
## 3068 1058006.9 3032124
## 3069 1058006.9 3032124
## 3070 1058006.9 3032124
## 3071 1058006.9 3032124
## 3072 1058006.9 3032124
## 3073 1058006.9 3032124
## 3074 1058006.9 3032124
## 3075 1058006.9 3032124
## 3076 1058006.9 3032124
## 3077 1058006.9 3032124
## 3078 1058006.9 3032124
## 3079 1058006.9 3032124
## 3080 1058006.9 3032124
## 3081 1058006.9 3032124
## 3082 1058006.9 3032124
## 3083 1058006.9 3032124
## 3084 1058006.9 3032124
## 3085 1058006.9 3032124
## 3086 1058006.9 3032124
## 3087 1058006.9 3032124
## 3088 1058006.9 3032124
## 3089 1058006.9 3032124
## 3090 1058006.9 3032124
## 3091 1058006.9 3032124
## 3092 1058006.9 3032124
## 3093 1058006.9 3032124
## 3094 1058006.9 3032124
## 3095 1058006.9 3032124
## 3096 1058006.9 3032124
## 3097 1033819.8 3097599
## 3098 1033819.8 3097599
## 3099 1033819.8 3097599
## 3100 1033819.8 3097599
## 3101 1033819.8 3097599
## 3102 1033819.8 3097599
## 3103 1033819.8 3097599
## 3105 1033819.8 3097599
## 3107 1033819.8 3097599
## 3108 1033819.8 3097599
## 3109 1033819.8 3097599
## 3110 1033819.8 3097599
## 3111 1033819.8 3097599
## 3112 1033819.8 3097599
## 3113 1033819.8 3097599
## 3115 1033819.8 3097599
## 3116 1033819.8 3097599
## 3117 1033819.8 3097599
## 3118 1033819.8 3097599
## 3119 1033819.8 3097599
## 3120 1033819.8 3097599
## 3121 1033819.8 3097599
## 3122 1033819.8 3097599
## 3123 1033819.8 3097599
## 3124 1033819.8 3097599
## 3125 1033819.8 3097599
## 3126 1033819.8 3097599
## 3127 1033819.8 3097599
## 3128 1033819.8 3097599
## 3129 1033819.8 3097599
## 3131 1033819.8 3097599
## 3132 1033819.8 3097599
## 3133 1033819.8 3097599
## 3134 1033819.8 3097599
## 3135 1033819.8 3097599
## 3136 1033819.8 3097599
## 3137 1033819.8 3097599
## 3138 1033819.8 3097599
## 3139 1033819.8 3097599
## 3140 1033819.8 3097599
## 3141 1033819.8 3097599
## 3142 1033819.8 3097599
## 3143 1033819.8 3097599
## 3144 1033819.8 3097599
## 3145 1033819.8 3097599
## 3146 1033819.8 3097599
## 3147 1000227.9 3196212
## 3148 1000227.9 3196212
## 3149 1000227.9 3196212
## 3150 1000227.9 3196212
## 3151 1000227.9 3196212
## 3152 1000227.9 3196212
## 3153 1000227.9 3196212
## 3154 1000227.9 3196212
## 3155 1000227.9 3196212
## 3157 1000227.9 3196212
## 3158 1000227.9 3196212
## 3159 1000227.9 3196212
## 3160 1000227.9 3196212
## 3162 1000227.9 3196212
## 3164 1000227.9 3196212
## 3165 1000227.9 3196212
## 3167 1000227.9 3196212
## 3168 1000227.9 3196212
## 3169 1000227.9 3196212
## 3170 1000227.9 3196212
## 3171 1000227.9 3196212
## 3172 1000227.9 3196212
## 3175 1000227.9 3196212
## 3176 1000227.9 3196212
## 3177 1175161.2 2812126
## 3178 1175161.2 2812126
## 3180 1175161.2 2812126
## 3181 1175161.2 2812126
## 3182 1171365.6 2803203
## 3183 1171365.6 2803203
## 3185 1171365.6 2803203
## 3186 1171365.6 2803203
## 3187 1174577.1 2810210
## 3189 1174577.1 2810210
## 3190 1174577.1 2810210
## 3191 1174577.1 2810210
## 3192 1169258.9 2800915
## 3193 1169258.9 2800915
## 3194 1169258.9 2800915
## 3196 1176431.5 2813653
## 3197 1176431.5 2813653
## 3198 1176431.5 2813653
## 3199 1172960.7 2806891
## 3200 1172960.7 2806891
## 3201 1172960.7 2806891
## 3202 1172960.7 2806891
## 3203 1172960.7 2806891
## 3205 1169689.2 2801664
## 3206 1169689.2 2801664
## 3207 1169689.2 2801664
## 3209 1174577.1 2810210
## 3210 1174577.1 2810210
## 3211 1175161.2 2812126
## 3212 1175161.2 2812126
## 3213 1175161.2 2812126
## 3214 1175161.2 2812126
## 3215 1169258.9 2800915
## 3216 1169258.9 2800915
## 3218 1169258.9 2800915
## 3219 1169258.9 2800915
## 3220 1172960.7 2806891
## 3221 1172960.7 2806891
## 3222 1172960.7 2806891
## 3223 1172960.7 2806891
## 3224 1172960.7 2806891
## 3226 1176431.5 2813653
## 3227 1176431.5 2813653
## 3229 1175161.2 2812126
## 3230 1175161.2 2812126
## 3231 1175161.2 2812126
## 3232 1175161.2 2812126
## 3234 1171365.6 2803203
## 3235 1171365.6 2803203
## 3236 1171365.6 2803203
## 3237 1171365.6 2803203
## 3238 1174577.1 2810210
## 3239 1174577.1 2810210
## 3240 1174577.1 2810210
## 3241 1174577.1 2810210
## 3242 1174577.1 2810210
## 3243 1169258.9 2800915
## 3244 1169258.9 2800915
## 3246 1169258.9 2800915
## 3247 1169258.9 2800915
## 3248 1172960.7 2806891
## 3249 1172960.7 2806891
## 3250 1172960.7 2806891
## 3251 1169689.2 2801664
## 3252 1169689.2 2801664
## 3253 1169689.2 2801664
## 3254 1169689.2 2801664
## 3255 1169689.2 2801664
## 3256 1175161.2 2812126
## 3257 1175161.2 2812126
## 3258 1175161.2 2812126
## 3259 1175161.2 2812126
## 3260 1175161.2 2812126
## 3261 1175161.2 2812126
## 3262 1175161.2 2812126
## 3263 1175161.2 2812126
## 3264 1175161.2 2812126
## 3265 1175161.2 2812126
## 3266 1171365.6 2803203
## 3267 1171365.6 2803203
## 3268 1171365.6 2803203
## 3269 1171365.6 2803203
## 3270 1171365.6 2803203
## 3271 1174577.1 2810210
## 3273 1169258.9 2800915
## 3274 1169258.9 2800915
## 3279 1172960.7 2806891
## 3280 1172960.7 2806891
## 3281 1169689.2 2801664
## 3282 1169689.2 2801664
## 3283 1169689.2 2801664
## 3285 1169689.2 2801664
## 3287 1169689.2 2801664
## 3288 1169689.2 2801664
## 3289 1169689.2 2801664
## 3290 1169689.2 2801664
## 3291 1169689.2 2801664
## 3292 1169689.2 2801664
## 3293 1169689.2 2801664
## 3294 1169689.2 2801664
## 3295 1169689.2 2801664
## 3296 1169689.2 2801664
## 3297 1169689.2 2801664
## 3300 1169689.2 2801664
## 3301 1169689.2 2801664
## 3302 1171365.6 2803203
## 3303 1171365.6 2803203
## 3304 1171365.6 2803203
## 3305 1171365.6 2803203
## 3306 1171365.6 2803203
## 3307 1171365.6 2803203
## 3308 1175161.2 2812126
## 3309 1175161.2 2812126
## 3311 1175161.2 2812126
## 3312 1175161.2 2812126
## 3313 1175161.2 2812126
## 3314 1175161.2 2812126
## 3315 1175161.2 2812126
## 3316 1174577.1 2810210
## 3317 1174577.1 2810210
## 3318 1174577.1 2810210
## 3319 1174577.1 2810210
## 3320 1175161.2 2812126
## 3321 1175161.2 2812126
## 3322 1175161.2 2812126
## 3323 1175161.2 2812126
## 3325 1175161.2 2812126
## 3327 1169689.2 2801664
## 3332 1169689.2 2801664
## 3339 1169689.2 2801664
## 3340 1172960.7 2806891
## 3341 1172960.7 2806891
## 3342 1172960.7 2806891
## 3343 1172960.7 2806891
## 3348 1176431.9 2813653
## 3350 1176431.9 2813653
## 3351 1176431.9 2813653
## 3379 1169258.1 2800915
## 3391 1174577.1 2810210
## 3394 1174577.1 2810210
## 3396 1174577.1 2810210
## 3398 1174577.1 2810210
## 3399 1174577.1 2810210
## 3400 1174577.1 2810210
## 3401 1174577.1 2810210
## 3402 1174577.1 2810210
## 3404 1151501.0 2777539
## 3405 1151501.0 2777539
## 3406 1151501.0 2777539
## 3407 1151501.0 2777539
## 3408 1150191.4 2776436
## 3409 1150191.4 2776436
## 3410 1150191.4 2776436
## 3411 1150191.4 2776436
## 3412 1150191.4 2776436
## 3414 1151501.0 2777539
## 3415 1151501.0 2777539
## 3418 1150191.4 2776436
## 3419 1150191.4 2776436
## 3420 1150191.4 2776436
## 3421 1150191.4 2776436
## 3422 1150191.4 2776436
## 3423 1151501.0 2777539
## 3424 1151501.0 2777539
## 3425 1151501.0 2777539
## 3426 1151501.0 2777539
## 3428 1150191.4 2776436
## 3429 1150191.4 2776436
## 3430 1150191.4 2776436
## 3431 1150191.4 2776436
## 3432 1151501.0 2777539
## 3433 1151501.0 2777539
## 3434 1151501.0 2777539
## 3435 1150191.4 2776436
## 3436 1150191.4 2776436
## 3437 1150191.4 2776436
## 3438 1150191.4 2776436
## 3439 1150191.4 2776436
## 3440 1150191.4 2776436
## 3441 1150191.4 2776436
## 3442 1150191.4 2776436
## 3443 1150191.4 2776436
## 3444 1150191.4 2776436
## 3445 1150191.4 2776436
## 3448 1150191.4 2776436
## 3451 1150191.4 2776436
## 3452 1150191.4 2776436
## 3453 1150191.4 2776436
## 3454 1150191.4 2776436
## 3461 1150191.4 2776436
## 3462 1150191.4 2776436
## 3466 1150191.4 2776436
## 3473 1150191.4 2776436
## 3476 1150191.4 2776436
## 3477 1150191.4 2776436
## 3478 1150191.4 2776436
## 3479 1150191.4 2776436
## 3480 1150191.4 2776436
## 3481 1150191.4 2776436
## 3482 1150191.4 2776436
## 3483 1150191.4 2776436
## 3485 1150191.4 2776436
## 3486 1150191.4 2776436
## 3487 1150191.4 2776436
## 3488 1150191.4 2776436
## 3489 1150191.4 2776436
## 3492 1150191.4 2776436
## 3493 1150191.4 2776436
## 3496 1150191.4 2776436
## 3498 1150191.4 2776436
## 3499 1150191.4 2776436
## 3500 1150191.4 2776436
## 3501 1150191.4 2776436
## 3502 1150191.4 2776436
## 3503 1155600.4 2835443
## 3504 1155600.4 2835443
## 3505 1155600.4 2835443
## 3506 1155600.4 2835443
## 3507 1155600.4 2835443
## 3508 1155600.4 2835443
## 3509 1155600.4 2835443
## 3510 1155600.4 2835443
## 3511 1155600.4 2835443
## 3513 1155600.4 2835443
## 3514 1155600.4 2835443
## 3515 1174589.1 2810201
## 3516 1174589.1 2810201
## 3517 1174589.1 2810201
## 3518 1174589.1 2810201
## 3519 1174589.1 2810201
## 3520 1174589.1 2810201
## 3521 1174589.1 2810201
## 3522 1174589.1 2810201
## 3523 1174589.1 2810201
## 3524 1174589.1 2810201
## 3525 1174589.1 2810201
## 3526 1174589.1 2810201
## 3528 1174589.1 2810201
## 3529 1176452.7 2813669
## 3530 1176452.7 2813669
## 3531 1176452.7 2813669
## 3532 1176452.7 2813669
## 3533 1176452.7 2813669
## 3534 1176452.7 2813669
## 3535 1176452.7 2813669
## 3536 1176452.7 2813669
## 3537 1176452.7 2813669
## 3538 1176452.7 2813669
## 3539 1176452.7 2813669
## 3540 1176452.7 2813669
## 3541 1058003.6 3032121
## 3542 1058003.6 3032121
## 3543 1058003.6 3032121
## 3544 1058003.6 3032121
## 3545 1058003.6 3032121
## 3546 1058003.6 3032121
## 3547 1058003.6 3032121
## 3549 1058003.6 3032121
## 3550 1058003.6 3032121
## 3551 1058003.6 3032121
## 3552 1058003.6 3032121
## 3553 1058003.6 3032121
## 3554 1058003.6 3032121
## 3555 1058003.6 3032121
## 3556 1058003.6 3032121
## 3557 1058003.6 3032121
## 3558 1058003.6 3032121
## 3559 1058003.6 3032121
## 3560 1058003.6 3032121
## 3561 1058003.6 3032121
## 3562 1172960.7 2806891
## 3563 1172960.7 2806891
## 3564 1172960.7 2806891
## 3565 1172960.7 2806891
## 3566 1161803.2 2842386
## 3570 1165438.9 2795475
## 3571 1165438.9 2795475
## 3572 1165438.9 2795475
## 3573 1165438.9 2795475
## 3574 1165438.9 2795475
## 3575 1165438.9 2795475
## 3576 1165438.9 2795475
## 3577 1175161.2 2812126
## 3578 1175161.2 2812126
## 3579 1175161.2 2812126
## 3581 1175161.2 2812126
## 3583 1165494.9 2795481
## 3584 1165494.9 2795481
## 3585 1165494.9 2795481
## 3586 1169547.6 2801522
## 3587 1169547.6 2801522
## 3588 1169547.6 2801522
## 3589 1169547.6 2801522
## 3590 1169547.6 2801522
## 3591 1169547.6 2801522
## 3592 1033803.4 3097587
## 3594 1033803.4 3097587
## 3595 1033803.4 3097587
## 3596 1033803.4 3097587
## 3597 1033803.4 3097587
## 3598 1033803.4 3097587
## 3599 1033803.4 3097587
## 3600 1033803.4 3097587
## 3601 1033803.4 3097587
## 3602 1033803.4 3097587
## 3603 1033803.4 3097587
## 3604 1033803.4 3097587
## 3605 1033803.4 3097587
## 3606 1033803.4 3097587
## 3607 1033803.4 3097587
## 3608 1033803.4 3097587
## 3609 1033803.4 3097587
## 3610 1033803.4 3097587
## 3611 1033803.4 3097587
## 3612 1033803.4 3097587
## 3613 1033803.4 3097587
## 3614 1033803.4 3097587
## 3615 1033803.4 3097587
## 3616 1033803.4 3097587
## 3617 1033803.4 3097587
## 3618 1033803.4 3097587
## 3619 1033803.4 3097587
## 3620 1033803.4 3097587
## 3621 1033803.4 3097587
## 3622 1033803.4 3097587
## 3623 1033803.4 3097587
## 3624 1033803.4 3097587
## 3625 1033803.4 3097587
## 3626 1033803.4 3097587
## 3627 1033803.4 3097587
## 3628 1033803.4 3097587
## 3629 1033803.4 3097587
## 3630 1033803.4 3097587
## 3631 1033803.4 3097587
## 3632 1033803.4 3097587
## 3633 1033803.4 3097587
## 3634 1033803.4 3097587
## 3635 1033803.4 3097587
## 3636 1033803.4 3097587
## 3637 1033803.4 3097587
## 3638 1033803.4 3097587
## 3639 1033803.4 3097587
## 3640 1033803.4 3097587
## 3641 1033803.4 3097587
## 3642 1033803.4 3097587
## 3643 1033803.4 3097587
## 3644 1033803.4 3097587
## 3645 1033803.4 3097587
## 3646 1000224.2 3196220
## 3647 1000224.2 3196220
## 3648 1000224.2 3196220
## 3649 1000224.2 3196220
## 3650 1000224.2 3196220
## 3651 1000224.2 3196220
## 3652 1000224.2 3196220
## 3653 1000224.2 3196220
## 3655 1000224.2 3196220
## 3656 1000224.2 3196220
## 3658 1000224.2 3196220
## 3659 1000224.2 3196220
## 3660 1000224.2 3196220
## 3661 1000224.2 3196220
## 3662 1000224.2 3196220
## 3663 1000224.2 3196220
## 3664 1000224.2 3196220
## 3665 1000224.2 3196220
## 3666 1000224.2 3196220
## 3667 1000224.2 3196220
## 3668 1000224.2 3196220
## 3669 1000224.2 3196220
## 3670 1000224.2 3196220
## 3671 1000224.2 3196220
## 3672 1000224.2 3196220
## 3673 1000224.2 3196220
## 3674 1000224.2 3196220
## 3675 1000224.2 3196220
## 3676 1000224.2 3196220
## 3677 1000224.2 3196220
## 3678 1000224.2 3196220
## 3680 1000224.2 3196220
## 3681 1000224.2 3196220
## 3682 1000224.2 3196220
## 3683 1000224.2 3196220
## 3684 1000224.2 3196220
## 3685 1000224.2 3196220
## 3686 1000224.2 3196220
## 3687 1000224.2 3196220
## 3688 1000224.2 3196220
## 3689 1000224.2 3196220
## 3690 1000224.2 3196220
## 3691 1000224.2 3196220
## 3692 1000224.2 3196220
## 3693 1000224.2 3196220
## 3694 1000224.2 3196220
## 3695 1000224.2 3196220
## 3696 1000224.2 3196220
## 3698 1000224.2 3196220

There might be some spatial dependencies for long wing freq because seeing clusters of red and clusters of black.

Let’s plot histograms and analyze the variance. Then model the variance.

time_var_tests = function(d, print_test=FALSE) {
  
  months = sort(unique(d$month_of_year))
  month_labs <- c("Feb", "Apr", "May", "Aug", "Sept", "Oct", "Dec")

  table = matrix(nrow=length(months), ncol=9)
  i = 0
  for (m in months) {
    i = i + 1
    data = d[d$month_of_year==m, ]
  
    VAR = var.test(wing2body ~ sex, data = data) # F test to compare the variances of two samples from normal pops
    TTEST= t.test(wing2body ~ sex, data=data) # t.test to find significant difference between the means of two groups
    AOV = aov(wing2body ~ sex, data=data) # used to analyze the differences among means. 
    
    p = TukeyHSD(AOV)$sex[,"p adj"]
    diff = TukeyHSD(AOV)$sex[,"diff"]
    
    if (print_test) {
      print(month_labs[i])
      print("t.test")
      print(TTEST)
      print("anova")
      print(summary(AOV))
      print(TukeyHSD(AOV))
      cat("-------------------------------------------------")
    }
    
    # plot histograms
    h = data %>%
    ggplot( aes(x=wing2body, fill=sex)) +
      geom_histogram( color="#e9ecef", alpha=0.6, position = 'identity') +
      scale_fill_manual(values=c("#69b3a2", "#404080")) +
      labs(fill="")  + labs(title=month_labs[i])
    print(h)
    
    # populate matrix
    table[i,1] = month_labs[i]
    table[i,2] = "M-F"
    table[i,3] = round(diff,4)
    table[i,4] = round(p,5)
    table[i,5] = "M=-1 | F=1"
    table[i,6] = round(TTEST$statistic,4)
    table[i,7] = round(TTEST$p.value,5)
    table[i,8] = round(VAR$statistic,2)
    table[i,9] = round(VAR$p.value, 3)
  }
  colnames(table) = c("month","sex", "Tukey-diff", "p-val", "sex", "ttest", "p-val", "F-test", "p-val")
  return(table)
} 
summary_table = time_var_tests(data_long)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 298 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 358 rows containing non-finite values (stat_bin).

summary_table
##      month  sex   Tukey-diff p-val     sex          ttest     p-val     F-test
## [1,] "Feb"  "M-F" "0.0078"   "0"       "M=-1 | F=1" "-4.771"  "0"       "1"   
## [2,] "Apr"  "M-F" "0.0051"   "0.06579" "M=-1 | F=1" "-1.8347" "0.06801" "1.14"
## [3,] "May"  "M-F" "-0.0057"  "0.06349" "M=-1 | F=1" "1.9584"  "0.05093" "1.7" 
## [4,] "Aug"  "M-F" "0.0027"   "0.09485" "M=-1 | F=1" "-1.6702" "0.09591" "1.05"
## [5,] "Sept" "M-F" "0.0024"   "0.35468" "M=-1 | F=1" "-0.9363" "0.35087" "1.23"
## [6,] "Oct"  "M-F" "0.0039"   "0.04799" "M=-1 | F=1" "-1.9892" "0.04769" "0.9" 
## [7,] "Dec"  "M-F" "0.0056"   "0.03097" "M=-1 | F=1" "-2.2079" "0.02882" "0.64"
##      p-val  
## [1,] "0.985"
## [2,] "0.481"
## [3,] "0"    
## [4,] "0.744"
## [5,] "0.408"
## [6,] "0.542"
## [7,] "0.057"
y = summary_table[,"F-test"]
xlab = summary_table[, "month"]
x = sort(unique(d$month_of_year))

plot(x,y, ylab="F-test value", xlab="Month of Year", xaxt = "n", main="wing-to-body ~ sex")
axis(1, at=seq(min(x),max(x),2), labels=xlab[-5])
abline(h=1, col=2) # non-linear relationship where at the beginning of the year the variance between sexes is similar bu then in spring it deviates a lot. In the summer the variance is similar and then towards the winter the variance deviates.

time_var_tests = function(d, print_test=FALSE) {
  
  months = sort(unique(d$month_of_year))
  month_labs <- c("Feb", "Apr", "May", "Aug", "Sept", "Oct", "Dec")

  table = matrix(nrow=length(months), ncol=9)
  i = 0
  for (m in months) {
    i = i + 1
    data = d[d$month_of_year==m, ]
  
    VAR = var.test(wing2body ~ pophost, data = data) # F test to compare the variances of two samples from normal pops
    TTEST= t.test(wing2body ~ pophost, data=data) # t.test to find significant difference between the means of two groups
    AOV = aov(wing2body ~ pophost, data=data) # used to analyze the differences among means. 
    
    p = TukeyHSD(AOV)$pophost[,"p adj"]
    diff = TukeyHSD(AOV)$pophost[,"diff"]
    
    if (print_test) {
      print(month_labs[i])
      print("t.test")
      print(TTEST)
      print("anova")
      print(summary(AOV))
      print(TukeyHSD(AOV))
      cat("-------------------------------------------------")
    }
    
    # plot histograms
    h = data %>%
    ggplot( aes(x=wing2body, fill=pophost)) +
      geom_histogram( color="#e9ecef", alpha=0.6, position = 'identity') +
      scale_fill_manual(values=c("#69b3a2", "#404080")) +
      labs(fill="")  + labs(title=month_labs[i])
    print(h)
    
    # populate matrix
    table[i,1] = month_labs[i]
    table[i,2] = "GRT-BV"
    table[i,3] = round(diff,4)
    table[i,4] = round(p,5)
    table[i,5] = "GRT=1 | BV=-1"
    table[i,6] = round(TTEST$statistic,4)
    table[i,7] = round(TTEST$p.value,5)
    table[i,8] = round(VAR$statistic,2)
    table[i,9] = round(VAR$p.value, 3)
  }
  colnames(table) = c("month","sex", "Tukey-diff", "p-val", "sex", "ttest", "p-val", "F-test", "p-val")
  
  return(table)
} 
summary_table = time_var_tests(data_long)
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 298 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 8 rows containing non-finite values (stat_bin).

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## Warning: Removed 358 rows containing non-finite values (stat_bin).

summary_table
##      month  sex      Tukey-diff p-val     sex             ttest     p-val    
## [1,] "Feb"  "GRT-BV" "0.0083"   "0"       "GRT=1 | BV=-1" "-5.3981" "0"      
## [2,] "Apr"  "GRT-BV" "0.0042"   "0.20888" "GRT=1 | BV=-1" "-1.2663" "0.20907"
## [3,] "May"  "GRT-BV" "0.0069"   "0.024"   "GRT=1 | BV=-1" "-2.4287" "0.01577"
## [4,] "Aug"  "GRT-BV" "0.0068"   "0.00073" "GRT=1 | BV=-1" "-3.5282" "0.00062"
## [5,] "Sept" "GRT-BV" "0.0082"   "0.0047"  "GRT=1 | BV=-1" "-2.6132" "0.01198"
## [6,] "Oct"  "GRT-BV" "0.0083"   "2e-05"   "GRT=1 | BV=-1" "-4.3434" "2e-05"  
## [7,] "Dec"  "GRT-BV" "0.0083"   "0.00217" "GRT=1 | BV=-1" "-3.2354" "0.0016" 
##      F-test p-val  
## [1,] "1.32" "0.058"
## [2,] "0.98" "0.975"
## [3,] "0.17" "0"    
## [4,] "0.89" "0.587"
## [5,] "1.47" "0.156"
## [6,] "0.88" "0.452"
## [7,] "0.8"  "0.377"
y = summary_table[,"F-test"]
xlab = summary_table[, "month"]
x = sort(unique(d$month_of_year))

plot(x,y, ylab="F-test value", xlab="Month of Year", xaxt = "n", main="wing-to-body ~ pophost")
axis(1, at=seq(min(x),max(x),2), labels=xlab[-5])
abline(h=1, col=2) # non-linear relationship where at the beginning of the year the variance between hostplants is similar but then in spring it deviates a lot. In the summer and winter the variance is similar. (GRT/BV var = F-test value where in Sept and Feb only months where GRT is higher and the rest is BV)

SE = function(x){sd(x)/sqrt(length(x))}
w2b_summary<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year, data=data_long, FUN=mean)
w2b_summary$se<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year, data=data_long,
                          FUN=SE)$wing2body
w2b_summary
##    sex_binom pophost_binom month_of_year wing2body          se
## 1         -1            -1             2 0.7236889 0.001320621
## 2          1            -1             2 0.7133490 0.001597005
## 3         -1             1             2 0.7294272 0.001424496
## 4          1             1             2 0.7258563 0.001770107
## 5         -1            -1             4 0.7295058 0.004040090
## 6          1            -1             4 0.7178366 0.003839116
## 7         -1             1             4 0.7300193 0.002006816
## 8          1             1             4 0.7267410 0.002509026
## 9         -1            -1             5 0.7288403 0.001633817
## 10         1            -1             5 0.7267466 0.001505517
## 11        -1             1             5 0.7273227 0.005452107
## 12         1             1             5 0.7371079 0.002917829
## 13        -1            -1             8 0.7303758 0.002597943
## 14         1            -1             8 0.7244566 0.001861241
## 15        -1             1             8 0.7352927 0.001157037
## 16         1             1             8 0.7334351 0.001431828
## 17        -1            -1             9 0.7281393 0.003348317
## 18         1            -1             9 0.7206226 0.004291429
## 19        -1             1             9 0.7325310 0.002053810
## 20         1             1             9 0.7319660 0.001795590
## 21        -1            -1            10 0.7294956 0.001960008
## 22         1            -1            10 0.7216057 0.001720383
## 23        -1             1            10 0.7335397 0.001960326
## 24         1             1            10 0.7339088 0.001828796
## 25        -1            -1            12 0.7310258 0.002346332
## 26         1            -1            12 0.7316188 0.003557508
## 27        -1             1            12 0.7444343 0.002509718
## 28         1             1            12 0.7346725 0.001782821
SE = function(x){sd(x)/sqrt(length(x))}
w2b_summaryt<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year*months_since_start, data=data_long, FUN=mean)
w2b_summaryt$se<-aggregate(wing2body~sex_binom*pophost_binom*month_of_year*months_since_start, data=data_long,
                          FUN=SE)$wing2body
w2b_summaryt
##    sex_binom pophost_binom month_of_year months_since_start wing2body
## 1         -1            -1             4                  0 0.7304965
## 2          1            -1             4                  0 0.7275461
## 3         -1             1             4                  0 0.7294618
## 4          1             1             4                  0 0.7338747
## 5         -1            -1             4                 11 0.7381106
## 6          1            -1             4                 11 0.7238578
## 7         -1             1             4                 11 0.7384047
## 8          1             1             4                 11 0.7249201
## 9         -1            -1             4                 23 0.7200074
## 10         1            -1             4                 23 0.7087670
## 11        -1             1             4                 23 0.7274838
## 12         1             1             4                 23 0.7255006
## 13        -1            -1            12                 43 0.7310258
## 14         1            -1            12                 43 0.7316188
## 15        -1             1            12                 43 0.7444343
## 16         1             1            12                 43 0.7346725
## 17        -1            -1             8                 51 0.7303758
## 18         1            -1             8                 51 0.7244566
## 19        -1             1             8                 51 0.7352927
## 20         1             1             8                 51 0.7334351
## 21        -1            -1             9                 64 0.7281393
## 22         1            -1             9                 64 0.7206226
## 23        -1             1             9                 64 0.7325310
## 24         1             1             9                 64 0.7319660
## 25        -1            -1             5                 72 0.7288403
## 26         1            -1             5                 72 0.7267466
## 27        -1             1             5                 72 0.7273227
## 28         1             1             5                 72 0.7371079
## 29        -1            -1            10                 77 0.7294956
## 30         1            -1            10                 77 0.7216057
## 31        -1             1            10                 77 0.7335397
## 32         1             1            10                 77 0.7339088
## 33        -1            -1             2                 81 0.7236889
## 34         1            -1             2                 81 0.7133490
## 35        -1             1             2                 81 0.7294272
## 36         1             1             2                 81 0.7258563
##             se
## 1  0.006362826
## 2  0.006987249
## 3  0.003151389
## 4  0.006188900
## 5  0.004706932
## 6  0.003620636
## 7  0.004093513
## 8  0.004245638
## 9  0.007041619
## 10 0.006441691
## 11 0.003141591
## 12 0.003573498
## 13 0.002346332
## 14 0.003557508
## 15 0.002509718
## 16 0.001782821
## 17 0.002597943
## 18 0.001861241
## 19 0.001157037
## 20 0.001431828
## 21 0.003348317
## 22 0.004291429
## 23 0.002053810
## 24 0.001795590
## 25 0.001633817
## 26 0.001505517
## 27 0.005452107
## 28 0.002917829
## 29 0.001960008
## 30 0.001720383
## 31 0.001960326
## 32 0.001828796
## 33 0.001320621
## 34 0.001597005
## 35 0.001424496
## 36 0.001770107
data = w2b_summaryt
data<-data.frame(R=data$se, 
                 A=data$sex_binom, 
                 B=data$pophost_binom, 
                 C=(data$month_of_year),
                 D=data$months_since_start)

model_script = paste0(source_path,"generic models-gaussian glm 3-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]      [,3]       [,4]       [,5]       [,6]     
## AICs   -353.3629 -352.9831 -351.3704  -351.2623  -350.9969  -350.9909
## models 3         6         5          18         10         7        
## probs  0.2325317 0.1923088 0.08586547 0.08134455 0.07123654 0.0710249
##        [,7]      
## AICs   -350.7045 
## models 2         
## probs  0.06154604
## 
## m3   glm(formula = R ~ C, family = gaussian, data = data)
## m6   glm(formula = R ~ B + C, family = gaussian, data = data)
## m5   glm(formula = R ~ A + C, family = gaussian, data = data)
## m0   glm(formula = R ~ 1, family = gaussian, data = data)
## m10  glm(formula = R ~ B * C, family = gaussian, data = data)
## m7   glm(formula = R ~ A + B + C, family = gaussian, data = data)
## m2   glm(formula = R ~ B, family = gaussian, data = data)

Nothing seems to effect the variance.

model_script = paste0(source_path,"generic models-gaussian glm 4-FF.R")
model_comparisonsAIC(model_script)
##        [,1]      [,2]       [,3]       [,4]      
## AICs   -378.3766 -377.6755  -377.576   -377.0881 
## models 54        31         20         86        
## probs  0.1184971 0.08345745 0.07940949 0.06221854
## 
## m54  glm(formula = R ~ B * D + C * D, family = gaussian, data = data)
## m31  glm(formula = R ~ B * D + C, family = gaussian, data = data)
## m20  glm(formula = R ~ B * D, family = gaussian, data = data)
## m86  glm(formula = R ~ B * C + B * D + C * D, family = gaussian, data = data)
anova(m22, m42, test="Chisq") # adding B*C does not improve fit
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B + C
## Model 2: R ~ A * B + B * C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)
## 1        31 9.3093e-05                       
## 2        30 9.3057e-05  1 3.5707e-08   0.9146
anova(m16, m22, test="Chisq") # adding C does improve fit # same top model as before
## Analysis of Deviance Table
## 
## Model 1: R ~ A * B
## Model 2: R ~ A * B + C
##   Resid. Df Resid. Dev Df   Deviance Pr(>Chi)  
## 1        32 1.0484e-04                         
## 2        31 9.3093e-05  1 1.1751e-05  0.04791 *
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1

No months_since_start effect. But can plot the positive effect of month of year on wing2body ratio. It looks cyclical by pophost and more linear by sex:

wing2body_summary<-aggregate(wing2body~pophost*month_of_year, data=data_long, FUN=mean)
plot(wing2body~month_of_year, data=wing2body_summary, pch=19, col=c(1,2)[as.factor(pophost)])

wing2body_summary<-aggregate(wing2body~sex_binom*month_of_year, data=data_long, FUN=mean) # black is M; Red is F
plot(wing2body~month_of_year, data=wing2body_summary, pch=19, col=c(1,2)[as.factor(sex_binom)]) # black is C. ; Red is K.

wing2body_summary<-aggregate(wing2body~sex_binom*pophost*month_of_year, data=data_long, FUN=mean)
plot(wing2body~month_of_year, data=wing2body_summary, pch=c(19,21)[as.factor(sex_binom)], col=c(2,3)[as.factor(pophost)]) 

# female open cirlces, males closed circles
# green K. elegans and red C. corindum

These plots are plotted cleanly in the wing_plots.Rmd script.